MCPcopy
hub / github.com/dask/dask / any

Method any

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

Source from the content-addressed store, hash-verified

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

Callers 1

from_pandasFunction · 0.45

Calls 3

map_partitionsMethod · 0.95
new_collectionFunction · 0.90
_validate_axisMethod · 0.45

Tested by

no test coverage detected