Rで正規分布グラフで標準化された平均と標準偏差をみる
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)
}
Author And Source
この問題について(Rで正規分布グラフで標準化された平均と標準偏差をみる), 我々は、より多くの情報をここで見つけました https://qiita.com/Quantas/items/551755776788439745e3著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .