Skip to content

Commit

Permalink
DOC: cross ref the groupby tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
jklymak committed Feb 24, 2023
1 parent 185e28e commit 77787a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion xarray/core/dataarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -6205,6 +6205,7 @@ def groupby(
restore_coord_dims: bool = False,
) -> DataArrayGroupBy:
"""Returns a DataArrayGroupBy object for performing grouped operations.
See more details at :ref:`groupby`.
Parameters
----------
Expand Down Expand Up @@ -6285,7 +6286,8 @@ def groupby_bins(
"""Returns a DataArrayGroupBy object for performing grouped operations.
Rather than using all unique values of `group`, the values are discretized
first by applying `pandas.cut` [1]_ to `group`.
first by applying `pandas.cut` [1]_ to `group`. See more details at
:ref:`groupby`.
Parameters
----------
Expand Down
2 changes: 2 additions & 0 deletions xarray/core/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -8911,6 +8911,7 @@ def groupby(
restore_coord_dims: bool = False,
) -> DatasetGroupBy:
"""Returns a DatasetGroupBy object for performing grouped operations.
See more details at :ref:`groupby`.
Parameters
----------
Expand Down Expand Up @@ -8969,6 +8970,7 @@ def groupby_bins(
restore_coord_dims: bool = False,
) -> DatasetGroupBy:
"""Returns a DatasetGroupBy object for performing grouped operations.
See more details at :ref:`groupby`.
Rather than using all unique values of `group`, the values are discretized
first by applying `pandas.cut` [1]_ to `group`.
Expand Down

0 comments on commit 77787a5

Please sign in to comment.