This function evaluates output from multiple OR modules by combining with a logical and.
and(
input,
output,
session,
data,
show.elements = NULL,
element.grouping = NULL,
column.labels = NULL,
delimiter = NULL,
multiple = TRUE,
contains = FALSE,
ranged = FALSE,
step = 100,
reset = NULL
)
Shiny's input object.
Shiny's output object.
Shiny's session object.
The input data.frame for which selection should be provided. Evaluates an OR module for each column (Supports reactive).
A Vector of column names determining which OR modules are shown. Defaults to names(data). (Supports reactive)
Group features in boxes. (Data.table: first column = columnnames, second column = groupnames) (Supports reactive)
Additional labels for the columns, defaults to names(data)
.
A single character, or a vector indicating how column values are delimited. (Fills vector sequentially if needed)(Supports reactive)
Whether or not textual ORs should allow multiple selections. (Fills vector sequentially if needed)(Supports reactive)
Whether or not textual ORs are initialized as textInput checking entries for given string. (Fills vector sequentially if needed)(Supports reactive)
Whether or not numeric ORs are ranged. (Fills vector sequentially if needed)(Supports reactive)
Set numeric ORs slider steps. (Fills vector sequentially if needed)(Supports reactive)
Reactive which will cause a UI reset on change.
A reactive containing named list with a boolean vector of length nrow(data)
(bool), indicating whether an observation is selected or not and a vector of Strings showing the used filter (text).