DatasetFilter.Rd
Create object for data set filter
DatasetFilter( dataset_name, variable = NULL, filterType = c("categorical", "date", "numeric"), catValues = NULL, minVal = NULL, maxVal = NULL, includeMissing = FALSE, onlyMissing = FALSE )
dataset_name | data set name to filter on |
---|---|
variable | name of variable from `dataset_name` that we are filtering on |
filterType | One of "categorical", "date", or "numeric" |
catValues | If categorical is selected for |
minVal | the minimum value to match if |
maxVal | the maximum value to match if |
includeMissing | Boolean. Should we include missing values? Defaults to |
onlyMissing | Boolean. Should we only include subjects with missing values from |