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

Method _array_reduce

xarray/computation/rolling.py:905–922  ·  view source on GitHub ↗
(
        self,
        array_agg_func,
        bottleneck_move_func,
        rolling_agg_func,
        keep_attrs,
        **kwargs,
    )

Source from the content-addressed store, hash-verified

903 )
904
905 def _array_reduce(
906 self,
907 array_agg_func,
908 bottleneck_move_func,
909 rolling_agg_func,
910 keep_attrs,
911 **kwargs,
912 ):
913 return self._dataset_implementation(
914 functools.partial(
915 DataArrayRolling._array_reduce,
916 array_agg_func=array_agg_func,
917 bottleneck_move_func=bottleneck_move_func,
918 rolling_agg_func=rolling_agg_func,
919 ),
920 keep_attrs=keep_attrs,
921 **kwargs,
922 )
923
924 @_deprecate_positional_args("v2024.11.0")
925 def construct(

Callers 1

methodMethod · 0.45

Calls 1

Tested by

no test coverage detected