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

Method any

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

Source from the content-addressed store, hash-verified

1853
1854 @derived_from(pd.DataFrame)
1855 def any(self, axis=0, skipna=True, split_every=False, **kwargs):
1856 axis = self._validate_axis(axis)
1857 if axis == 1:
1858 return self.map_partitions(M.any, skipna=skipna, axis=axis)
1859 return new_collection(self.expr.any(skipna, split_every))
1860
1861 @derived_from(pd.DataFrame)
1862 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