Time Series Analysis in Python
Rob Reider
Adjunct Professor, NYU-Courant Consultant, Quantopian
import numpy as np noise = np.random.normal(loc=0, scale=1, size=500)
plt.plot(noise)
plot_acf(noise, lags=50)