I am using the forecast package in R for some basic time series forecasting across a dozen business metrics.
I typically set quarterly goals based on data over the last several years.
During the course of the quarter I get actual data and re-forecast to see if there has been a significant shift that would make me revise the expected goals. I only want to revise the goals if the mean values are statistically different or if the trend has shifted meaningful - something like a control chart.
Ideally I want to do this automatically in the script that I'm running.
For example lets say I have monthly data for last year and I forecast out a year
library(forecast)
StartingData <- (1:12)+rnorm(1:12)
forecast(ts(StartingData,start=c(2011,1), frequency =12),h=12)
Then I get the next three months data, which happens to be '10' instead of continuing the linear trend.
StartingData[13:15] <- 10
forecast(ts(StartingData,start=c(2011,1), frequency =12),h=12)
What I'd like to do is access the forecast data to make this comparison by the time value listed in the output to compare my new forecast to my old forecast. However I can't find an object associated with the row's time value.
Is there a way to access those time values to help me match the old forecast with the new forecast? Or do I need to write code to figure out how much more data I have in my new data set than my old data set?
Thanks-