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


Python cudf.Series.nlargest用法及代码示例


用法:

Series.nlargest(n=5, keep='first')

返回n 最大元素的新系列。

参数

n整数,默认 5

返回这么多降序排序的值。

keep{‘first’, ‘last’},默认 ‘first’

当有重复值不能全部放入 n 元素系列时:

  • first :按出现顺序返回第一个 n 出现。
  • last :以相反的出现顺序返回最后出现的 n

返回

Series

系列中的 n 最大值,按降序排列。

例子

>>> import cudf
>>> countries_population = {"Italy": 59000000, "France": 65000000,
...                         "Malta": 434000, "Maldives": 434000,
...                         "Brunei": 434000, "Iceland": 337000,
...                         "Nauru": 11300, "Tuvalu": 11300,
...                         "Anguilla": 11300, "Montserrat": 5200}
>>> series = cudf.Series(countries_population)
>>> series
Italy         59000000
France        65000000
Malta           434000
Maldives        434000
Brunei          434000
Iceland         337000
Nauru            11300
Tuvalu           11300
Anguilla         11300
Montserrat        5200
dtype: int64
>>> series.nlargest()
France      65000000
Italy       59000000
Malta         434000
Maldives      434000
Brunei        434000
dtype: int64
>>> series.nlargest(3)
France    65000000
Italy     59000000
Malta       434000
dtype: int64
>>> series.nlargest(3, keep='last')
France    65000000
Italy     59000000
Brunei      434000
dtype: int64

相关用法


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