Skip to content

Commit ee4c495

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

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

xarray/core/dataarray.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6205,7 +6205,6 @@ 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`.
62096208
62106209
Parameters
62116210
----------
@@ -6250,6 +6249,7 @@ def groupby(
62506249
62516250
See Also
62526251
--------
6252+
:ref:`groupby`.
62536253
DataArray.groupby_bins
62546254
Dataset.groupby
62556255
core.groupby.DataArrayGroupBy
@@ -6286,8 +6286,7 @@ def groupby_bins(
62866286
"""Returns a DataArrayGroupBy object for performing grouped operations.
62876287
62886288
Rather than using all unique values of `group`, the values are discretized
6289-
first by applying `pandas.cut` [1]_ to `group`. See more details at
6290-
:ref:`groupby`.
6289+
first by applying `pandas.cut` [1]_ to `group`.
62916290
62926291
Parameters
62936292
----------
@@ -6330,6 +6329,7 @@ def groupby_bins(
63306329
63316330
See Also
63326331
--------
6332+
:ref:`groupby`.
63336333
DataArray.groupby
63346334
Dataset.groupby_bins
63356335
core.groupby.DataArrayGroupBy

xarray/core/dataset.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8911,7 +8911,6 @@ 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`.
89158914
89168915
Parameters
89178916
----------
@@ -8934,6 +8933,7 @@ def groupby(
89348933
89358934
See Also
89368935
--------
8936+
:ref:`groupby`.
89378937
Dataset.groupby_bins
89388938
DataArray.groupby
89398939
core.groupby.DatasetGroupBy
@@ -8970,7 +8970,6 @@ def groupby_bins(
89708970
restore_coord_dims: bool = False,
89718971
) -> DatasetGroupBy:
89728972
"""Returns a DatasetGroupBy object for performing grouped operations.
8973-
See more details at :ref:`groupby`.
89748973
89758974
Rather than using all unique values of `group`, the values are discretized
89768975
first by applying `pandas.cut` [1]_ to `group`.
@@ -9016,6 +9015,7 @@ def groupby_bins(
90169015
90179016
See Also
90189017
--------
9018+
:ref:`groupby`.
90199019
Dataset.groupby
90209020
DataArray.groupby_bins
90219021
core.groupby.DatasetGroupBy

0 commit comments

Comments
 (0)