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
I think this would be just: .ewm(span).mean() * span
.ewm(span).mean() * span
Now:
In [4]: pd.Series(range(10)).ewm(span=2).sum() --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-4-8e0e72f35eb3> in <module>() ----> 1 pd.Series(range(10)).ewm(span=2).sum() /Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/site-packages/pandas/core/window.py in __getattr__(self, attr) 122 123 raise AttributeError("%r object has no attribute %r" % --> 124 (type(self).__name__, attr)) 125 126 def _dir_additions(self): AttributeError: 'EWM' object has no attribute 'sum'
CC @erbian
The text was updated successfully, but these errors were encountered:
is this common nomenclature?
Sorry, something went wrong.
I'm not sure tbh...
Successfully merging a pull request may close this issue.
I think this would be just:
.ewm(span).mean() * span
Now:
CC @erbian
The text was updated successfully, but these errors were encountered: