File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -6218,6 +6218,17 @@ def _gotitem(self,
6218
6218
axis=0)``.
6219
6219
6220
6220
`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.
6221
6232
6222
6233
See Also
6223
6234
--------
Original file line number Diff line number Diff line change @@ -1319,6 +1319,13 @@ def kurt(self, **kwargs):
1319
1319
Series or DataFrame
1320
1320
Returned object type is determined by the caller of the %(name)s
1321
1321
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.
1322
1329
1323
1330
See Also
1324
1331
--------
You can’t perform that action at this time.
0 commit comments