Time Series Analysis in Python
Rob Reider
Adjunct Professor, NYU-Courant Consultant, Quantopian



plot.plot(SPY)

plot.plot(SPY.diff())

plot.plot(HRB)

plot.plot(HRB.diff(4))

plt.plot(AMZN)

# Log of AMZN Revenues
plt.plot(np.log(AMZN))

# Log, then seasonal difference
plt.plot(np.log(AMZN).diff(4))

Time Series Analysis in Python