inv_cum_normal_fun {quickpsy} | R Documentation |
Inverse cumulative normal function
Description
Inverse cumulative normal function
Usage
inv_cum_normal_fun(prob, p)
Arguments
prob |
Vector of probabilities. |
p |
Vector of parameters |
Value
x
at each probability.
#' @seealso cum_normal_fun
Examples
yseq <- seq(0, 1, .01)
xseq <- inv_cum_normal_fun(yseq, c(2, .5))
curve <- data.frame(x = xseq, y = yseq)
ggplot(curve, aes(x = x, y = y)) + geom_line()
[Package quickpsy version 0.1.5.1 Index]