0

母平均の正規確率分布を取得するために、rnorm関数を使用して、標準偏差の代わりに標準誤差を与えるだけですか?

# probability distribution of a 
# population mean of 100 with SD of 10, n = 50.

# convert to standard error
se <- 10/(50^.5)

# The rnorm function accepts sd, so I just use the
# se in its place to get the desired distribution
meanDist <- rnorm(1000,mean=100,sd=se)
hist(meanDist)
4

1 に答える 1

0

はい。ただし、hist結果には、母集団の値の分布ではなく、平均の推定値の代表的なサンプリングが表示されます。

于 2013-03-09T22:41:03.250 に答える