I am working on a time series problem and want to decompose to get some basic info on lag. Goal is to evaluate lag of the output variable based on changes in the change variable as part of the example data.frame below. Full data.frame has more data but it is all by week and follows the same structure as this example.
year <- c(2010,2010,2010,2010)
week <- c("P7W1","P7W2","P7W3","P7W4")
output <- c(3295,4379,4284,4832)
change <- c(1912,2177,1587,2708)
timeTest <- data.frame(year,week,output,change)
I created a time series object with the following.
timeObject <- ts(timeTest, start=c(2010,7), frequency=52)
However, when I ran decompose(timeObject) I got an error message stating that I had no or less than 2 periods. I'm clearly missing something here, any advice is appreciated.
