| MLE_LambertW {LambertW} | R Documentation |
Maximum Likelihood Estimation (MLE) for Lambert W \times F distributions computes \widehat{θ}_{MLE}.
For type = "s", the skewness parameter γ is estimated and
δ = 0 is held fixed; for type = "h" the one-dimensional
δ is estimated and γ = 0 is held fixed; and for
type = "hh" the 2-dimensional δ is estimated and
γ = 0 is held fixed.
By default α = 1 is fixed for any type. If you want to
also estimate α (for type = "h" or "hh")
set theta.fixed = list().
MLE_LambertW(
y,
distname,
type = c("h", "s", "hh"),
theta.fixed = list(alpha = 1),
use.mean.variance = TRUE,
theta.init = get_initial_theta(y, distname = distname, type = type, theta.fixed =
theta.fixed, use.mean.variance = use.mean.variance, method = "IGMM"),
hessian = TRUE,
return.estimate.only = FALSE,
optim.fct = c("optim", "nlm", "solnp"),
not.negative = FALSE
)
y |
a numeric vector of real values. |
distname |
character; name of input distribution; see
|
type |
type of Lambert W \times F distribution: skewed |
theta.fixed |
a list of fixed parameters in the optimization; default
only |
use.mean.variance |
logical; if |
theta.init |
a list containing the starting values of (α,
\boldsymbol β, γ, δ) for the numerical optimization;
default: see |
hessian |
indicator for returning the (numerically obtained) Hessian at
the optimum; default: |
return.estimate.only |
logical; if |
optim.fct |
character; which R optimization function should be
used. Either |
not.negative |
logical; if |
A list of class LambertW_fit:
data |
data |
loglik |
scalar; log-likelihood evaluated at the optimum \widehat{θ}_{MLE}, |
theta.init |
list; starting values for numerical optimization, |
beta |
estimated \boldsymbol β vector of the input distribution via Lambert W MLE (In general this is not exactly identical to \widehat{\boldsymbol β}_{MLE} for the input data), |
theta |
list; MLE for θ, |
type |
see Arguments, |
hessian |
Hessian matrix; used to calculate standard errors (only if |
call |
function call, |
distname |
see Arguments, |
message |
message from the optimization method. What kind of convergence?, |
method |
estimation method; here |
# See ?LambertW-package