Learn R Programming

quickpsy (version 0.1.5.1)

cum_normal_fun: Cumulative normal function

Description

Cumulative normal function.

Usage

cum_normal_fun(x, p)

Arguments

x

Vector of values of the explanatory variable.

p

Vector of parameters p = c(mean, standard_deviation).

Value

Probability at each x.

See Also

inv_cum_normal_fun

Examples

Run this code
# NOT RUN {
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