Borrar filtros
Borrar filtros

How to get standard errors from estimated arima?

5 visualizaciones (últimos 30 días)
s z
s z el 12 de En. de 2018
Respondida: Raul Andres Lopez Romero el 10 de Jul. de 2018
Hiya, When executing the following code the command window will display the estimated parameters + standard errors. The coefficients can be obtained from EstMdl but I cannot find a way to obtain the shown standard errors. Maye someone can help me out - Thanks in advance!
/Jack
Mdl= arima('ARLags',1,'SARLags',12);
[EstMdl,EstSE,logL,info] = estimate(Mdl,data)
  1 comentario
s z
s z el 12 de En. de 2018
Editada: s z el 13 de En. de 2018
Found the solution! take sqrt of diagonal EstSE..

Iniciar sesión para comentar.

Respuestas (1)

Raul Andres Lopez Romero
Raul Andres Lopez Romero el 10 de Jul. de 2018
For infer the residuals you need to use the 'infer' function over your ARIMA model try this:
residuals=infer(EstMdl,data)
If you want the 'standarized residuals' you need to do this:
stdresiduals=residuals./sqrt(EstMdl.Variance)

Categorías

Más información sobre Conditional Mean Models en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by