Add random effects to a model
Arguments
- ui
The model as a function
- eta
vector with the parameters to add random effects (sometimes referred to as inter-individual variability, IIV) on
- priorName
logical, if TRUE, the parameter name specified in `eta` will be used to add the eta value prior name is used instead of the left handed side of the equation.
- etaCombineType
the option for the how to combine the eta with the parameter name. Can be: "default", "snake", "camel", "dot", "blank"
Examples
library(rxode2)
#> rxode2 3.0.1.9000 using 2 threads (see ?getRxThreads)
#> no cache: create with `rxCreateCache()`
readModelDb("PK_1cmt") |> addEta("ka")
#>
#>
#>
#>
#> → Adding eta to lka instead of ka due to mu-referencing
#>
#>
#>
#>
#> ℹ parameter labels from comments are typically ignored in non-interactive mode
#> ℹ Need to run with the source intact to parse comments
#> ℹ promote `etaKa` to between subject variability with initial estimate 0.1
#> ℹ change initial estimate of `etaKa` to `0.1`
#> function ()
#> {
#> description <- "One compartment PK model with linear clearance"
#> ini({
#> lka <- 0.45
#> label("Absorption rate (Ka)")
#> lcl <- 1
#> label("Clearance (CL)")
#> lvc <- 3.45
#> label("Central volume of distribution (V)")
#> propSd <- c(0, 0.5)
#> label("Proportional residual error (fraction)")
#> etaKa ~ 0.1
#> })
#> model({
#> ka <- exp(lka + etaKa)
#> cl <- exp(lcl)
#> vc <- exp(lvc)
#> Cc <- linCmt()
#> Cc ~ prop(propSd)
#> })
#> }
#> <environment: 0x55584eb64d68>