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

(새 문서: ==개요== ;R arima() * ARIMA 모델링 ==같이 보기== * ARIMA * R ar() * R tsdiag() * R arima0() * R arima.sim() * R predict.Arima() ==참고== * https:/...)
 
2번째 줄: 2번째 줄:
;R arima()
;R arima()
* ARIMA 모델링
* ARIMA 모델링
<source 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
</source>


==같이 보기==
==같이 보기==

2019년 5월 10일 (금) 02:01 판

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 }}