dpareto.ll | R Documentation |
Performs maximum likelihood estimation for the parameter of the discrete Pareto distribution.
dpareto.ll(x, theta = NULL, ...)
x |
A vector of raw data which is distributed according to a Poisson-Lindley distribution. |
theta |
Optional starting value for the parameter. If |
... |
Additional arguments passed to the |
The discrete Pareto distribution is a discretized of the continuous Type II Pareto distribution (also called the Lomax distribution).
See the help file for mle
to see how the output is structured.
Krishna, H. and Pundir, P. S. (2009), Discrete Burr and Discrete Pareto Distributions, Statistical Methodology, 6, 177–188.
Young, D. S., Naghizadeh Qomi, M., and Kiapour, A. (2019), Approximate Discrete Pareto Tolerance Limits for Characterizing Extremes in Count Data, Statistica Neerlandica, 73, 4–21.
mle
, DiscretePareto
## Maximum likelihood estimation for randomly generated data
## from the discrete Pareto distribution.
set.seed(100)
dp.data <- rdpareto(n = 500, theta = 0.2)
out.dp <- dpareto.ll(dp.data)
stats4::coef(out.dp)
stats4::vcov(out.dp)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.