parkap {lmomco} | R Documentation |
Estimate the Parameters of the Kappa Distribution
Description
This function estimates the parameters of the Kappa 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 are seen under lmomkap
, but of relevance to this documentation, the upper bounds of L-kurtosis () and a function of L-skew (
) is given by
This bounds is equal to the Generalized Logistic distribution (parglo
) and failure occurs if this upper bounds is exceeded. However, the argument snap.tau4
, if set, will set equal to the upper bounds of
of the distribution to the relation above. This value of
should be close enough numerically The argument
nudge.tau4
is provided to offset downward just a little. This keeps the relation operator as “
” in the bounds above to match Hosking's tradition as his sources declare “
” as above the GLO. The nudge here hence is not zero, which is a little different compared to the conceptually similar snapping in
paraep4
.
Usage
parkap(lmom, checklmom=TRUE,
snap.tau4=FALSE, nudge.tau4=sqrt(.Machine$double.eps), ...)
Arguments
lmom |
|
checklmom |
Should the |
snap.tau4 |
A logical to “snap” the |
nudge.tau4 |
An offset to the snapping of |
... |
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: “parkap”. |
support |
The support (or range) of the fitted distribution. |
ifail |
A numeric failure code. |
ifailtext |
A text message for the failure code. |
Author(s)
W.H. Asquith
References
Hosking, J.R.M., 1994, The four-parameter kappa distribution: IBM Journal of Reserach and Development, v. 38, no. 3, pp. 251–258.
Hosking, J.R.M., and Wallis, J.R., 1997, Regional frequency analysis—An approach based on L-moments: Cambridge University Press.
See Also
lmomkap
,
cdfkap
, pdfkap
, quakap
Examples
lmr <- lmoms(rnorm(20))
parkap(lmr)
## Not run:
parkap(vec2lmom(c(0,1,.3,.8)), snap.tau4=TRUE) # Tau=0.8 is way above the GLO.
## End(Not run)