we need to add a method that allows to save a DataFrame as a CSV file without the id.
Currently, the only method available is DataFrame>>#writeToCsv: but automatically adds an
empty column at the beginning with the internal id that was calculating.
We should be able to save without that id
We can create a new method called writeToCsv:withRowNames:
Then method writeToCsv: shoud call it with the default parameter true
(from this comment: https://github.com/PolyMathOrg/DataFrame/issues/215#issuecomment-1503599287)
We can create a new method called
writeToCsv:withRowNames:
Then methodwriteToCsv:
shoud call it with the default parametertrue