Skip to content

Commit

Permalink
DOC ddof not described in docstring.
Browse files Browse the repository at this point in the history
  • Loading branch information
kwgoodman committed Sep 4, 2012
1 parent 60c57b7 commit 1abdfa7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bottleneck/src/template/move/move_nanstd.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,10 @@ def move_nanstd(arr, int window, int axis=-1, int ddof=0):
The axis over which to perform the moving standard deviation. By
default the moving standard deviation is taken over the last axis
(axis=-1). An axis of None is not allowed.
ddof : int, optional
Means Delta Degrees of Freedom. The divisor used in calculations
is ``N - ddof``, where ``N`` represents the number of elements.
By default `ddof` is zero.
Returns
-------
Expand Down
4 changes: 4 additions & 0 deletions bottleneck/src/template/move/move_std.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,10 @@ def move_std(arr, int window, int axis=-1, int ddof=0):
The axis over which to perform the moving standard deviation. By
default the moving standard deviation is taken over the last axis
(axis=-1). An axis of None is not allowed.
ddof : int, optional
Means Delta Degrees of Freedom. The divisor used in calculations
is ``N - ddof``, where ``N`` represents the number of elements.
By default `ddof` is zero.
Returns
-------
Expand Down

0 comments on commit 1abdfa7

Please sign in to comment.