RepLOptim {MAINT.Data} | R Documentation |
Repeated Local Optimization
Description
‘RepLOptim’ Tries to minimize a function calling local optimizers several times from different random starting points.
Usage
RepLOptim(start, parsd, fr, gr=NULL, inphess=NULL, ..., method="nlminb",
lower=NULL, upper=NULL, rethess=FALSE, parmstder=FALSE, control=list())
Arguments
start |
Vector of starting points used in the first call of the local optimizer. |
parsd |
Vector of standard deviations for the parameter distribution generating starting points for the local optimizer. |
fr |
The function to be minimized. If method is neither “nlminb” or “L-BFGS-B”, fr should accept a lbound and an ubound arguments for the parameter bounds, and should enforce these bounds before calling the local optimization routine. |
gr |
A function to return the gradient for the “nlminb”, “BFGS”, “CG” and L-BFGS-B methods. If it is ‘NULL’, a finite-difference approximation will be used. For the “SANN” method it specifies a function to generate a new candidate point. If it is ‘NULL’ a default Gaussian Markov kernel is used. |
inphess |
A function to return the hessian for the “nlminb” method. Must return a square matrix of order ‘length(parmean)’ with the different hessian elements in its lower triangle. It is ignored if method component of the control list is not set to its “nlminb” default. |
... |
Further arguments to be passed to ‘fr’, ‘gr’ and ‘inphess’. |
method |
The method to be used. See ‘Details’. |
lower |
Vector of parameter lower bounds. Set to ‘-Inf’ (no bounds) by default. |
upper |
Vector of parameter upper bounds. Set to ‘Inf’ (no bounds) by default. |
rethess |
Boolean flag indicating whether a numerically evaluated hessian matrix at the optimum should be computed and returned. Not available for the “nlminb” method. |
parmstder |
Boolean flag indicating whether parameter assymptotic standard errors based on the inverse hessian approximation to the Fisher information matrix should be computed and returned. Only available if hessian is set to TRUE and if a local miminum with a positive-definite hessian was indeed found. This requirement may fail if ‘nrep’ and ‘niter’ (and maybe ‘neval’) are not large enough, and for non-trivial problems of moderate or high dimensionality may never be satisfied because of numerical difficulties. |
control |
A list of control parameters. See below for details. |
Details
‘RepLOptim’ Tries to minimize a function by calling local optimizers several times from different starting points. The starting point used in the first call the the local optimizer is the value of the argument ‘start’. Subsquent calls use starting points generated from uniform distributions of independent variates with means equal to the current best parameter values and standard deviations equal to the values of the argument ‘parsd’. If parameter bounds are specified and the uniform limits implied by ‘parsd’ violate those bounds, these limits are replaced by the corresponding bounds.
The choice of the local optimizer is made by value of the ‘method’ argument. This argument can be a function object implementing the optimizer or a string describing an available R method. In the latter case current alternatives are: “nlminb” (default) for the ‘nlminb’ port routine, “nlm” for the ‘nlm’ function and “Nelder-Mead”, “L-BFGS-B”, “CG”, “L-BFGS-B” and “SANN” for the corresponding methods of the ‘optim’ function.
Arguments for controling the behaviour of the local optimizer can be specified as components of control
list. This list can include any of the following components:
- maxrepet
Maximum time of repetions of the same minimum objective value, before RepLOptim is stoped and the current best solution is returned. By default set to 2.
- maxnoimprov
Maximum number of times the local optimizer is called without improvements in the minimum objective value, before RepLOptim is stopped and the current best solution is returned. By default set to 50.
- maxreplic
Maximum number of times the local optimizer is called and returns a valid solution before RepLOptim is stoped and the current best solution is returned. By default set to 250.
- allrep
Total maximum number of replications (including those leading to non-valid solutions) performed. By default equals ten times the value of maxreplic. Ignored when objbnd is set to ‘Inf’.
- maxiter
Maximum number of iterations performed in each call to the local optimizer. By default set to 500 except with the “SANN” mehtod, when by default is set to 1500.
- maxeval
Maximum number of function evaluations (nlminb method only) performed in each call to the nlminb optimizer. By defaults set to 1000.
- RLOtol
The relative convergence tolerance of the local optimizer. The local optimizer stops if it is unable to reduce the value by a factor of ‘RLOtol *(abs(val) + reltol)’ at a step. Ignored when method is set to “nlm”. By default set to the square root of the computer precision, i.e. to ‘sqrt(.Machine$double.eps)’.
- HesEgtol
Numerical tolerance used to ensure that the hessian is non-singular. If the last eigenvalue of the hessian is positive but the ratio between it and the first eigenvalue is below HesEgtol the hessian is considered to be semi-definite and the parameter assymptotic standard errors are not computed. By default set to the square root of the computer precision, i.e. to ‘sqrt(.Machine$double.eps)’.
- objbnd
Upper bound for the objective. Only solutions leading to objective values below objbnd are considered as valid.
Value
A list with the following components:
par |
The best result found for the parameter vector. |
val |
The best value (minimum) found for the function fr. |
vallist |
A vector with the best values found for each starting point. |
iterations |
Number the iterations performed by the local optimizer in the call that generated the best result. |
vallis |
A vector with the best values found for each starting point. |
counts |
number of times the function fr was evaluated in the call that generated the result returned. |
convergence |
Code with the convergence status returned by the local optimizer. |
message |
Message generated by the local optimizer. |
hessian |
Numerically evaluated hessian of fr at the result returned. Only returned when the parameter hessian is set to TRUE. |
hessegval |
Eigenvalues of the hessian matrix. Used to confirm if a local minimum was indeed found. Only returned when the parameter hessian is set to TRUE. |
stderrors |
Assymptotic standard deviations of the parameters based on the observed information matrix. Only returned when the parse parameter is set to true and the hessian is indeed positive definite. |
Author(s)
A. Pedro Duarte Silva