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


Python pyspark MultiIndex.max用法及代码示例


本文简要介绍 pyspark.pandas.MultiIndex.max 的用法。

用法:

MultiIndex.max() → Union[int, float, bool, str, bytes, decimal.Decimal, datetime.date, datetime.datetime, None, Tuple[Union[int, float, bool, str, bytes, decimal.Decimal, datetime.date, datetime.datetime, None], …]]

返回索引的最大值。

返回

标量

最大值。

例子

>>> idx = ps.Index([3, 2, 1])
>>> idx.max()
3
>>> idx = ps.Index(['c', 'b', 'a'])
>>> idx.max()
'c'

对于 MultiIndex,最大值是按字典顺序确定的。

>>> idx = ps.MultiIndex.from_tuples([('a', 'x', 1), ('b', 'y', 2)])
>>> idx.max()
('b', 'y', 2)

相关用法


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