MCPcopy Index your code
hub / github.com/dask/dask / max

Method max

dask/dataframe/dask_expr/_collection.py:1852–1858  ·  view source on GitHub ↗
(self, axis=0, skipna=True, numeric_only=False, split_every=False, **kwargs)

Source from the content-addressed store, hash-verified

1850
1851 @derived_from(pd.DataFrame)
1852 def max(self, axis=0, skipna=True, numeric_only=False, split_every=False, **kwargs):
1853 axis = self._validate_axis(axis)
1854 if axis == 1:
1855 return self.map_partitions(
1856 M.max, skipna=skipna, numeric_only=numeric_only, axis=axis
1857 )
1858 return new_collection(self.expr.max(skipna, numeric_only, split_every, axis))
1859
1860 @derived_from(pd.DataFrame)
1861 def any(self, axis=0, skipna=True, split_every=False, **kwargs):

Callers

nothing calls this directly

Calls 3

map_partitionsMethod · 0.95
new_collectionFunction · 0.90
_validate_axisMethod · 0.45

Tested by

no test coverage detected