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

3번째 줄: 3번째 줄:
* "Auto- And Cross- Covariance And -Correlation Function Estimation"
* "Auto- And Cross- Covariance And -Correlation Function Estimation"


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


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



2020년 5월 30일 (토) 21:29 판

1 개요

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

2 plot 없음

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

3 plot 있음

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

4 같이 보기

5 참고

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