
Last chance! 50% off unlimited learning
Sale ends in
Density, distribution function, quantile function and random
generation for the paralogistic distribution with shape parameter a
and scale parameter scale
.
dparalogistic(x, scale = 1, shape1.a, log = FALSE)
pparalogistic(q, scale = 1, shape1.a, lower.tail = TRUE, log.p = FALSE)
qparalogistic(p, scale = 1, shape1.a, lower.tail = TRUE, log.p = FALSE)
rparalogistic(n, scale = 1, shape1.a)
vector of quantiles.
vector of probabilities.
number of observations. If length(n) > 1
, the length
is taken to be the number required.
shape parameter.
scale parameter.
Logical.
If log=TRUE
then the logarithm of the density is returned.
dparalogistic
gives the density,
pparalogistic
gives the distribution function,
qparalogistic
gives the quantile function, and
rparalogistic
generates random deviates.
See paralogistic
, which is the VGAM family function
for estimating the parameters by maximum likelihood estimation.
Kleiber, C. and Kotz, S. (2003) Statistical Size Distributions in Economics and Actuarial Sciences, Hoboken, NJ, USA: Wiley-Interscience.
# NOT RUN {
pdata <- data.frame(y = rparalogistic(n = 3000, scale = exp(1), exp(2)))
fit <- vglm(y ~ 1, paralogistic(lss = FALSE, ishape1.a = 4.1),
data = pdata, trace = TRUE)
coef(fit, matrix = TRUE)
Coef(fit)
# }
Run the code above in your browser using DataLab