View source: R/4_maximum_likelihood_estimation.R
ug_control | R Documentation |
Optimization parameters passed to optim
for the maximum likelihood estimation
in the unit gamma regression with parametric link functions. This function acts in the same
spirit as betareg.control
from the betareg
package. Its primary
purpose is to gather all the optimization control arguments in a single function.
ug_control(
method = "BFGS",
maxit = 10000,
start = NULL,
trace = FALSE,
hessian = FALSE,
...
)
method |
the method to be used. See "Details" in |
maxit |
the maximum number of iterations of the algorithm. Defaults to |
start |
An optional vector of initial values to start the algorithm
iterations. The input order should be |
trace |
non-negative integer. If positive, tracing information on the progress of the
optimization is produced. Higher values may produce more tracing information: for method
|
hessian |
logical; it specifies whether the asymptotic covariance matrix of the estimates
should be obtained based on the numerically differentiated Hessian provided by |
... |
further arguments passed to |
A list with the arguments specified.
Rodrigo M. R. de Medeiros <rodrigo.matheus@live.com>
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.