MonolixSuite in R
Breadcrumbs

setGeneralSettings

[Monolix] Set project general settings for chains

Set the value of one or more of the settings related to chains for Monolix algorithms for the current project.
Associated settings are:

autoChains

(logical)

Automatically adjust the number of chains to have at least a minimum number of subjects.

nbChains

(integer > 0)

Number of chains to be used if autoChains is set to FALSE.

minIndivForChains

(integer > 0)

Minimum number of individuals.

Usage

R
setGeneralSettings(...)

Arguments

... Comma-separated pairs (settingName = settingValue).

See also

getGeneralSettings

Examples

R
initializeLixoftConnectors("monolix")
loadProject(file.path(getDemoPath(), "1.creating_and_using_models", "1.1.libraries_of_models", "theophylline_project.mlxtran"))
setGeneralSettings(autoChains = FALSE, nbchains = 10)
getGeneralSettings()
#> $autochains
#> [1] FALSE
#> 
#> $nbchains
#> [1] 10
#> 
#> $minindivforchains
#> [1] 50
#>