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

잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
(다른 사용자 한 명의 중간 판 2개는 보이지 않습니다)
3번째 줄: 3번째 줄:
* "Auto- And Cross- Covariance And -Correlation Function Estimation"
* "Auto- And Cross- Covariance And -Correlation Function Estimation"


==plot 없음==
==plot=F==
<source lang='r' run>
<syntaxhighlight lang='r' run>
acf(lh, plot=F)
acf(lh, plot=F)
</source>
</syntaxhighlight>
<source lang='r' run>
<syntaxhighlight lang='r' run>
acf(lh, type = "covariance", plot=F)
acf(lh, type = "covariance", plot=F)
</source>
</syntaxhighlight>


==plot 있음==
==plot=T==
<source lang='r' run>
<syntaxhighlight lang='r' run>
acf(lh)
acf(lh)
</source>
</syntaxhighlight>
<source lang='r' run>
<syntaxhighlight lang='r' run>
acf(lh, type = "covariance")
acf(lh, type = "covariance")
</source>
</syntaxhighlight>


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

2020년 12월 18일 (금) 00:15 기준 최신판

1 개요[ | ]

R acf()
  • "Auto- And Cross- Covariance And -Correlation Function Estimation"

2 plot=F[ | ]

acf(lh, plot=F)
acf(lh, type = "covariance", plot=F)

3 plot=T[ | ]

acf(lh)
acf(lh, type = "covariance")

4 같이 보기[ | ]

5 참고[ | ]

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