setMCMCSettings
[Monolix] Set settings for transition kernels of the MCMC algorithm
Set the value of one or more of the MCMC algorithm settings related to transition kernels of the current project.
Associated settings are:
strategy | (vector of length 3) | Number of calls for each of the three MCMC kernels. |
acceptanceRatio | (double) | Target acceptance ratio. |
Usage
setMCMCSettings(...)
Arguments
- ...
A collection of comma-separated pairs (settingName = settingValue)
See also
Examples
initializeLixoftConnectors("monolix")
loadProject(file.path(getDemoPath(), "1.creating_and_using_models", "1.1.libraries_of_models", "theophylline_project.mlxtran"))
setMCMCSettings(strategy = c(2,1,2))
getMCMCSettings()
#> $acceptanceratio
#> [1] 0.3
#>
#> $strategy
#> [1] 2 1 2
#>