MCPcopy Create free account
hub / github.com/dask/dask / nlargest

Method nlargest

dask/dataframe/dask_expr/_collection.py:4308–4309  ·  view source on GitHub ↗
(self, n=5, split_every=None)

Source from the content-addressed store, hash-verified

4306
4307 @derived_from(pd.Series)
4308 def nlargest(self, n=5, split_every=None):
4309 return new_collection(NLargest(self, n=n, split_every=split_every))
4310
4311 @derived_from(pd.Series)
4312 def nsmallest(self, n=5, split_every=None):

Calls 2

new_collectionFunction · 0.90
NLargestClass · 0.90