powered by
Inverse cumulative normal function
inv_cum_normal_fun(prob, p)
Vector of probabilities.
Vector of parameters p = c(mean, standard_deviation).
p = c(mean, standard_deviation)
x at each probability. #' @seealso cum_normal_fun
x
cum_normal_fun
# NOT RUN { 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() # }
Run the code above in your browser using DataLab