Convert Probit Scale to Proportions
Convert values on the probit scale to their proportions on the 0 to 1 scale.
invprobit(quan)
quan
: A numeric vector of probit quantiles.A numeric vector of proportions the same length as quan
.
Simply calls pnorm(quan)
.
invprobit(c(-3, -1, 0, 1, 3))