We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example
#r "nuget: Deedle" open Deedle open System.IO open System type Person = { Name:string; Age:float; Bmi: OptionalValue<float>} let peopleRecds = [ { Name = "Joe"; Age = 0.3372643363809795; Bmi = OptionalValue 0.3372643363809795 }] let df = Frame.ofRecords peopleRecds [<Literal>] let outputPath = __SOURCE_DIRECTORY__ + "/data/output/" [<Literal>] let separator = ';' let culture = Globalization.CultureInfo("de-DE") df.SaveCsv(Path.Combine(outputPath, "foo.csv"), includeRowKeys = false, separator = ';',culture = culture)
results in
Name;Age;Bmi Joe;"0,3372643363809795";0.3372643363809795
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example
results in
The text was updated successfully, but these errors were encountered: