Gustavo Guerra
Gustavo Guerra
If a column is infered as string, and there are many repeated values, it's probably an enumeration, so we could generate an enum. If the inference geets it wrong, we...
I can do this: open System.IO System.Environment.CurrentDirectory
The Freebase provider already supports it (see https://github.com/fsharp/FSharp.Data/blob/master/src/Freebase/FreebaseProvider.fs#L191) Do the same for CsvProvider/HtmlProvider
For example, in this type: ``` type HtmlAttribute = private | HtmlAttribute of name:string * value:string ``` What's the effect that `private` should have? I see that in C# projects,...
Some time ago I did a small comparison of some R code (https://gist.github.com/ovatsus/5354187#file-original-r), with the equivalent code using CsvProvider (https://gist.github.com/ovatsus/5354187#file-csvprovider-fsx) and using the untyped CsvFile (https://gist.github.com/ovatsus/5354187#file-csvfile-fsx) I did the same...
It would be nice to be able to do: ``` let frame = Frame.ReadCsv "http://faculty.washington.edu/heagerty/Books/Biostatistics/DATA/ozone.csv" ``` similarly to what can be done with the CsvProvider
Don't show "12:00:00 AM" when pretty-printing a Frame on FSI if all the keys have a DateTime value without the time component This would de-clutter the output a lot for...