EWMA to be Depreciated Reduces Avialable Functionality ...
github.com › pandas-dev › pandasNov 15, 2016 · data.groupby([data.index.hour]).apply(lambda x: pd.ewm(alpha=0.84).mean(x)) AttributeError: module 'pandas' has no attribute 'ewm' What I also tried first of all (before applying pd.ewma ) data.groupby([data.index.hour]).ewm(alpha=0.84).mean(x) AttributeError: Cannot access callable attribute 'ewm' of 'DataFrameGroupBy' objects, try using the ...