nm_select_records | R Documentation |
Retrieves a subset of a NONMEM-ish data set based on a list containing filtering information.
nm_select_records(cfg, values, filter)
cfg |
ubiquity system object |
values |
dataframe containing the dataset with column headers |
filter |
list with element names as headers for |
If the dataset has the headings ID
, DOSE
and SEX
and
filter
has the following format:
filter = list() filter$ID = c(1:4) filter$DOSE = c(5,10) filter$SEX = c(1)
It would be translated into the boolean filter:
((ID==1) | (ID==2) | (ID==3) | (ID==4)) & ((DOSE == 5) | (DOSE==10)) & (SEX == 1)
subset of dataset
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.