PerformBootstrapFits {hivModelling} | R Documentation |
Performs multiple bootstrap fits
PerformBootstrapFits( context, data, mainResults, bsCount = 20, maxNoFit = 30, ctol = 1e-06, ftol = 1e-05, executionPlan = future::sequential, statusRefreshRate = 2, algorithm = "NLOPT_LN_BOBYQA", verbose = FALSE )
context |
List of parameters. Required. |
data |
Input data as data.table. Required. |
mainResults |
Main results. Required. |
bsCount |
Count of boostrap iterations. Default = |
maxNoFit |
Maximum number of optimization iterations. Optional. Default = 30. |
ctol |
Minium required deviance in consecutive lambda estimations. Optional. Default = 1e-6. |
ftol |
Minium required deviance in optimization calculations. Optional. Default = 1e-5. |
executionPlan |
Execution plan for the job planner (see package 'future'). Optional. Default = future::sequential. |
statusRefreshRate |
Number of seconds to next refresh of job status. Optional. Default = 2. |
algorithm |
Name of optimization algorithm from package |
verbose |
Logical indicating to print detailed info during fitting. Optional.
Default = |
list object containing context, data and model objects
## Not run: PerformBootstrapFits(bsCount, context, data, maxNoFit = 2, ctol = 1e-6, ftol = 1e-5, verbose) ## End(Not run)