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

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
2번째 줄: 2번째 줄:
;R density()
;R density()


<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
x <- density(rnorm(10))
x <- density(rnorm(10))
x
x
</source>
</syntaxhighlight>
<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
plot(x)
plot(x)
</source>
</syntaxhighlight>


<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
x <- density(rnorm(1000))
x <- density(rnorm(1000))
x
x
</source>
</syntaxhighlight>
<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
plot(x)
plot(x)
</source>
</syntaxhighlight>


<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
x <- density(rnorm(1000000))
x <- density(rnorm(1000000))
x
x
</source>
</syntaxhighlight>
<source lang='r' notebook>
<syntaxhighlight lang='r' notebook>
plot(x)
plot(x)
</source>
</syntaxhighlight>


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

2021년 4월 13일 (화) 23:45 기준 최신판

1 개요[ | ]

R density()
x <- density(rnorm(10))
x
plot(x)
x <- density(rnorm(1000))
x
plot(x)
x <- density(rnorm(1000000))
x
plot(x)

2 같이 보기[ | ]

3 참고[ | ]

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