| fixef.rxUi | R Documentation |
Extract fixed effects from an rxode2 model (rxUi)
fixef.rxUi(object, ...)
fixef.function(object, ...)
object |
rxode2 ui model or a function that evaluates to one |
... |
other parameters (currently ignored) |
named numeric vector of the fixed-effect (theta) estimates
Matthew L. Fidler
one.compartment <- function() {
ini({
tka <- 0.45
tcl <- 1
tv <- 3.45
eta.ka ~ 0.6
})
model({
ka <- exp(tka + eta.ka)
cl <- exp(tcl)
v <- exp(tv)
d/dt(depot) <- -ka * depot
d/dt(center) <- ka * depot - cl / v * center
cp <- center / v
})
}
ui <- one.compartment()
nlme::fixef(ui)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.