nlControl | R Documentation |
A list of parameters for controlling the fitting process.
nlControl(tol_ll = 1e-05, tol_theta = 0.001, check_theta = FALSE,
step = NULL, beta = 0.5, gamma = 1.25, reset_step = FALSE,
maxit = 1000, smooth = FALSE, omicron = 0.001, verbose = FALSE)
tol_ll |
tolerance expressed as relative change of the objective function. |
tol_theta |
tolerance expressed as relative change of the estimates. |
check_theta |
logical flag. If |
step |
step size (default standard deviation of response). |
beta |
decreasing step factor for line search (0,1). |
gamma |
nondecreasing step factor for line search (>= 1). |
reset_step |
logical flag. If |
maxit |
maximum number of iterations. |
smooth |
logical flag. If |
omicron |
small constant for smoothing the loss function when using |
verbose |
logical flag. |
The optimization algorithm is along the lines of the gradient search algorithm (Bottai et al, 2015). If smooth = TRUE
, the classical non-differentiable loss function is replaced with a smooth version (Chen and Wei, 2005).
a list of control parameters.
Marco Geraci
Bottai M, Orsini N, Geraci M (2015). A Gradient Search Maximization Algorithm for the Asymmetric Laplace Likelihood, Journal of Statistical Computation and Simulation, 85(10), 1919-1925.
Chen C, Wei Y (2005). Computational issues for quantile regression. Sankhya: The Indian Journal of Statistics, 67(2), 399-417.
nlrq1
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.