MCPcopy
hub / github.com/pandas-dev/pandas / any

Method any

pandas/core/generic.py:11617–11627  ·  view source on GitHub ↗
(
        self,
        *,
        axis: Axis | None = 0,
        bool_only: bool = False,
        skipna: bool = True,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

11615 )
11616
11617 def any(
11618 self,
11619 *,
11620 axis: Axis | None = 0,
11621 bool_only: bool = False,
11622 skipna: bool = True,
11623 **kwargs,
11624 ) -> Series | bool:
11625 return self._logical_func(
11626 "any", nanops.nanany, axis, bool_only, skipna, **kwargs
11627 )
11628
11629 def all(
11630 self,

Callers 5

_drop_axisMethod · 0.45
asofMethod · 0.45
_clip_with_scalarMethod · 0.45
clipMethod · 0.45
compareMethod · 0.45

Calls 1

_logical_funcMethod · 0.95

Tested by

no test coverage detected