PerformBootstrapFits {hivModelling} | R Documentation |
Performs multiple bootstrap fits
PerformBootstrapFits( bsCount = 20, context, data, mainResults, maxNoFit = 30, ctol = 1e-06, ftol = 1e-05, executionPlan = future::sequential, statusRefreshRate = 2, ... )
bsCount |
Count of boostrap iterations. Default = |
context |
List of parameters. Required. |
data |
Input data as data.table. Required. |
mainResults |
Main results |
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. |
... |
Additional arguments passed to |
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)