hipdf.Series.reindex

Contents

hipdf.Series.reindex#

21 min read time

Applies to Linux

Series.reindex(*args, **kwargs)#

Conform Series to new index.

Parameters#

indexIndex, Series-convertible, default None

New labels / index to conform to, should be specified using keywords.

method: Not Supported copy : boolean, default True level: Not Supported fill_value : Value to use for missing values.

Defaults to NA, but can be any “compatible” value.

limit: Not Supported tolerance: Not Supported

Returns#

Series with changed index.

Examples#

>>> import cudf
>>> series = cudf.Series([10, 20, 30, 40], index=['a', 'b', 'c', 'd'])
>>> series
a    10
b    20
c    30
d    40
dtype: int64
>>> series.reindex(['a', 'b', 'y', 'z'])
a      10
b      20
y    <NA>
z    <NA>
dtype: int64