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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。