用法:
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
相关用法
- Python cudf.Series.resample用法及代码示例
- Python cudf.Series.replace用法及代码示例
- Python cudf.Series.rename用法及代码示例
- Python cudf.Series.reset_index用法及代码示例
- Python cudf.Series.repeat用法及代码示例
- Python cudf.Series.rmod用法及代码示例
- Python cudf.Series.rtruediv用法及代码示例
- Python cudf.Series.rolling用法及代码示例
- Python cudf.Series.rmul用法及代码示例
- Python cudf.Series.rdiv用法及代码示例
- Python cudf.Series.round用法及代码示例
- Python cudf.Series.radd用法及代码示例
- Python cudf.Series.rsub用法及代码示例
- Python cudf.Series.rpow用法及代码示例
- Python cudf.Series.rfloordiv用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.reindex。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。