dshw的图不会将预测数据放在序列的末尾

时间:2016-04-22 22:44:30

标签: r forecasting

我正在使用预测7.1。当我尝试绘制dshw时,它会将预测数据放在图表的开头而不是训练数据的末尾。Forecast dshw

任何人都知道如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

这是包的github网站上的一个错误now reported

这是一个简单示例的解决方法。

t <- seq(0,5,by=1/20)
x <- exp(sin(2*pi*t) + cos(2*pi*t*4) + rnorm(length(t),0,.1))
fc <- dshw(x,20,5)

tspx <- tsp(fc$x)
tspm <- tsp(fc$mean)
tsp(fc$mean)[1:2] <- tspm[1:2] - tspm[1] + tspx[2]+1/tspx[3]
plot(fc)