norminv {drcarlate} | R Documentation |
Inverse of the normal cumulative distribution function (cdf)
Description
Returns the inverse cdf for the normal distribution with mean MU and standard deviation SIGMA at P value Reference: https://rdrr.io/github/maxto/qapi/src/R/stats.R
Usage
norminv(p, mu = 0, sigma = 1)
Arguments
p |
probability value in range 0-1 |
mu |
mean value |
sigma |
standard deviation |
Value
numeric
Examples
xx <- c(0.003,0.026,0.015,-0.009,-0.014,-0.024,0.015,0.066,-0.014,0.039)
norminv(0.01,mean(xx),sd(xx))
[Package drcarlate version 1.2.0 Index]