MonolixSuite in R
Breadcrumbs

setStandardErrorEstimationSettings

[Monolix] Set standard error estimation settings

Set the value of one or more of the standard error estimation settings for the current project.
Associated settings are:

minIterations

(integer >= 1)

Minimum number of iterations for stochastic approximation.

maxIterations

(integer >= 1)

Maximum number of iterations for stochastic approximation.

intervalLevel

(0 < double < 100)

Confidence interval level (percent).

Usage

R
setStandardErrorEstimationSettings(...)

Arguments

... A collection of comma-separated pairs (settingName = settingValue).

See also

getStandardErrorEstimationSettings

Examples

R
initializeLixoftConnectors("monolix")
loadProject(file.path(getDemoPath(), "1.creating_and_using_models", "1.1.libraries_of_models", "theophylline_project.mlxtran"))

setStandardErrorEstimationSettings(minIterations = 20, maxIterations = 500, intervalLevel = 99)
getStandardErrorEstimationSettings()
#> $miniterations
#> [1] 20
#> 
#> $maxiterations
#> [1] 500
#> 
#> $intervallevel
#> [1] 99
#>