"R arima()"의 두 판 사이의 차이

(새 문서: ==개요== ;R arima() * ARIMA 모델링 ==같이 보기== * ARIMA * R ar() * R tsdiag() * R arima0() * R arima.sim() * R predict.Arima() ==참고== * https:/...)
 
잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(다른 사용자 한 명의 중간 판 2개는 보이지 않습니다)
2번째 줄: 2번째 줄:
;R arima()
;R arima()
* ARIMA 모델링
* ARIMA 모델링
<syntaxhighlight lang='r'>
arima(lh, c(1,0,1), n.cond=3)
## Call:
## arima(x = lh, order = c(1, 0, 1), n.cond = 3)
##
## Coefficients:
##          ar1    ma1  intercept
##      0.4522  0.1982    2.4101
## s.e.  0.1769  0.1705    0.1358
##
## sigma^2 estimated as 0.1923:  log likelihood = -28.76,  aic = 65.52
</syntaxhighlight>


==같이 보기==
==같이 보기==
15번째 줄: 28번째 줄:


[[분류: R stats]]
[[분류: R stats]]
[[분류: ARIMA]]

2020년 12월 19일 (토) 16:45 기준 최신판

1 개요[ | ]

R arima()
  • ARIMA 모델링
arima(lh, c(1,0,1), n.cond=3)
## Call:
## arima(x = lh, order = c(1, 0, 1), n.cond = 3)
## 
## Coefficients:
##          ar1     ma1  intercept
##       0.4522  0.1982     2.4101
## s.e.  0.1769  0.1705     0.1358
## 
## sigma^2 estimated as 0.1923:  log likelihood = -28.76,  aic = 65.52

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}