【发布时间】:2020-05-20 05:45:36
【问题描述】:
在python中,可以绘制百分比变化、累积和、标准偏差,使用以下代码sn-p:
df=quandl.get('EURONEXT/XYZ.4')
df_changes = df.pct_change(periods=1)
df_cumsum = df_changes.cumsum()
df_filled = df.asfreq('D', method='ffill')
df_returns = df_filled.pct_change()
df_std = df_returns.window=30,minperiod=30).std()
df_changes.plot()
df_cumsum.plot()
df_std.plot()
请指导我在 Julia 中做同样的事情。
【问题讨论】: