pmx_filter: filter data in a pmx controller

View source: R/pmx-filter.R

pmx_filterR Documentation

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
)

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

Value

Returns a pmx controller with a filtered data set.

Examples


## example of global filter
ctr <- theophylline()
ctr %>% pmx_filter(data_set = "prediction", ID == 5 & TIME < 2)
ctr %>% get_data("prediction")


ggPMXdevelopment/ggPMX documentation built on Dec. 11, 2023, 5:24 a.m.