python moving average time series code example
Example: moving averages python
df['data'].rolling(3).mean()
df['data'].shift(periods=1).rolling(3).mean()
df['data'].rolling(3).mean()
df['data'].shift(periods=1).rolling(3).mean()