pargov {lmomco} | R Documentation |
Estimate the Parameters of the Govindarajulu Distribution
Description
This function estimates the parameters of the Govindarajulu distribution given the L-moments of the data in an L-moment object such as that returned by lmoms
. The relations between distribution parameters and L-moments also are seen under lmomgov
. The is estimated as
and then
are estimated for unknown
as
and is estimated for known
as
The shape preservation for this distribution is an ad hoc decision. It could be that for given , that solutions could fall back to estimating
and
from
and
only. Such as solution would rely on
with
estimated as
but such a practice yields remarkable changes in shape for this distribution even if the provided precisely matches that from a previous parameter estimation for which the
was treated as unknown.
Usage
pargov(lmom, xi=NULL, checklmom=TRUE, ...)
Arguments
lmom |
|
xi |
An optional lower limit of the distribution. If not |
checklmom |
Should the |
... |
Other arguments to pass. |
Value
An R list
is returned.
type |
The type of distribution: |
para |
The parameters of the distribution. |
source |
The source of the parameters: “pargov”. |
Author(s)
W.H. Asquith
References
Gilchrist, W.G., 2000, Statistical modelling with quantile functions: Chapman and Hall/CRC, Boca Raton.
Nair, N.U., Sankaran, P.G., Balakrishnan, N., 2013, Quantile-based reliability analysis: Springer, New York.
Nair, N.U., Sankaran, P.G., and Vineshkumar, B., 2012, The Govindarajulu distribution—Some Properties and applications: Communications in Statistics, Theory and Methods, v. 41, no. 24, pp. 4391–4406.
See Also
lmomgov
,
cdfgov
, pdfgov
, quagov
Examples
lmr <- lmoms(rnorm(20))
pargov(lmr)
lmr <- vec2lmom(c(1391.8, 215.68, 0.01655, 0.09628))
pargov(lmr)$para # see below
# xi alpha beta
# 868.148125 1073.740595 2.100971
pargov(lmr, xi=868)$para # see below
# xi alpha beta
# 868.000000 1074.044324 2.100971
pargov(lmr, xi=100)$para # see below
# xi alpha beta
# 100.000000 2648.817215 2.100971