PLregcontrol | R Documentation |
Parameters that control fitting of power logit regression models using PLreg
.
PLreg.control( lambda = NULL, method = "BFGS", maxit = 2000, trace = FALSE, start = NULL, ... )
lambda |
numeric indicating the value of the skewness parameter lambda (if |
method |
character specifying the |
maxit, trace, ... |
arguments passed to |
start |
an optional vector with starting values for median and dispersion submodels (starting value for lambda must not be included). |
The PLreg.control
controls the fitting process of power logit models. Almost all the arguments
are passed on directly to optim
, which is used to estimate the parameters.
Starting values for median and dispersion submodels may be supplied via start
. If the
estimation process is to be performed with a fixed skewness parameter, a value must be specified
in lambda
. If lambda = 0
, a log-log regression model
will be estimated.
A list with components named as the arguments.
PLreg
data("PeruVotes") fitPL <- PLreg(votes ~ HDI | HDI, data = PeruVotes, family = "TF", zeta = 5, control = PLreg.control(lambda = 1)) summary(fitPL)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.