We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
main
https://pandas.pydata.org/docs/dev/user_guide/window.html#exponentially-weighted-window
in the documentation for alpha as a function of half-life the formula says 1-exp^(log(0.5)/h)
it should be either exp(log(0.5)/h) or e^(log(0.5)/h) but not exp^(log(0.5)/h)
I suggest changing it to 1-e^(log(0.5)/h)
The text was updated successfully, but these errors were encountered:
fix issue pandas-dev#60410
53a24d2
67340de
fix issue #60410 (#60412)
a2ceb52
fix issue pandas-dev#60410 (pandas-dev#60412)
4e17fc3
Successfully merging a pull request may close this issue.
Pandas version checks
main
hereLocation of the documentation
https://pandas.pydata.org/docs/dev/user_guide/window.html#exponentially-weighted-window
Documentation problem
in the documentation for alpha as a function of half-life the formula says 1-exp^(log(0.5)/h)
it should be either exp(log(0.5)/h) or e^(log(0.5)/h) but not exp^(log(0.5)/h)
Suggested fix for documentation
I suggest changing it to 1-e^(log(0.5)/h)
The text was updated successfully, but these errors were encountered: