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

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
3번째 줄: 3번째 줄:
* "Density for the NORMal distribution {{해석|정규분포밀도}}"
* "Density for the NORMal distribution {{해석|정규분포밀도}}"


<source lang='r'>
<syntaxhighlight lang='r'>
dnorm(0, mean=0, sd=1)
dnorm(0, mean=0, sd=1)
## [1] 0.3989423
## [1] 0.3989423
11번째 줄: 11번째 줄:
## [1] 0.2419707
## [1] 0.2419707
plot(function(x) dnorm(x), -3, 3, main="Normal Density")
plot(function(x) dnorm(x), -3, 3, main="Normal Density")
</source>
</syntaxhighlight>
[[File:Rplot-dnorm.png]]
[[File:Rplot-dnorm.png]]



2020년 12월 28일 (월) 21:00 판

1 개요

R dnorm()
  • "Density for the NORMal distribution → 정규분포밀도"
dnorm(0, mean=0, sd=1)
## [1] 0.3989423
dnorm(0)
## [1] 0.3989423
dnorm(1)
## [1] 0.2419707
plot(function(x) dnorm(x), -3, 3, main="Normal Density")

Rplot-dnorm.png

2 같이 보기

3 참고

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