当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cudf.core.column.struct.StructMethods.field用法及代码示例


用法:

StructMethods.field(key)

提取Series中指定结构列的子项

参数

key: int or str

相应结构列的索引/位置或字段名称

返回

Series

例子

>>> s = cudf.Series([{'a': 1, 'b': 2}, {'a': 3, 'b': 4}])
>>> s.struct.field(0)
0    1
1    3
dtype: int64
>>> s.struct.field('a')
0    1
1    3
dtype: int64

相关用法


注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.core.column.struct.StructMethods.field。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。