[Monolix] Set conditional distribution sampling settings
Set the value of one or more of the conditional distribution sampling settings for the current project.
Associated settings are:
|
|
(0 < double < 1) |
Width of the relative interval for stopping criteria (i.e. 0.05 for 5%). |
|
|
(logical) |
Enable maximum number of iterations if stopping criteria not met. |
|
|
(integer >= 1) |
Number of iterations to use for evaluating stopping criteria. |
|
|
(integer >= 1) |
Maximum number of iterations if |
|
|
(integer >= 1) |
Number of samples from the conditional distribution to retain per individual for plots. |
Usage
R
setConditionalDistributionSamplingSettings(...)
Arguments
... A collection of comma-separated pairs (settingName = settingValue).
See also
getConditionalDistributionSamplingSettings
Examples
R
initializeLixoftConnectors("monolix")
loadProject(file.path(getDemoPath(), "1.creating_and_using_models", "1.1.libraries_of_models", "theophylline_project.mlxtran"))
setConditionalDistributionSamplingSettings(ratio = 0.1, nbSimulatedParameters = 20)
getConditionalDistributionSamplingSettings()
#> $enablemaxiterations
#> [1] FALSE
#>
#> $nbminiterations
#> [1] 50
#>
#> $nbmaxiterations
#> [1] 500
#>
#> $nbsimulatedparameters
#> [1] 20
#>
#> $ratio
#> [1] 0.1
#>