Python 中的时间序列分析
Rob Reider
Adjunct Professor, NYU-Courant Consultant, Quantopian




df.index = pd.to_datetime(df.index)
df.plot()
df['2012']
df1.join(df2)
df = df.resample(rule='W').last()
df['col'].pct_change()
df['col'].diff()
pandas 相关系数方法 df['ABC'].corr(df['XYZ'])
pandas 自相关 df['ABC'].autocorr()
Python 中的时间序列分析