Displaying 1 result from an estimated 1 matches for "gls002".
Did you mean:
gfs002
2007 May 07
0
Analyzing "Stacked" Time Series
...treating my ?stacked? time series (i.e., 6 series of length 10) as one
series of length 60. For example, these give questionable, if any, output.
arima1 <- arima(X, order = c(1, 0, 0))
fit.gls001 <- gls(X ~ YO + YD + ZO + ZD,
correlation = corARMA(p = 2), method = "ML")
fit.gls002 <- gls(X ~ YO + YD + ZO + ZD +
lag(YO) + lag(YD) + lag(ZO) + lag(ZD),
correlation = corARMA(p = 1), method = "ML")
ar001 <- ar.ols(cbin(X, YO, YD, ZO, ZD))
Here is my example:
xAB <- as.ts(round(rnorm(10, 0, 1), 2), start = c(1990, 1))
xAC <- as.ts(round(rnorm(10, 0, 1),...