Norm {estimators} | R Documentation |
Normal Distribution
Description
Normal Distribution
Usage
Norm(mean = 0, sd = 1)
## S4 method for signature 'Norm'
d(x)
## S4 method for signature 'Norm'
p(x)
## S4 method for signature 'Norm'
qn(x)
## S4 method for signature 'Norm'
r(x)
## S4 method for signature 'Norm'
mean(x)
## S4 method for signature 'Norm'
median(x)
## S4 method for signature 'Norm'
mode(x)
## S4 method for signature 'Norm'
var(x)
## S4 method for signature 'Norm'
sd(x)
## S4 method for signature 'Norm'
skew(x)
## S4 method for signature 'Norm'
kurt(x)
## S4 method for signature 'Norm'
entro(x)
## S4 method for signature 'Norm'
finf(x)
## S4 method for signature 'numeric,numeric,Norm'
ll(x, prm, distr)
## S4 method for signature 'numeric,Norm'
mle(x, distr)
## S4 method for signature 'numeric,Norm'
me(x, distr)
## S4 method for signature 'Norm'
avar_mle(distr)
## S4 method for signature 'Norm'
avar_me(distr)
Arguments
mean , sd |
numeric. The distribution parameters. |
x |
an object of class |
prm |
numeric. A vector including the distribution parameters. |
distr |
an object of class |
Value
The dpqr family of functions return the evaluated density, cumulative probability, quantile, and random sample, respectively. The moments family of functions return the appropriate theoretical moment, as calculated by the distribution true parameters. The ll function returns the evaluated log-likelihood, given a sample and the theoretical parameters. The estim family of functions return the estimated parameters of the distribution, given a sample. The avar family of functions return the asymptotic variance or variance - covariance matrix (if there are two or more parameters) of the corresponding estimation method. Calculus performed on Distribution objects returns a Distribution object of the appropriate class and with the appropriate parameters.