Skip to content

implement ... in transpose #188

@gdementen

Description

@gdementen

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'))

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions