We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As part of the following commit:
fbb1102#L5L799
Series.std and Series.var no longer pass along ddof to the nanops.nanvar function.
Also since ddof defaults to 1 in pandas and 0 in numpy.
arr = np.arange(10) s = Series(arr) # False np.std(s) == np.std(arr) # True np.std(s) == np.std(arr, ddof=1)
Which I don't know if it's a bug but it's non-intuitive.
The text was updated successfully, but these errors were encountered:
0d81f0a
fixed in PR #965 (will be part of pandas 0.7.3)
Sorry, something went wrong.
style: remove white space on blank line pandas-dev#934 in pandas/util…
65f2b43
…/testing.py
No branches or pull requests
As part of the following commit:
fbb1102#L5L799
Series.std and Series.var no longer pass along ddof to the nanops.nanvar function.
Also since ddof defaults to 1 in pandas and 0 in numpy.
Which I don't know if it's a bug but it's non-intuitive.
The text was updated successfully, but these errors were encountered: