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


Python pyspark Series.keys用法及代码示例


本文简要介绍 pyspark.pandas.Series.keys 的用法。

用法:

Series.keys() → pyspark.pandas.indexes.base.Index

返回索引的别名。

返回

index

系列索引。

例子

>>> midx = pd.MultiIndex([['lama', 'cow', 'falcon'],
...                       ['speed', 'weight', 'length']],
...                      [[0, 0, 0, 1, 1, 1, 2, 2, 2],
...                       [0, 1, 2, 0, 1, 2, 0, 1, 2]])
>>> psser = ps.Series([45, 200, 1.2, 30, 250, 1.5, 320, 1, 0.3], index=midx)
>>> psser.keys()  
MultiIndex([(  'lama',  'speed'),
            (  'lama', 'weight'),
            (  'lama', 'length'),
            (   'cow',  'speed'),
            (   'cow', 'weight'),
            (   'cow', 'length'),
            ('falcon',  'speed'),
            ('falcon', 'weight'),
            ('falcon', 'length')],
           )

相关用法


注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.keys。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。