[Monolix] Run convergence assessment
Run assessment. To change the initialization before a run, use getAssessmentSettings to receive all the settings. See example.
Usage
R
runAssessment(settings = NULL)
Arguments
settings (list) [optional] Settings to initialize the assessment algorithm. If not provided, current settings are used. See getAssessmentSettings.
See also
getAssessmentSettings to get the settings
getAssessmentResults to get the results of the run
Examples
R
if (FALSE) {
initializeLixoftConnectors("monolix")
project_file <- file.path(getDemoPath(), "1.creating_and_using_models", "1.1.libraries_of_models", "theophylline_project.mlxtran")
loadProject(project_file)
assesSettings <- getAssessmentSettings()
assesSettings$initialParameters$fixed <- rep(FALSE, 3)
assesSettings$initialParameters$min <- rep(0, 3)
assesSettings$initialParameters$max <- c(1.5, 1, 0.5)
runAssessment(settings = assesSettings)
res = getAssessmentResults()
}