Convert Proportions to the Probit Scale
Convert proportions to the probit scale.
probit(prob)
prob
: A numeric vector of proportions.A numeric vector the same length as prob
with quantiles on the probit scale.
Simply calls qnorm(prob)
.
probit(c(0.001, 0.01, 0.1, 0.5, 0.9, 0.99, 0.999))