PerformBootstrapFit {hivModelling} | R Documentation |
Perform bootstrap fit
PerformBootstrapFit( runId, context, data, mainResults, maxNoFit = 30, ctol = 1e-06, ftol = 1e-05, algorithm = "NLOPT_LN_BOBYQA", verbose = FALSE )
runId |
Bootstrap run index. Must be greater than 0, which is reserved for the main fit. |
context |
List of parameters. Required. |
data |
Input data as data.table. Required. |
mainResults |
Main results |
maxNoFit |
Maximum number of amoeba iterations. Optional. Default = 30. |
ctol |
Minium required deviance in consecutive lambda estimations. Optional. Default = 1e-6. |
ftol |
Minium required deviance in amoeba calculations. Optional. Default = 1e-5. |
algorithm |
Name of optimization algorithm from package |
verbose |
Logical indicating to print detailed info during fitting. Optional.
Default = |
Results list object
## Not run: PerformBootstrapFit(context, data, maxNoFit = 2, ctol = 1e-6, ftol = 1e-5, verbose = FALSE) ## End(Not run)