From 247f73caf849e316dfa43a16442ee2716f962071 Mon Sep 17 00:00:00 2001 From: Antonio Linde Date: Sun, 4 Mar 2018 22:32:41 +0100 Subject: [PATCH] DOC: is confusing for ddof parameter of sem, var and std functions --- pandas/core/generic.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index c411e29b5cc02..3f0cb8a5bfcca 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -7767,7 +7767,8 @@ def _doc_parms(cls): If the axis is a MultiIndex (hierarchical), count along a particular level, collapsing into a %(name1)s ddof : int, default 1 - degrees of freedom + Delta Degrees of Freedom. The divisor used in calculations is N - ddof, + where N represents the number of elements. numeric_only : boolean, default None Include only float, int, boolean columns. If None, will attempt to use everything, then use only numeric data. Not implemented for Series.