You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run pd.rolling_mean(df['Berri1'], n).dropna().plot(); and you get
/usr/local/lib/python2.7/dist-packages/ipykernel/__main__.py:6: FutureWarning: pd.rolling_mean is deprecated for Series and will be removed in a future version, replace with
Series.rolling(window=15,center=False).mean()
How can you do the replacement with Series.rolling(...).mean()?
The text was updated successfully, but these errors were encountered:
Run
pd.rolling_mean(df['Berri1'], n).dropna().plot();
and you getHow can you do the replacement with
Series.rolling(...).mean()
?The text was updated successfully, but these errors were encountered: