removeCovariate | R Documentation |
Remove one or more covariates from structural parameters in a model object.
removeCovariate(.Object, covariate = NULL, paramName = NULL)
.Object |
Model object |
covariate |
Covariates to remove from model. If |
paramName |
Structural parameters for which to remove covariate effect(s) from. If |
Modified NlmePmlModel
object
model <- pkmodel(
numCompartments = 2,
data = pkData,
ID = "Subject",
Time = "Act_Time",
A1 = "Amount",
CObs = "Conc"
)
# Add Gender covariate of type categorical
model <- addCovariate(model,
covariate = "Gender",
type = "Categorical",
effect = c("V2", "Cl2"),
levels = c(0, 1),
labels = c("Female", "Male")
)
# Add BodyWeight covariate of type continuous
model <- addCovariate(model,
covariate = "BodyWeight",
type = "Continuous",
direction = "Backward",
center = "Mean",
effect = c("V", "Cl")
)
# Remove all covariates from model
model <- removeCovariate(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.