Ideally, I'd like to convert a C# datatable into a Deedle dataframe.
Asked
Active
Viewed 112 times
1
-
Without even knowing anything about the Deedle API, I did some research, and you can read from an `IDataReader`... which you can get a datareader from a datatable using `table.CreateDataReader()`, so try `var frame = Frame.ReadReader(table.CreateDataReader())` or some such. – willaien Jul 15 '15 at 02:17