필터 지우기
필터 지우기

How to get standard errors from estimated arima?

조회 수: 5 (최근 30일)
s z
s z 2018년 1월 12일
답변: Raul Andres Lopez Romero 2018년 7월 10일
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
s z
s z 2018년 1월 12일
편집: s z 2018년 1월 13일
Found the solution! take sqrt of diagonal EstSE..

댓글을 달려면 로그인하십시오.

답변 (1개)

Raul Andres Lopez Romero
Raul Andres Lopez Romero 2018년 7월 10일
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)

카테고리

Help CenterFile Exchange에서 Conditional Mean Models에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by