Performs a coverage check analysis by generating data from a model, fitting it multiple times with different fit arguments, and plotting the results.
ctModelCoverage_check(
initialData,
fitting_model,
niter,
fit_args,
cores = 10,
plot_every = max(c(10, cores))
)A list containing the results data.table and final plots
An initial dataset to fit to determine 'true' parameters for further generation.
A ctModel object used for fitting the data
Number of iterations to run
Named list of fit argument sets to test (e.g., list(boot = list(optimcontrol = list(bootstrapUncertainty = TRUE)), hess = list(optimcontrol = list(bootstrapUncertainty = FALSE))))
Number of cores to use for parallel processing
Print plots every n iterations (default = 10)