ggPMX (version 1.2.11)

pmx_filter: filter data in a pmx controller

Description

filter data in a pmx controller

Usage

pmx_filter(
  ctr,
  data_set = c("estimates", "predictions", "eta", "finegrid", "shrink", "input",
    "individual", "sim_blq"),
  pmx_exp
)

Value

Returns a pmx controller with a filtered data set.

Arguments

ctr

A controller. An object of 'pmxClass'

data_set

A data_set within the controller to apply a filter to.

pmx_exp

A filter expression

Examples

Run this code
# \donttest{
## example of global filter
ctr <- theophylline()
ctr %>% pmx_filter(data_set = "prediction", ID == 5 & TIME < 2)
ctr %>% get_data("prediction")
# }

Run the code above in your browser using DataLab