当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。