parkur {lmomco} | R Documentation |
Estimate the Parameters of the Kumaraswamy Distribution
Description
This function estimates the parameters of the Kumaraswamy 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 lmomkur
.
Usage
parkur(lmom, checklmom=TRUE, ...)
Arguments
lmom |
|
checklmom |
Should the |
... |
Other arguments to pass. |
Value
An R list
is returned.
type |
The type of distribution: |
para |
The parameters of the distribution. |
err |
The convergence error. |
convergence |
Logical showing whether error convergence occurred. |
source |
The source of the parameters: “parkur”. |
Author(s)
W.H. Asquith
References
Jones, M.C., 2009, Kumaraswamy's distribution—A beta-type distribution with some tractability advantages: Statistical Methodology, v. 6, pp. 70–81.
See Also
lmomkur
,
cdfkur
, pdfkur
, quakur
Examples
lmr <- lmoms(runif(20)^2)
parkur(lmr)
kurpar <- list(para=c(1,1), type="kur");
lmr <- lmomkur(kurpar)
parkur(lmr)
kurpar <- list(para=c(0.1,1), type="kur");
lmr <- lmomkur(kurpar)
parkur(lmr)
kurpar <- list(para=c(1,0.1), type="kur");
lmr <- lmomkur(kurpar)
parkur(lmr)
kurpar <- list(para=c(0.1,0.1), type="kur");
lmr <- lmomkur(kurpar)
parkur(lmr)