-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Description
When you have many dimensions and you only want to change the dimension displayed in columns, it is frustrating to have to list all dimensions. It would be nice to be able to use:
arr.transpose(..., 'time')
# or
arr.transpose('gender', ..., 'time')
An alternative would be to be explicit about the dimension(s) in columns. Something like:
arr.transpose(columns='time')
# or
arr.transpose('gender', columns='time')
In the case of several dimensions in columns (see #187), we could use:
arr.transpose(columns=('gender', 'time'))