xarray.core.resample.DatasetResample.all¶
-
DatasetResample.all(dim=None, **kwargs)¶ Reduce this DatasetResample’s data by applying all along some dimension(s).
- Parameters
dim (
stror sequence ofstr, optional) – Dimension(s) over which to apply all. By default all is applied over all dimensions.keep_attrs (
bool, optional) – If True, the attributes (attrs) will be copied from the original object to the new one. If False (default), the new object will be returned without attributes.**kwargs (
dict) – Additional keyword arguments passed on to the appropriate array function for calculating all on this object’s data.
- Returns
reduced – New DatasetResample object with all applied to its data and the indicated dimension(s) removed.
- Return type