DataFrame.nsmallest(n, columns, keep='first') [source]
Get the rows of a DataFrame sorted by the n smallest values of columns.
| Parameters: |
n : int Number of items to retrieve columns : list or str Column name or names to order by keep : {‘first’, ‘last’}, default ‘first’ Where there are duplicate values: - |
|---|---|
| Returns: |
|
>>> df = pd.DataFrame({'a': [1, 10, 8, 11, -1],
... 'b': list('abdce'),
... 'c': [1.0, 2.0, np.nan, 3.0, 4.0]})
>>> df.nsmallest(3, 'a')
a b c
4 -1 e 4
0 1 a 1
2 8 d NaN
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
http://pandas.pydata.org/pandas-docs/version/0.23.4/generated/pandas.DataFrame.nsmallest.html