如何在预测后保留xts时间序列数据的日期

时间:2017-06-10 23:06:54

标签: r ggplot2 time-series xts

请考虑这个小数据集:

library(xts)
library(ggplot2)
library(forecast)

data <- data.frame(idDate = c("12-12-2012", "13-12-2012", "14-12-2012", "16-12-2012", "19-12-2012"), score= c(110, 120, 130, 200, 180))
date <- as.Date(as.character(data$idDate), "%d-%m-%Y")
score <- as.numeric(data$score)

myxts <- xts(score, date)
autoplot(myxts)

到目前为止,x轴上的日期(索引)仍然保留,但是一旦我调用预测,沿x轴的日期就会转换为整数。见下文:

d.arima <- auto.arima(myxts)
d.forecast <- forecast(d.arima, level = c(95), h = 3)
d.forecast
autoplot(d.forecast)

问题: 如何保留myxts的索引? 有没有办法告诉forecastauto.arima保留myxts的日期(索引)?

1 个答案:

答案 0 :(得分:2)

问题是您在两个不同的时间系统中工作:xts是不规则的(使用没有必要周期的日期),而forecast / ts系统是常规的(使用均匀间隔的数字)序列)。我们通过创建可以映射到预测的未来日期序列来解决这个问题。

这是一个详细的解决方案。 forecastxts包用于重新创建预测。 timekit包用于创建将来的日期。 ggplot2包用于绘图。

问题的关键是创建未来日期。请注意,你所拥有的是不规则的间距。 tk_make_future_timeseries()使用与输入时间索引的周期匹配。如果这不正确,您可以根据需要分别使用skip_valuesinsert_values删除和插入日期。


library(forecast)
library(xts)
library(ggplot2)
library(timekit)

# Recreate xts data, d.arima and d.forecast
data <- data.frame(idDate = c("12-12-2012", "13-12-2012", "14-12-2012", "16-12-2012", 
                              "19-12-2012"), 
                   score= c(110, 120, 130, 200, 180))
date <- as.Date(as.character(data$idDate), "%d-%m-%Y")
score <- as.numeric(data$score)
myxts <- xts(score, date)
d.arima <- auto.arima(myxts)
d.forecast <- forecast(d.arima, level = c(95), h = 3)

# Extract index
idx <- tk_index(myxts)
idx
#> [1] "2012-12-12" "2012-12-13" "2012-12-14" "2012-12-16" "2012-12-19"

# Make future index
idx_future <- tk_make_future_timeseries(idx, n_future = 3)
idx_future
#> [1] "2012-12-20" "2012-12-22" "2012-12-23"

# Build xts object from forecast
myts_future <- cbind(y = d.forecast$mean, y.lo = d.forecast$lower, y.hi = d.forecast$upper)
myxts_future <- xts(myts_future, idx_future)
myxts_future
#>              y     y.lo     y.hi
#> 2012-12-20 148 70.33991 225.6601
#> 2012-12-22 148 70.33991 225.6601
#> 2012-12-23 148 70.33991 225.6601

# Format original xts object
myxts_reformatted <- cbind(y = myxts, y.lo = NA, y.hi = NA)
myxts_final <- rbind(myxts_reformatted, myxts_future)

# Plot forecast - Note ggplot uses data frames, tk_tbl() converts to df
tk_tbl(myxts_final) %>%
    ggplot(aes(x = index, y = y)) +
    geom_point() +
    geom_line() +
    geom_ribbon(aes(ymin = y.lo, ymax = y.hi), alpha = 0.2)