Displaying 4 results from an estimated 4 matches for "theta_3".
Did you mean:
theta3
2004 Jul 04
1
Re: Seasonal ARMA model
...inking to note that a seasonal ARIMA model
> is just an ``ordinary'' ARIMA model with some coefficients
> constrained to be 0 in an efficient way. E.g. a seasonal AR(1) s =
> 4 model is the same as an ordinary (nonseasonal) AR(4) model with
> coefficients theta_1, theta_2, and theta_3 constrained to be 0. You
> can get the same answer as from a seasonal model by using the
> ``fixed'' argument to arima. E.g.:
set.seed(42)
x <- arima.sim(list(ar=c(0,0,0,0.5)),300)
f1 = arima(x,seasonal=list(order=c(1,0,0),period=4))
f2 = arima(x,order=c(4,0,0),fixed...
2009 Oct 13
0
How to specify an ARMA(1, [1,4]) model? Solved
On Tue, Oct 13, 2009 at 5:06 PM, Rolf Turner <r.turner@auckland.ac.nz>wrote:
>
> Not clear to me what the OP really wants. Perhaps the seasonal
> model is what's required; perhaps an arima(1,0,4) model with
> theta_2 and theta_3 constrained to be 0. The latter can be
> achieved with
>
> arima(x,order=c(1,0,4),fixed=c(NA,NA,0,0,NA,NA))
>
> Or perhaps it's something else entirely that's wanted ....
>
> cheers,
>
> Rolf Turner
> arima(p,order=c(1,0,4),f...
2004 Jul 01
2
[gently off topic] arima seasonal question
Hello R People:
When using the arima function with the seasonal option, are the seasonal
options only good for monthly and quarterly data, please?
Also, I believe that weekly and daily data are not appropriate for seasonal
parm estimation via arima.
Is that correct, please?
Thanks,
Sincerely,
Laura Holt
mailto: lauraholt_983 at hotmail.com
download!
2004 Jul 04
2
Random intercept model with time-dependent covariates, results different from SAS
Dear list-members
I am new to R and a statistics beginner. I really like the ease with which I can
extract and manipulate data in R, and would like to use it primarily. I've
been learning by checking analyses that have already been run in SAS.
In an experiment with Y being a response variable, and group a 2-level
between-subject factor, and time a 5-level within-subject factor. 2