當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python cudf.Series.reindex用法及代碼示例


用法:

Series.reindex(index=None, copy=True)

返回符合新索引的係列

參數

index索引,Series-convertible,默認無
copy布爾值,默認 True

返回

符合所提供索引的新係列

例子

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

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.Series.reindex。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。