Skip to main content
Skip table of contents

setStandardErrorEstimationSettings

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).

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
#> 

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.