Skip to content
1 change: 1 addition & 0 deletions doc/api/dataarray.rst
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ Aggregation
DataArray.min
DataArray.mean
DataArray.median
DataArray.nunique
DataArray.prod
DataArray.sum
DataArray.std
Expand Down
1 change: 1 addition & 0 deletions doc/api/dataset.rst
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ Aggregation
Dataset.min
Dataset.mean
Dataset.median
Dataset.nunique
Dataset.prod
Dataset.sum
Dataset.std
Expand Down
1 change: 1 addition & 0 deletions doc/api/datatree.rst
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ Aggregate data in all nodes in the subtree simultaneously.
DataTree.min
DataTree.mean
DataTree.median
DataTree.nunique
DataTree.prod
DataTree.sum
DataTree.std
Expand Down
3 changes: 2 additions & 1 deletion doc/contribute/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,8 @@ You can either run pre-commit manually via Pixi as described above, or set up gi

This is done by:

.. code-block:: sh
.. code-block:: shell

pixi shell -e pre-commit # enter the pre-commit environment
pre-commit install # install the git hooks

Expand Down
7 changes: 7 additions & 0 deletions doc/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ v2025.12.1 (unreleased)
New Features
~~~~~~~~~~~~

- :py:func:`combine_nested` now support :py:class:`DataTree` objects
(:pull:`10849`).
By `Stephan Hoyer <https://github.com/shoyer>`_.
- Add :py:func:`nunique` reduction function (:issue:`9548`), which behaves like
:py:func:`pandas.DataFrame.nunique` applied along specific dimensions.
By `Ewan Short <https://github.com/eshort0401>`_.


Breaking Changes
~~~~~~~~~~~~~~~~
Expand Down
Loading
Loading