getConditionalModeEstimationSettings
[Monolix] Get conditional mode estimation settings
Get the conditional mode (EBEs) estimation settings for the current project.
Associated settings are:
nbOptimizationIterationsMode | (integer >= 1) | Maximum number of iterations. |
optimizationToleranceMode | (double > 0) | Optimization tolerance. |
Usage
getConditionalModeEstimationSettings(...)
Arguments
- ...
[optional] (character) Name of the settings whose value should be returned. If no argument is provided, all the settings are returned.
Value
A list with each setting name mapped to its current value.
See also
Examples
initializeLixoftConnectors("monolix")
loadProject(file.path(getDemoPath(), "1.creating_and_using_models", "1.1.libraries_of_models", "theophylline_project.mlxtran"))
# retrieve a list of all the conditional mode estimation settings
getConditionalModeEstimationSettings()
#> $nboptimizationiterationsmode
#> [1] 200
#>
#> $optimizationtolerancemode
#> [1] 1e-06
#>
# retrieve only the one setting value
getConditionalModeEstimationSettings("nbOptimizationIterationsMode")
#> $nboptimizationiterationsmode
#> [1] 200
#>