pnorm {stats} R Documentation

The Normal Distribution

Description


Density, distribution function, quantile function and random generation
for the normal distribution with mean equal to mean and standard deviation
equal to sd.

Usage

pnorm(q,
    mean = 0,
    sd = 1,
    lower.tail = TRUE,
    log.p = FALSE,
    resolution = 97);

Arguments

q

vector of quantiles.

mean

vector of means. [as double]

sd

vector of standard deviations. [as double]

lower.tail

logical; if TRUE (default), probabilities are P[X \le x]P[X≤x] otherwise, P[X > x]P[X>x]. [as boolean]

log.p

logical; if TRUE, probabilities p are given as log(p). [as boolean]

Details

For pnorm, based on Cody, W. D. (1993) Algorithm 715 SPECFUN – A portable FORTRAN package of special function routines And test drivers. ACM Transactions on Mathematical Software 19, 22–32.

Authors

sciBASIC.NET

Value

this function returns data object of type any kind.

clr value class

Examples


[Package stats version 5.0.1.2389 Index]