randomEffect | R Documentation |
Use to set or update the covariance matrix of random effects in a model object.
randomEffect(
.Object,
effect,
value = NULL,
isDiagonal = TRUE,
isFrozen = FALSE,
...
)
.Object |
Model object |
effect |
One or more names of available random effects. |
value |
Initial values for the diagonal elements of the covariance matrix of
random effects (if |
isDiagonal |
Set to |
isFrozen |
Set to |
... |
Additional arguments |
Modified NlmePmlModel
object
model <- pkmodel(
numCompartments = 2,
data = pkData,
ID = "Subject",
Time = "Act_Time",
A1 = "Amount",
CObs = "Conc",
modelName = "TwCpt_IVBolus_FOCE_ELS"
)
model <- model |>
randomEffect(effect = c("nV", "nCl", "nCl2"), value = rep(0.1, 3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.