0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Rで正規分布グラフで標準化された平均と標準偏差をみる

Posted at
tags: rBasicLearning

グラフ化

赤い線が平均で、青い線が標準偏差をそれぞれ$x$の値として取った線です!

standard <- {
  curve(dnorm, -4, 4, type="l")
  segments(-1, 0, -1, dnorm(1), col = "blue", lwd = 2)
  segments(1, 0, 1, dnorm(1), col = "blue", lwd = 2)
  segments(0, 0, 0, dnorm(0), col = "red", lwd = 2)
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?