[Monolix] Get standard error estimation settings
Get the standard error estimation settings for the current project.
Associated settings are:
|
|
(integer >= 1) |
Minimum number of iterations for stochastic approximation. |
|
|
(integer >= 1) |
Maximum number of iterations for stochastic approximation. |
|
|
(0 < double < 100) |
Confidence interval level (percent). |
Usage
R
getStandardErrorEstimationSettings(...)
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
setStandardErrorEstimationSettings
Examples
R
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 standard error estimation settings
getStandardErrorEstimationSettings()
#> $miniterations
#> [1] 50
#>
#> $maxiterations
#> [1] 200
#>
#> $intervallevel
#> [1] 95
#>
# retrieve only certain settings
getStandardErrorEstimationSettings("minIterations","maxIterations")
#> $miniterations
#> [1] 50
#>
#> $maxiterations
#> [1] 200
#>