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 77787a5 commit ee4c495
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions xarray/core/dataarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -6205,7 +6205,6 @@ 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 @@ -6250,6 +6249,7 @@ def groupby(
See Also
--------
:ref:`groupby`.
DataArray.groupby_bins
Dataset.groupby
core.groupby.DataArrayGroupBy
Expand Down Expand Up @@ -6286,8 +6286,7 @@ 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`. See more details at
:ref:`groupby`.
first by applying `pandas.cut` [1]_ to `group`.
Parameters
----------
Expand Down Expand Up @@ -6330,6 +6329,7 @@ def groupby_bins(
See Also
--------
:ref:`groupby`.
DataArray.groupby
Dataset.groupby_bins
core.groupby.DataArrayGroupBy
Expand Down
4 changes: 2 additions & 2 deletions xarray/core/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -8911,7 +8911,6 @@ def groupby(
restore_coord_dims: bool = False,
) -> DatasetGroupBy:
"""Returns a DatasetGroupBy object for performing grouped operations.
See more details at :ref:`groupby`.
Parameters
----------
Expand All @@ -8934,6 +8933,7 @@ def groupby(
See Also
--------
:ref:`groupby`.
Dataset.groupby_bins
DataArray.groupby
core.groupby.DatasetGroupBy
Expand Down Expand Up @@ -8970,7 +8970,6 @@ 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 Expand Up @@ -9016,6 +9015,7 @@ def groupby_bins(
See Also
--------
:ref:`groupby`.
Dataset.groupby
DataArray.groupby_bins
core.groupby.DatasetGroupBy
Expand Down

0 comments on commit ee4c495

Please sign in to comment.