【问题标题】:How to plot percentage changes, cumulative sums, standard deviations in Julia?如何在 Julia 中绘制百分比变化、累积和、标准差?
【发布时间】: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 中做同样的事情。

【问题讨论】:

    标签: plot julia


    【解决方案1】:
    猜你喜欢
    • 1970-01-01
    • 2013-06-10
    • 2021-10-15
    • 2017-03-03
    • 2018-09-08
    • 1970-01-01
    • 1970-01-01
    • 2023-03-18
    • 1970-01-01
    相关资源
    最近更新 更多