R 표준정규분포곡선 그리기

1 개요[ | ]

R standard normal distribution curve
R 표준정규분포곡선 그리기
x = seq(-4, 4, length=200)
y = dnorm(x, mean=0, sd=1)
plot(x, y, type="l", lwd=2)

2 같이 보기[ | ]

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