View source: R/cum_normal_fun.R
| cum_normal_fun | R Documentation |
Cumulative normal function.
cum_normal_fun(x, p)
x |
Vector of values of the explanatory variable. |
p |
Vector of parameters |
Probability at each x.
inv_cum_normal_fun
xseq <- seq(0,4,.01)
yseq <- cum_normal_fun(xseq, c(2, .5))
curve <- data.frame(x = xseq, y = yseq)
ggplot(curve, aes(x = x, y = y)) + geom_line()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.