Reputation: 125
I am trying to run F# to work with Deedle and google XPlot and I have the following problem: It seems that the newest version XPlot (version 1.2.2 ) needs access to the module "Deedle.FSharpFrameExtensions". However Deedle (version 1.2.4) provides Deedle.F# Frame extensions
. Hence I tried to add a module with the same name :
[]
module Deedle =
open Deedle
type FSharpFrameExtensions = F# Frame extensions
But it does not seem to work. Does anyone know a Workaround ?
Upvotes: 1
Views: 241
Reputation: 1188
Did you use the FSLab package from nuget? That is about all you need/want in a package, and as such the versioning all over is (should be?) ok.
Check out http://fslab.org/ and especially http://fslab.org/download/ for different download/usage options.
Upvotes: 1