hipdf.Series.axes

Contents

hipdf.Series.axes#

20 min read time

Applies to Linux

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)]