Paralogistic {VGAM}R Documentation

The Paralogistic Distribution

Description

Density, distribution function, quantile function and random generation for the paralogistic distribution with shape parameter a and scale parameter scale.

Usage

dparalogistic(x, a, scale)
pparalogistic(q, a, scale)
qparalogistic(p, a, scale)
rparalogistic(n, a, scale)

Arguments

x, q vector of quantiles.
p vector of probabilities.
n number of observations. If length(n) > 1, the length is taken to be the number required.
a shape parameter.
scale scale parameter.

Details

See paralogistic, which is the VGAM family function for estimating the parameters by maximum likelihood estimation.

Value

dparalogistic gives the density, pparalogistic gives the distribution function, qparalogistic gives the quantile function, and rparalogistic generates random deviates.

Note

The paralogistic distribution is a special case of the 4-parameter generalized beta II distribution.

Author(s)

T. W. Yee

References

Kleiber, C. and Kotz, S. (2003) Statistical Size Distributions in Economics and Actuarial Sciences, Hoboken, NJ: Wiley-Interscience.

See Also

paralogistic, genbetaII.

Examples

y = rparalogistic(n=3000, 4, 6)
fit = vglm(y ~ 1, paralogistic(init.a=2.1), trace=TRUE, crit="c")
coef(fit, mat=TRUE)
Coef(fit)

[Package VGAM version 0.7-7 Index]