Skip to content

Commit fe8a947

Browse files
authored
DOC: Improve DataFrameGroupBy.std ddof doc (#59425)
improve ddof doc of DataFrameGroupBy.std
1 parent dfbd97e commit fe8a947

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/groupby/groupby.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2437,7 +2437,8 @@ def std(
24372437
Parameters
24382438
----------
24392439
ddof : int, default 1
2440-
Degrees of freedom.
2440+
Delta Degrees of Freedom. The divisor used in calculations is ``N - ddof``,
2441+
where ``N`` represents the number of elements.
24412442
24422443
engine : str, default None
24432444
* ``'cython'`` : Runs the operation through C-extensions from cython.

0 commit comments

Comments
 (0)