用法:
DataFrame.reindex(labels=None, axis=None, index=None, columns=None, copy=True)
返回一个新的 DataFrame,其轴符合新的索引
DataFrame.reindex
支持两种调用约定:(index=index_labels, columns=column_names)
(labels, axis={0 or 'index', 1 or 'columns'})
- labels:索引,Series-convertible,可选,默认无
- axis:{0 或 ‘index’,1 或 ‘columns’},可选,默认 0
- index:索引,Series-convertible,可选,默认无
df.reindex(labels=index_labels, axis=0)
的简写- columns:array-like,可选,默认无
df.reindex(labels=column_names, axis=1)
的简写- copy:布尔值,可选,默认 True
- 轴符合新索引的 DataFrame
参数:
返回:
例子:
>>> import cudf >>> df = cudf.DataFrame() >>> df['key'] = [0, 1, 2, 3, 4] >>> df['val'] = [float(i + 10) for i in range(5)] >>> df_new = df.reindex(index=[0, 3, 4, 5], ... columns=['key', 'val', 'sum']) >>> df key val 0 0 10.0 1 1 11.0 2 2 12.0 3 3 13.0 4 4 14.0 >>> df_new key val sum 0 0 10.0 <NA> 3 3 13.0 <NA> 4 4 14.0 <NA> 5 <NA> <NA> <NA>
相关用法
- Python cudf.DataFrame.resample用法及代码示例
- Python cudf.DataFrame.reset_index用法及代码示例
- Python cudf.DataFrame.replace用法及代码示例
- Python cudf.DataFrame.repeat用法及代码示例
- Python cudf.DataFrame.rename用法及代码示例
- Python cudf.DataFrame.rmul用法及代码示例
- Python cudf.DataFrame.rfloordiv用法及代码示例
- Python cudf.DataFrame.round用法及代码示例
- Python cudf.DataFrame.rpow用法及代码示例
- Python cudf.DataFrame.radd用法及代码示例
- Python cudf.DataFrame.rdiv用法及代码示例
- Python cudf.DataFrame.rsub用法及代码示例
- Python cudf.DataFrame.rolling用法及代码示例
- Python cudf.DataFrame.rmod用法及代码示例
- Python cudf.DataFrame.rtruediv用法及代码示例
- Python cudf.DataFrame.mod用法及代码示例
- Python cudf.DataFrame.isin用法及代码示例
- Python cudf.DataFrame.apply用法及代码示例
- Python cudf.DataFrame.exp用法及代码示例
- Python cudf.DataFrame.drop用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.DataFrame.reindex。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。