View source: R/NlmeCovariateParameter.r
addCovariate | R Documentation |
Add a continuous, categorical, or occasion covariate to model object and set covariate effect on structural parameters.
addCovariate(
.Object,
covariate,
effect = NULL,
type = c("Continuous", "Categorical", "Occasion"),
direction = c("Forward", "Interpolate", "Backward"),
option = c("Yes", "PlusOne", "No"),
center = NULL,
centerValue = NULL,
levels = NULL,
labels = NULL,
isDiagonal = TRUE,
values = NULL,
isPositive = TRUE
)
.Object |
Model object |
covariate |
Name of covariate. If the involved model has columns
mapped (i.e. model with |
effect |
Name of structural parameter(s) on which the covariate
has an effect. Specify |
type |
Type of covariate. Options are |
direction |
Direction of missing values propagation (if no covariate
value is given). Options are |
option |
Options are |
center |
Centering method. Options are |
centerValue |
Value used to center covariate. Only applicable if
argument |
levels |
Unique values of categorical or occasion covariate. Only
applicable to covariate |
labels |
Label names (in the same order as levels) for unique levels of
categorical or occasion covariate in data. Only applicable to covariate
|
isDiagonal |
Set to |
values |
Initial values for the diagonal elements of the inter-occasion
covariance matrix (if |
isPositive |
Set to |
The following relationships are applicable for covariates:
direction = "Forward"
is equivalent to PML code 'fcovariate(CovName)';
direction = "Backward"
is equivalent to PML code 'covariate(CovName)';
direction = "Interpolate"
is equivalent to PML code 'interpolate(CovName)'.
If the structural parameter has style = "LogNormal"
, the options are
reflected in PML code as follows:
option = "Yes"
is equivalent to
stparm(V = tvV * wt^dVdwt * exp(dVdsex1*(sex==1)) * exp(nV))
;
option = "PlusOne
is equivalent to
stparm(V = tvV * (1+wt*dVdwt) * (1+dVdsex1*(sex==1)) * exp(nV))
.
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")
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.