% Generated by roxygen2: do not edit by hand % Please edit documentation in R/prob_calc.R \name{prob_norm} \alias{prob_norm} \title{Probability calculator for the normal distribution} \usage{ prob_norm(mean, stdev, lb = NA, ub = NA, plb = NA, pub = NA, dec = 3) } \arguments{ \item{mean}{Mean} \item{stdev}{Standard deviation} \item{lb}{Lower bound (default is -Inf)} \item{ub}{Upper bound (default is Inf)} \item{plb}{Lower probability bound} \item{pub}{Upper probability bound} \item{dec}{Number of decimals to show} } \description{ Probability calculator for the normal distribution } \details{ See \url{https://radiant-rstats.github.io/docs/basics/prob_calc.html} for an example in Radiant } \examples{ prob_norm(mean = 0, stdev = 1, ub = 0) } \seealso{ \code{\link{summary.prob_norm}} to summarize results \code{\link{plot.prob_norm}} to plot results }