本文简要介绍
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
相关用法
- Python pyspark Series.argmin用法及代码示例
- Python pyspark Series.argsort用法及代码示例
- Python pyspark Series.asof用法及代码示例
- Python pyspark Series.add_prefix用法及代码示例
- Python pyspark Series.align用法及代码示例
- Python pyspark Series.astype用法及代码示例
- Python pyspark Series.any用法及代码示例
- Python pyspark Series.append用法及代码示例
- Python pyspark Series.apply用法及代码示例
- Python pyspark Series.add用法及代码示例
- Python pyspark Series.all用法及代码示例
- Python pyspark Series.add_suffix用法及代码示例
- Python pyspark Series.aggregate用法及代码示例
- Python pyspark Series.abs用法及代码示例
- Python pyspark Series.at_time用法及代码示例
- Python pyspark Series.axes用法及代码示例
- Python pyspark Series.at用法及代码示例
- Python pyspark Series.agg用法及代码示例
- Python pyspark Series.to_frame用法及代码示例
- Python pyspark Series.rsub用法及代码示例
- Python pyspark Series.mod用法及代码示例
- Python pyspark Series.str.join用法及代码示例
- Python pyspark Series.str.startswith用法及代码示例
- Python pyspark Series.dt.is_quarter_end用法及代码示例
- Python pyspark Series.dropna用法及代码示例
注:本文由纯净天空筛选整理自spark.apache.org大神的英文原创作品 pyspark.pandas.Series.argmax。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。