Function to search data for selection
searchData(
input,
choices,
options = c("=", "<", "="">"),
min. = min(choices, na.rm = TRUE),
max. = max(choices, na.rm = TRUE)
)",>
Vector length one (single) or two (ranged) containing numeric values for selection.
Vector on which input values are applied.
Vector on how the input and choices should be compared. It can contain: single = c("=", "<", ">") or ranged = c("inner", "outer").
Minimum value that can be selected on slider (defaults to min(choices)).
Maximum value that can be selected on slider (defaults to max(choices)).
Returns a logical vector with the length of choices, where every matched position is TRUE.