pyspark.pandas.Series.axes

property Series.axes

Return a list of the row axis labels.

Examples

>>> psser = ps.Series([1, 2, 3])
>>> psser.axes
[Int64Index([0, 1, 2], dtype='int64')]