hosseinmoein / DataFrame

C++ DataFrame for statistical, Financial, and ML analysis -- in modern C++ using native types and contiguous memory storage
https://hosseinmoein.github.io/DataFrame/
BSD 3-Clause "New" or "Revised" License
2.41k stars 306 forks source link

No write to file example #242

Closed federicomartinlara1976 closed 1 year ago

federicomartinlara1976 commented 1 year ago

The hello_world.cc example has no use of write to csv file method.

hosseinmoein commented 1 year ago

I didn't want to write to a file in hello world because I was cautious about messing up the user filesystem which I don't know anything about. Code sample for all functions are in the docs here: https://htmlpreview.github.io/?https://github.com/hosseinmoein/DataFrame/blob/master/docs/HTML/DataFrame.html

federicomartinlara1976 commented 1 year ago

Anyway, i have checked and this format for csv is not suitable for my example. Thank you

hosseinmoein commented 1 year ago

You probably want the csv2 format which is similar to Pandas csv format

federicomartinlara1976 commented 1 year ago

Thank you. I'll test the format that recommend.