-
Notifications
You must be signed in to change notification settings - Fork 6
implement ability to change the default name of last column in to_csv/excel when wide=False #549
New issue
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
Comments
+1 for an ability to change that name (and have some something more sensible as default, like "value") |
* added argument 'data_col_name' to to_csv to set the name of the last column (i.e. the one containing the data) when exporting to csv with transpose=False
…set the name of the last column (i.e. the one containing the data) when exporting to csv with transpose=False
@gdementen rename argument |
…el to set the name of the last column (i.e. the one containing the data) when exporting to csv/excel with vertical=True * renamed argument 'transpose' of to_csv/excel as 'vertical'
OK for wide. We need to add some explanation/examples in the tutorial ;) |
…to set the name of the last column (i.e. the one containing the values) when exporting to csv/excel with wide=False * renamed argument 'transpose' of to_csv/excel as 'vertical'
…to set the name of the last column (i.e. the one containing the values) when exporting to csv/excel with wide=False * renamed argument 'transpose' of to_csv/excel as 'vertical'
…to set the name of the last column (i.e. the one containing the values) when exporting to csv/excel with wide=False * renamed argument 'transpose' of to_csv/excel as 'vertical'
…to set the name of the last column (i.e. the one containing the values) when exporting to csv/excel with wide=False * renamed argument 'transpose' of to_csv/excel as 'vertical'
…to set the name of the last column (i.e. the one containing the values) when exporting to csv/excel with wide=False * renamed argument 'transpose' of to_csv/excel as 'vertical'
…to set the name of the last column (i.e. the one containing the values) when exporting to csv/excel with wide=False
…e of the last column (i.e. the one containing the values) when exporting to csv/excel with wide=False
@gdementen
The flag
transpose
into_csv
is nice but creates an extra axis with a default name (an integer).Btw, users may want to change that meaningless default name.
So when you try to read the CSV file after, you get an LArray object with shape like
'axis1 (10) x axis2 (16) x axis3 (8) x default (1)' and then you need to reshape the array to get rid of this last axis.
Do you think it worth to do something about it?
The text was updated successfully, but these errors were encountered: