search for: tsbaseu000

Displaying 1 result from an estimated 1 matches for "tsbaseu000".

Did you mean: baseu000
2008 Jan 17
0
Proper Usage of the XREG in ARIMA
...week or so) how to pull out part of an array. Also should I do my disection prior to or after concerting it into a ts object? the short of the script is (removing plots etc..): ---------- baseU000 <- read.csv("testfile.csv",header=T) #--- hmm what happens in years with a 53rd week... tsbaseU000 <- ts(baseU000,start=2004,frequency=52) #--- add regressors arimafit <- auto.arima(tsU000[,2],approximation=T,stepwise=N) forecastU000 <- forecast(arimafit,52) plot(forecastU000) lines(fitted(arimafit),col=3,lty="dashed") ---------- What I am just trying to do is build the bes...