Issue
Is there a way to extract the underlying list/array from a Pandas ExponentialMovingWindow?
window = pd.Series.ewm(df, alpha)
window.mean() // works
window.sum() // works
window.getattr('array') // does NOT work
Solution
If by underlying list/array you mean the data after ewm, then Data = window.obj
should work
Answered By - Tino D
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.