larray.AxisCollection.names

property AxisCollection.names: List[str]

Return the list of (raw) names of the axes.

Returns
list

List of names of the axes.

Examples

>>> age = Axis(range(20), 'age')
>>> sex = Axis('sex=M,F')
>>> time = Axis([2007, 2008, 2009, 2010], 'time')
>>> AxisCollection([age, sex, time]).names
['age', 'sex', 'time']