標準化正規分布グラフでシグマの範囲を見る
シグマの範囲
standard_inSigma <- {
curve(dnorm, -4, 4, type="l")
xs <- seq(-1, 1, length=n)
ys <- dnorm(xs)
polygon( c(xs,rev(xs)), c(rep(0,n),rev(ys)), col="red")
}
シグマの外の範囲
standard_outSigma <- {
curve(dnorm, -4, 4, type="l")
xs <- seq(-4, -1, length=n)
ys <- dnorm(xs)
polygon( c(xs,rev(xs)), c(rep(0,n),rev(ys)), col="blue")
xs <- seq(1, 4, length=n)
ys <- dnorm(xs)
polygon( c(xs,rev(xs)), c(rep(0,n),rev(ys)), col="blue")
}
Author And Source
この問題について(標準化正規分布グラフでシグマの範囲を見る), 我々は、より多くの情報をここで見つけました https://qiita.com/Quantas/items/d15c0ce0b48deaa035d7著者帰属:元の著者の情報は、元の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 .