residualError | R Documentation |
Use to change or update residual error model for model object
residualError(
.Object,
predName = "C",
errorType = NULL,
SD = NULL,
isFrozen = FALSE,
isBQL = FALSE,
staticLLOQ = NULL,
EObsBQL = NULL,
CObsBQL = NULL,
C1ObsBQL = NULL,
A0ObsBQL = NULL,
exponent = NULL
)
.Object |
Model object |
predName |
Name of the predicted variable as returned in |
errorType |
Options are |
SD |
Value for the standard deviation of the residual error variable. |
isFrozen |
Set to |
isBQL |
Set to |
staticLLOQ |
Optional LLOQ value if |
EObsBQL |
Column mapping argument that represents the input dataset column that contains the BQL flag for observation values corresponding to |
CObsBQL |
Column mapping argument that represents the input dataset column that contains the BQL flag for observation values corresponding to |
C1ObsBQL |
Column mapping argument that represents the input dataset column that contains the BQL flag for observation values corresponding to |
A0ObsBQL |
Column mapping argument that represents the input dataset column that contains the BQL flag for observation values corresponding to |
exponent |
Value of exponent. Only applicable to |
Modified NlmePmlModel
object
model <- pkindirectmodel(indirectType = "LimitedInhibition", isBuildup = FALSE,
data = pkpdData, ID = "ID", Time = "Time", A1 = "Dose", CObs = "CObs", EObs = "EObs")
residualEffectNames(model)
# Change error type to "Multiplicative" and value of SD to 0.1 for "E"
model <- residualError(model, predName = "E", errorType = "Multiplicative", SD = 0.1)
# Change error type to "Power", value of SD to 0.15, and set exponent = 2 for "C"
model <- residualError(model, predName = "C", errorType = "Power", SD = 0.15, exponent = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.