Skip to content

Commit 7073ec8

Browse files
Added See Also sections
1 parent 52eb04b commit 7073ec8

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

pandas/core/groupby/generic.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2452,6 +2452,10 @@ def nunique(self, dropna: bool = True) -> DataFrame:
24522452
-------
24532453
nunique: DataFrame
24542454
Counts of unique elements in each position.
2455+
2456+
See Also
2457+
--------
2458+
DataFrame.nunique : Count number of distinct elements in specified axis.
24552459
24562460
Examples
24572461
--------

pandas/core/groupby/groupby.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2657,6 +2657,11 @@ def sem(self, ddof: int = 1, numeric_only: bool = False) -> NDFrameT:
26572657
-------
26582658
Series or DataFrame
26592659
Standard error of the mean of values within each group.
2660+
2661+
See Also
2662+
--------
2663+
DataFrame.groupby : Apply a function groupby to each row or column of a
2664+
DataFrame.
26602665
26612666
Examples
26622667
--------

0 commit comments

Comments
 (0)