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


Python pyspark SeriesGroupBy.nsmallest用法及代碼示例


本文簡要介紹 pyspark.pandas.groupby.SeriesGroupBy.nsmallest 的用法。

用法:

SeriesGroupBy.nsmallest(n: int = 5) → pyspark.pandas.series.Series

返回最小的 n 元素。

參數

nint

要檢索的項目數。

例子

>>> df = ps.DataFrame({'a': [1, 1, 1, 2, 2, 2, 3, 3, 3],
...                    'b': [1, 2, 2, 2, 3, 3, 3, 4, 4]}, columns=['a', 'b'])
>>> df.groupby(['a'])['b'].nsmallest(1).sort_index()  
a
1  0    1
2  3    2
3  6    3
Name: b, dtype: int64

相關用法


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