addDoseCycle | R Documentation |
Add Steady State or ADDL dosing cycle to model object.
addDoseCycle(
.Object,
type = "SteadyState",
name,
administration = "Bolus",
amount = NULL,
II = NULL,
rate = NULL,
duration = NULL,
isSecondDose = FALSE,
colName = NULL
)
.Object |
Model object |
type |
Specification of dose type. Options are |
name |
Dose point name. See |
administration |
Mechanism for administering dose. Options are |
amount |
Optional. Column mapping argument specifying corresponding "ADDL" column in input data, or numeric value specifiying dose amount. |
II |
Optional. Column mapping argument specifying corresponding "II" column in input data, or numeric value specifying delta time. |
rate |
Optional. Column mapping argument specifying corresponding "Rate" column in input data, or numeric specifying dose rate. |
duration |
Optional. Column mapping argument specifying corresponding "Duration" column in data, or numeric specifying duration value. |
isSecondDose |
Use second dose point on compartment |
colName |
Column name in input data corresponding to column mapping for "SteadyState" or "ADDL" as supplied in |
Modified NlmePmlModel
object
doseNames
model <- pkmodel(columnMap = FALSE) %>%
addDoseCycle(type = "SteadyState", name = "A1", amount = "Amount", II = "II")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.