deedle

Why Frame.X static methods from Deedle are generating warnings in VS 2017?

夙愿已清 提交于 2019-12-01 15:48:15
I downloaded the new VS 2017 yesterday and it is working fine, except that I am getting this warning on every line where I call the static method Frame.ReadCsv from the Deedle package: FS10001 This method is not intended for use from F# Calls to other static methods Frame.X do not generate the same warning. Example - this line of code generates the warning: let msft = Frame.ReadCsv(Config.tsDir + "MSFT.csv", hasHeaders=true, inferTypes=true) Intellisense recognizes the method and provides the appropriate hints, which fit exactly with the signature in http://bluemountaincapital.github.io/Deedle

F#: How to create a Deedle Frame with SQL data source

£可爱£侵袭症+ 提交于 2019-12-01 05:52:18
I am trying to figure what is the best way in F# to create a Deedle Frame, when the data comes from an SQL server. I have tried things like the following. #I "../packages/Deedle.0.9.12" #load "Deedle.fsx" #r "System.dll" #r "System.Data.dll" #r "System.Data.Linq" #r "FSharp.Data.TypeProviders.dll" open System open System.Data open System.Data.Linq open Microsoft.FSharp.Data.TypeProviders open Deedle type dbSchema = SqlDataConnection<"Data Source=server;Initial Catalog=database;Integrated Security=SSPI;"> let db = dbSchema.GetDataContext() let fr = db.SomeTable |> Frame.ofRows and a few other

F#: How to create a Deedle Frame with SQL data source

筅森魡賤 提交于 2019-12-01 03:57:12
问题 I am trying to figure what is the best way in F# to create a Deedle Frame, when the data comes from an SQL server. I have tried things like the following. #I "../packages/Deedle.0.9.12" #load "Deedle.fsx" #r "System.dll" #r "System.Data.dll" #r "System.Data.Linq" #r "FSharp.Data.TypeProviders.dll" open System open System.Data open System.Data.Linq open Microsoft.FSharp.Data.TypeProviders open Deedle type dbSchema = SqlDataConnection<"Data Source=server;Initial Catalog=database;Integrated