用法:
SeriesGroupBy.nsmallest(n=5, keep='first')
返回最小的
n
元素。- n:整数,默认 5
返回这么多升序排序的值。
- keep:{‘first’, ‘last’, ‘all’},默认 ‘first’
当有重复值不能全部放入
n
元素系列时:first
:按出现顺序返回第一个n
出现。last
:以相反的出现顺序返回最后出现的n
。all
:保留所有出现。这可能会导致大小大于n
的系列。
- Series
系列中的
n
最小值,按升序排序。
参数:
返回:
注意:
相对于
Series
对象的大小,对于较小的n
,比.sort_values().head(n)
快。例子:
>>> countries_population = {"Italy":59000000, "France":65000000, ... "Brunei":434000, "Malta":434000, ... "Maldives":434000, "Iceland":337000, ... "Nauru":11300, "Tuvalu":11300, ... "Anguilla":11300, "Montserrat":5200} >>> s = pd.Series(countries_population) >>> s Italy 59000000 France 65000000 Brunei 434000 Malta 434000 Maldives 434000 Iceland 337000 Nauru 11300 Tuvalu 11300 Anguilla 11300 Montserrat 5200 dtype:int64
n
最小元素,默认为n=5
。>>> s.nsmallest() Montserrat 5200 Nauru 11300 Tuvalu 11300 Anguilla 11300 Iceland 337000 dtype:int64
n
最小元素,其中n=3
。默认keep
值为 ‘first’,因此将保留瑙鲁和图瓦卢。>>> s.nsmallest(3) Montserrat 5200 Nauru 11300 Tuvalu 11300 dtype:int64
n
最小元素,其中n=3
并保留最后一个重复项。安圭拉和图瓦卢将被保留,因为它们是最后一个,基于索引顺序的值为 11300。>>> s.nsmallest(3, keep='last') Montserrat 5200 Anguilla 11300 Tuvalu 11300 dtype:int64
n
最小元素,其中n=3
保留所有重复项。请注意,由于三个重复项,返回的 Series 有四个元素。>>> s.nsmallest(3, keep='all') Montserrat 5200 Nauru 11300 Tuvalu 11300 Anguilla 11300 dtype:int64
相关用法
- Python pandas.core.groupby.SeriesGroupBy.nlargest用法及代码示例
- Python pandas.core.groupby.SeriesGroupBy.unique用法及代码示例
- Python pandas.core.groupby.SeriesGroupBy.transform用法及代码示例
- Python pandas.core.groupby.SeriesGroupBy.aggregate用法及代码示例
- Python pandas.core.groupby.GroupBy.nth用法及代码示例
- Python pandas.core.groupby.DataFrameGroupBy.hist用法及代码示例
- Python pandas.core.groupby.DataFrameGroupBy.resample用法及代码示例
- Python pandas.core.groupby.DataFrameGroupBy.quantile用法及代码示例
- Python pandas.core.groupby.DataFrameGroupBy.cumcount用法及代码示例
- Python pandas.core.groupby.DataFrameGroupBy.sample用法及代码示例
- Python pandas.core.groupby.DataFrameGroupBy.fillna用法及代码示例
- Python pandas.core.groupby.GroupBy.cumcount用法及代码示例
- Python pandas.core.groupby.GroupBy.mean用法及代码示例
- Python pandas.core.groupby.DataFrameGroupBy.filter用法及代码示例
- Python pandas.core.groupby.DataFrameGroupBy.aggregate用法及代码示例
- Python pandas.core.groupby.DataFrameGroupBy.nunique用法及代码示例
- Python pandas.core.groupby.DataFrameGroupBy.describe用法及代码示例
- Python pandas.core.groupby.GroupBy.tail用法及代码示例
- Python pandas.core.groupby.DataFrameGroupBy.value_counts用法及代码示例
- Python pandas.core.groupby.GroupBy.rank用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.core.groupby.SeriesGroupBy.nsmallest。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。