featureSelector module server logic
featureSelector(
input,
output,
session,
clarion,
multiple = TRUE,
contains = FALSE,
ranged = TRUE,
step = 100,
truncate = 30,
selection.default = "all"
)
Shiny's input object.
Shiny's output object.
Shiny's session object.
A clarion object. See Clarion
. (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 number of slider steps. (Fills vector sequentially if needed)(Supports reactive)
Truncate datatable entries at x characters (Default = 30).
Decide whether everything or nothing is selected on default (no filters applied). Either "all" or "none" (Default = "all").
Reactive containing names list: Selected data as reactive containing clarion object (object). Used filter to select data (filter).
Keep in mind that the order of features (columns in clarion$data) is the order in which multiple, contains, ranged and step are evaluated.