用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。