parkur | R Documentation |
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
.
parkur(lmom, checklmom=TRUE, ...)
lmom |
An L-moment object created by |
checklmom |
Should the |
... |
Other arguments to pass. |
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”. |
W.H. Asquith
Jones, M.C., 2009, Kumaraswamy's distribution—A beta-type distribution with some tractability advantages: Statistical Methodology, v. 6, pp. 70–81.
lmomkur
,
cdfkur
, pdfkur
, quakur
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.