MCPcopy Index your code
hub / github.com/pydata/xarray / reduce

Method reduce

xarray/namedarray/_aggregations.py:17–26  ·  view source on GitHub ↗
(
        self,
        func: Callable[..., Any],
        dim: Dims = None,
        *,
        axis: int | Sequence[int] | None = None,
        keepdims: bool = False,
        **kwargs: Any,
    )

Source from the content-addressed store, hash-verified

15 __slots__ = ()
16
17 def reduce(
18 self,
19 func: Callable[..., Any],
20 dim: Dims = None,
21 *,
22 axis: int | Sequence[int] | None = None,
23 keepdims: bool = False,
24 **kwargs: Any,
25 ) -> Self:
26 raise NotImplementedError()
27
28 def count(
29 self,

Callers 13

countMethod · 0.95
allMethod · 0.95
anyMethod · 0.95
maxMethod · 0.95
minMethod · 0.95
meanMethod · 0.95
prodMethod · 0.95
sumMethod · 0.95
stdMethod · 0.95
varMethod · 0.95
medianMethod · 0.95
cumsumMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected