powered by
cum_normal_fun(x, p)
p = c(mean, standard_deviation)
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()
Run the code above in your browser using DataLab