You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Serialization.<V>writeCsv(final DataFrame<V> df, final OutputStream output) method doesn't write the row names if dfis a dataframe which has row names.
The text was updated successfully, but these errors were encountered:
So, turns out this writing the index is not supported by the csv library joinery uses. There is a workaround, you can add the index as a new column prior to writing the csv file:
As a heads up, the proposed solution above does not work. It adds the entire index name and all values to the single cell where the column header should be.
The
Serialization.<V>writeCsv(final DataFrame<V> df, final OutputStream output)
method doesn't write the row names ifdf
is a dataframe which has row names.The text was updated successfully, but these errors were encountered: