Displaying 2 results from an estimated 2 matches for "yseri".
Did you mean:
yeri
2009 Feb 16
2
Whitening Time Series
Hi R users,
I am doing cross correlation analysis on 2 time series (call them y-series
and x-series) where I need the use the model developed on the x-series to
prewhiten the yseries.. Can someone point me to a function/filter in R that
would allow me to do that?
Thanks in advance for any help!
--
View this message in context: http://www.nabble.com/Whitening-Time-Series-tp22041765p22041765.html
Sent from the R help mailing list archive at Nabble.com.
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...