當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pyspark Series.argmax用法及代碼示例


本文簡要介紹 pyspark.pandas.Series.argmax 的用法。

用法:

Series.argmax() → int

返回係列中最大值的 int 位置。

如果在多個位置達到最大值,則返回第一行位置。

返回

int

最大值的行位置。

例子

考慮包含穀物卡路裏的數據集

>>> s = ps.Series({'Corn Flakes': 100.0, 'Almond Delight': 110.0,
...                'Cinnamon Toast Crunch': 120.0, 'Cocoa Puff': 110.0})
>>> s  
Corn Flakes              100.0
Almond Delight           110.0
Cinnamon Toast Crunch    120.0
Cocoa Puff               110.0
dtype: float64
>>> s.argmax()  
2

相關用法


注:本文由純淨天空篩選整理自spark.apache.org大神的英文原創作品 pyspark.pandas.Series.argmax。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。