search for: x1vard

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

Did you mean: x1var
2012 Jul 02
0
Specifying Transfer Function in Time series Intervention model
Hi Team, I am running ARIMAX with TSA package. my code is fit2 <- arimax(yseries, order = c(1,0,1),xtransf = data.frame(X1var),transfer=list(c(1,0))) my question is 1st Q.--> If I need to take difference of X1var then what should i do?. What i am doing like submitting R code as X1vard <- diff(X1var) and then i am including in the xtransf. Same time if i need to take difference of yseries yseriesd<-diff(yseries) here ARIMAX order = c(1,0,1) i have to keep. ARIMAX order = c(1,1,1) is giving error. Hope this is correct procedure. 2nd Q -->>In the transfer = list(c(1...