Skip to content

Commit fe15e51

Browse files
committed
DOC: Fix docstrings with the sections in the wrong order pandas-dev#24280
1 parent f02b548 commit fe15e51

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

pandas/core/frame.py

+11
Original file line numberDiff line numberDiff line change
@@ -6218,6 +6218,17 @@ def _gotitem(self,
62186218
axis=0)``.
62196219
62206220
`agg` is an alias for `aggregate`. Use the alias.
6221+
6222+
See Also
6223+
--------
6224+
DataFrame.apply : Perform any type of operations.
6225+
DataFrame.transform : Perform transformation type operations.
6226+
pandas.core.groupby.GroupBy : Perform operations over groups.
6227+
pandas.core.resample.Resampler : Perform operations over resampled bins.
6228+
pandas.core.window.Rolling : Perform operations over rolling window.
6229+
pandas.core.window.Expanding : Perform operations over expanding window.
6230+
pandas.core.window.EWM : Perform operation over exponential weighted
6231+
window.
62216232
62226233
See Also
62236234
--------

pandas/core/window.py

+7
Original file line numberDiff line numberDiff line change
@@ -1319,6 +1319,13 @@ def kurt(self, **kwargs):
13191319
Series or DataFrame
13201320
Returned object type is determined by the caller of the %(name)s
13211321
calculation.
1322+
1323+
See Also
1324+
--------
1325+
pandas.Series.quantile : Computes value at the given quantile over all data
1326+
in Series.
1327+
pandas.DataFrame.quantile : Computes values at the given quantile over
1328+
requested axis in DataFrame.
13221329
13231330
See Also
13241331
--------

0 commit comments

Comments
 (0)