Learn R Programming

pharmr (version 1.4.0)

remove_loq_data: remove_loq_data

Description

Remove loq data records from the dataset

Does nothing if none of the limits are specified.

Usage

remove_loq_data(
  model,
  lloq = NULL,
  uloq = NULL,
  blq = NULL,
  alq = NULL,
  keep = 0
)

Value

(Model) Pharmpy model object

Arguments

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.

See Also

set_lloq_data

transform_blq

Examples

Run this code
if (FALSE) {
model <- load_example_model("pheno")
model <- remove_loq_data(model, lloq=10, uloq=40)
length(model$dataset)
}

Run the code above in your browser using DataLab