用法:
Series.rename(index=None, copy=True)
更改係列名稱
使用標量值更改 Series.name
- index:標量,可選
用於更改 Series.name 屬性的標量
- copy:布爾值,默認 True
同時複製基礎數據
- Series
參數:
返回:
注意:
- 與 Pandas 的區別:
- 僅支持更改名稱屬性的標量值
- 不支持:就地、水平
例子:
>>> import cudf >>> series = cudf.Series([10, 20, 30]) >>> series 0 10 1 20 2 30 dtype: int64 >>> series.name >>> renamed_series = series.rename('numeric_series') >>> renamed_series 0 10 1 20 2 30 Name: numeric_series, dtype: int64 >>> renamed_series.name 'numeric_series'
相關用法
- Python cudf.Series.reindex用法及代碼示例
- Python cudf.Series.resample用法及代碼示例
- Python cudf.Series.replace用法及代碼示例
- 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.rename。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。