cf.Data.all_axis_names

Data.all_axis_names()[source]

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 :
out : set

The axis names.

Examples

>>> d.dimensions
['dim1', 'dim0']
>>> d.partitions.info('dimensions')
[['dim0', 'dim0'],
 ['dim1', 'dim0', 'dim2']]
>>> d.all_axis_names()
set(['dim2', dim0', 'dim1'])

Previous topic

cf.Data.all

Next topic

cf.Data.any

This Page