Qnorm
qnorm is the quantile function of the normal distribution. For a given probability p between 0 and 1, qnorm(p, mu, sigma) returns the p-th percentile (the value x such that P(X ≤ x) = p) for a normal distribution with mean mu and standard deviation sigma. Equivalently, qnorm(p, mu, sigma) = mu + sigma · z_p, where z_p is the p-th quantile of the standard normal distribution.
In the standard normal case where mu equals 0 and sigma equals 1, qnorm(p, 0, 1) reduces
Properties and common values are straightforward. The function is monotone increasing in p, with qnorm(0.5, mu,
Uses include constructing confidence intervals, determining critical values for z-tests, and transforming standard normal quantiles to
Overall, qnorm provides a direct way to map probabilities to values in a normal distribution, serving as