cudf.Series.axes#

property Series.axes#

Return a list representing the axes of the Series.

Series.axes returns a list containing the row index.

Examples

>>> import cudf
>>> csf1 = cudf.Series([1, 2, 3, 4])
>>> csf1.axes
[RangeIndex(start=0, stop=4, step=1)]