用法:
DataFrame.keys()
获取列。这是 Series 的索引,DataFrame 的列。
- index
DataFrame 的列。
返回:
例子:
>>> import cudf >>> df = cudf.DataFrame({'one' : [1, 2, 3], 'five' : ['a', 'b', 'c']}) >>> df one five 0 1 a 1 2 b 2 3 c >>> df.keys() Index(['one', 'five'], dtype='object') >>> df = cudf.DataFrame(columns=[0, 1, 2, 3]) >>> df Empty DataFrame Columns: [0, 1, 2, 3] Index: [] >>> df.keys() Int64Index([0, 1, 2, 3], dtype='int64')
相关用法
- Python cudf.DataFrame.kurtosis用法及代码示例
- Python cudf.DataFrame.kurt用法及代码示例
- Python cudf.DataFrame.mod用法及代码示例
- Python cudf.DataFrame.isin用法及代码示例
- Python cudf.DataFrame.rmul用法及代码示例
- Python cudf.DataFrame.apply用法及代码示例
- Python cudf.DataFrame.exp用法及代码示例
- Python cudf.DataFrame.drop用法及代码示例
- Python cudf.DataFrame.where用法及代码示例
- Python cudf.DataFrame.median用法及代码示例
- Python cudf.DataFrame.to_pandas用法及代码示例
- Python cudf.DataFrame.take用法及代码示例
- Python cudf.DataFrame.tail用法及代码示例
- Python cudf.DataFrame.rfloordiv用法及代码示例
- Python cudf.DataFrame.equals用法及代码示例
- Python cudf.DataFrame.head用法及代码示例
- Python cudf.DataFrame.count用法及代码示例
- Python cudf.DataFrame.isna用法及代码示例
- Python cudf.DataFrame.groupby用法及代码示例
- Python cudf.DataFrame.round用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.DataFrame.keys。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。