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