Skip to content

Commit a95924c

Browse files
Added See Also Sections
1 parent e49ab80 commit a95924c

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

pandas/core/groupby/generic.py

+4
Original file line numberDiff line numberDiff line change
@@ -2438,6 +2438,10 @@ def nunique(self, dropna: bool = True) -> DataFrame:
24382438
-------
24392439
nunique: DataFrame
24402440
Counts of unique elements in each position.
2441+
2442+
See Also
2443+
--------
2444+
DataFrame.nunique : Count number of distinct elements in specified axis.
24412445
24422446
Examples
24432447
--------

pandas/core/groupby/groupby.py

+5
Original file line numberDiff line numberDiff line change
@@ -2634,6 +2634,11 @@ def sem(self, ddof: int = 1, numeric_only: bool = False) -> NDFrameT:
26342634
-------
26352635
Series or DataFrame
26362636
Standard error of the mean of values within each group.
2637+
2638+
See Also
2639+
--------
2640+
DataFrame.groupby : Apply a function groupby to each row or column of a
2641+
DataFrame.
26372642
26382643
Examples
26392644
--------

0 commit comments

Comments
 (0)