View source: R/functions_wrapper.R
remove_loq_data | R Documentation |
Remove loq data records from the dataset
Does nothing if none of the limits are specified.
remove_loq_data(
model,
lloq = NULL,
uloq = NULL,
blq = NULL,
alq = NULL,
keep = 0
)
model |
(Model) Pharmpy model object |
lloq |
(numeric or str (optional)) Value or column name for lower limit of quantification. |
uloq |
(numeric or str (optional)) Value or column name for upper limit of quantification. |
blq |
(str (optional)) Column name for below limit of quantification indicator. |
alq |
(str (optional)) Column name for above limit of quantification indicator. |
keep |
(numeric) Number of loq records to keep for each run of consecutive loq records. |
(Model) Pharmpy model object
set_lloq_data
transform_blq
## Not run:
model <- load_example_model("pheno")
model <- remove_loq_data(model, lloq=10, uloq=40)
length(model$dataset)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.