R编程中的qnorm()

时间:2016-02-09 20:26:32

标签: r

刚开始学习R,我很想知道如何在R中处理这个问题。

标准正态分布的得分是否会削减前25%的数据? (这是标准正态分布的25%分位数)

1 个答案:

答案 0 :(得分:1)

这是qnorm函数的vignette。例如:

# generate normal data
n <- 100
data <- rnorm(n,0,1)

# compute the score that cuts of the first 25% of the data
score <- qnorm(0.25, mean(data), sd(data))

# test it to be sure
length(data[data>=score])
[1] 75
length(data[data<score])
[1] 25