Return a set of all the dimension names in use by the data array.
Note that the output set includes dimensions of individual partitions which are not dimensions of the master data array.
Returns : |
|
---|
Examples
>>> d.dimensions
['dim1', 'dim0']
>>> d.partitions.info('dimensions')
[['dim0', 'dim0'],
['dim1', 'dim0', 'dim2']]
>>> d.all_axis_names()
set(['dim2', dim0', 'dim1'])