initFixedEffects {Certara.RsNLME} | R Documentation |
Display/Set initial estimates for fixed effects
Description
Display/Set initial estimates for fixed effects
Usage
initFixedEffects(.Object)
## S4 method for signature 'NlmePmlModel'
initFixedEffects(.Object)
initFixedEffects(.Object) <- value
## S4 replacement method for signature 'NlmePmlModel'
initFixedEffects(.Object) <- value
Arguments
.Object |
PK/PD model |
value |
Named numeric vector |
Value
Named numeric vector of fixed effects estimates
See Also
Examples
model <- pkmodel(
numCompartments = 2,
data = pkData,
ID = "Subject",
Time = "Act_Time",
A1 = "Amount",
CObs = "Conc",
modelName = "TwCpt_IVBolus_FOCE_ELS"
)
# View initial/current fixed effect values
initFixedEffects(model)
# May also use as a 'replacement function' to set the values
initFixedEffects(model) <- c(tvV = 15, tvCl = 5, tvV2 = 40, tvCl2 = 15)
[Package Certara.RsNLME version 3.0.1 Index]