🍾 Xarray is now 10 years old! 🎉

xarray.core.groupby.DatasetGroupBy

xarray.core.groupby.DatasetGroupBy#

class xarray.core.groupby.DatasetGroupBy(obj, groupers, squeeze=False, restore_coord_dims=True)[source]#
__init__(obj, groupers, squeeze=False, restore_coord_dims=True)[source]#

Create a GroupBy object

Parameters:
  • obj (Dataset or DataArray) – Object to group.

  • grouper (Grouper) – Grouper object

  • restore_coord_dims (bool, default: True) – If True, also restore the dimension order of multi-dimensional coordinates.

Methods

__init__(obj, groupers[, squeeze, ...])

Create a GroupBy object

all([dim, keep_attrs])

Reduce this Dataset's data by applying all along some dimension(s).

any([dim, keep_attrs])

Reduce this Dataset's data by applying any along some dimension(s).

apply(func[, args, shortcut])

Backward compatible implementation of map

assign(**kwargs)

Assign data variables by group.

assign_coords([coords])

Assign coordinates by group.

count([dim, keep_attrs])

Reduce this Dataset's data by applying count along some dimension(s).

cumprod([dim, skipna, keep_attrs])

Reduce this Dataset's data by applying cumprod along some dimension(s).

cumsum([dim, skipna, keep_attrs])

Reduce this Dataset's data by applying cumsum along some dimension(s).

fillna(value)

Fill missing values in this object by group.

first([skipna, keep_attrs])

Return the first element of each group along the group dimension

last([skipna, keep_attrs])

Return the last element of each group along the group dimension

map(func[, args, shortcut])

Apply a function to each Dataset in the group and concatenate them together into a new Dataset.

max([dim, skipna, keep_attrs])

Reduce this Dataset's data by applying max along some dimension(s).

mean([dim, skipna, keep_attrs])

Reduce this Dataset's data by applying mean along some dimension(s).

median([dim, skipna, keep_attrs])

Reduce this Dataset's data by applying median along some dimension(s).

min([dim, skipna, keep_attrs])

Reduce this Dataset's data by applying min along some dimension(s).

prod([dim, skipna, min_count, keep_attrs])

Reduce this Dataset's data by applying prod along some dimension(s).

quantile(q[, dim, method, keep_attrs, ...])

Compute the qth quantile over each array in the groups and concatenate them together into a new array.

reduce(func[, dim, axis, keep_attrs, ...])

Reduce the items in this group by applying func along some dimension(s).

std([dim, skipna, ddof, keep_attrs])

Reduce this Dataset's data by applying std along some dimension(s).

sum([dim, skipna, min_count, keep_attrs])

Reduce this Dataset's data by applying sum along some dimension(s).

var([dim, skipna, ddof, keep_attrs])

Reduce this Dataset's data by applying var along some dimension(s).

where(cond[, other])

Return elements from self or other depending on cond.

Attributes

dims

groupers

groups

Mapping from group labels to indices.

sizes

Ordered mapping from dimension names to lengths.