rnorm {math} 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

rnorm(n,
    mean = 0,
    sd = 1);

Arguments

n

number of observations. If length(n) > 1, the length is taken to be the number required. [as integer]

mean

vector of means. [as double]

sd

vector of standard deviations. [as double]

Details

dnorm gives the density, pnorm gives the distribution function, qnorm gives the quantile function, and rnorm generates random deviates.

Authors

SMRUCC genomics Institute

Value

this function returns data object of type double.

clr value class

Examples


[Package math version 2.33.856.6961 Index]