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

Method all

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

Source from the content-addressed store, hash-verified

1860
1861 @derived_from(pd.DataFrame)
1862 def all(self, axis=0, skipna=True, split_every=False, **kwargs):
1863 axis = self._validate_axis(axis)
1864 if axis == 1:
1865 return self.map_partitions(M.all, skipna=skipna, axis=axis)
1866 return new_collection(self.expr.all(skipna, split_every))
1867
1868 @derived_from(pd.DataFrame)
1869 def idxmin(self, axis=0, skipna=True, numeric_only=False, split_every=False):

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