Display/Set initial estimates for fixed effects
initFixedEffects.Rd
Display/Set initial estimates for fixed effects
Usage
initFixedEffects(.Object)
# S4 method for class 'NlmePmlModel'
initFixedEffects(.Object)
initFixedEffects(.Object) <- value
# S4 method for class 'NlmePmlModel'
initFixedEffects(.Object) <- value
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)
#> tvV tvCl tvV2 tvCl2
#> "1" "1" "1" "1"
# May also use as a 'replacement function' to set the values
initFixedEffects(model) <- c(tvV = 15, tvCl = 5, tvV2 = 40, tvCl2 = 15)