Learn R Programming

VGAM (version 0.9-6)

maxwell: Maxwell Distribution Family Function

Description

Estimating the parameter of the Maxwell distribution by maximum likelihood estimation.

Usage

maxwell(link = "loge", zero = NULL)

Arguments

link, zero
Parameter link function applied to $a$, which is called the parameter rate. See Links for more choices and information; a log link is the default because the parameter is positive. More i

Value

Details

The Maxwell distribution, which is used in the area of thermodynamics, has a probability density function that can be written $$f(y;a) = \sqrt{2/\pi} a^{3/2} y^2 \exp(-0.5 a y^2)$$ for $y>0$ and $a>0$. The mean of $Y$ is $\sqrt{8 / (a \pi)}$ (returned as the fitted values), and its variance is $(3\pi - 8)/(\pi a)$.

References

von Seggern, D. H. (1993) CRC Standard Curves and Surfaces, Boca Raton, FL.: CRC Press.

See Also

Maxwell, rayleigh, poisson.points.

Examples

Run this code
mdata <- data.frame(y = rmaxwell(1000, rate = exp(2)))
fit <- vglm(y ~ 1, maxwell, data = mdata, trace = TRUE, crit = "coef")
coef(fit, matrix = TRUE)
Coef(fit)

Run the code above in your browser using DataLab