Skip to content

Commit 77787a5

Browse files
committed
DOC: cross ref the groupby tutorial
1 parent 185e28e commit 77787a5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

xarray/core/dataarray.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -6205,6 +6205,7 @@ def groupby(
62056205
restore_coord_dims: bool = False,
62066206
) -> DataArrayGroupBy:
62076207
"""Returns a DataArrayGroupBy object for performing grouped operations.
6208+
See more details at :ref:`groupby`.
62086209
62096210
Parameters
62106211
----------
@@ -6285,7 +6286,8 @@ def groupby_bins(
62856286
"""Returns a DataArrayGroupBy object for performing grouped operations.
62866287
62876288
Rather than using all unique values of `group`, the values are discretized
6288-
first by applying `pandas.cut` [1]_ to `group`.
6289+
first by applying `pandas.cut` [1]_ to `group`. See more details at
6290+
:ref:`groupby`.
62896291
62906292
Parameters
62916293
----------

xarray/core/dataset.py

+2
Original file line numberDiff line numberDiff line change
@@ -8911,6 +8911,7 @@ def groupby(
89118911
restore_coord_dims: bool = False,
89128912
) -> DatasetGroupBy:
89138913
"""Returns a DatasetGroupBy object for performing grouped operations.
8914+
See more details at :ref:`groupby`.
89148915
89158916
Parameters
89168917
----------
@@ -8969,6 +8970,7 @@ def groupby_bins(
89698970
restore_coord_dims: bool = False,
89708971
) -> DatasetGroupBy:
89718972
"""Returns a DatasetGroupBy object for performing grouped operations.
8973+
See more details at :ref:`groupby`.
89728974
89738975
Rather than using all unique values of `group`, the values are discretized
89748976
first by applying `pandas.cut` [1]_ to `group`.

0 commit comments

Comments
 (0)