featureSelector {wilson} | R Documentation |
featureSelector module server logic
Description
featureSelector module server logic
Usage
featureSelector(
input,
output,
session,
clarion,
multiple = TRUE,
contains = FALSE,
ranged = TRUE,
step = 100,
truncate = 30,
selection.default = "all"
)
Arguments
input |
Shiny's input object. |
output |
Shiny's output object. |
session |
Shiny's session object. |
clarion |
A clarion object. See |
multiple |
Whether or not textual ORs should allow multiple selections. (Fills vector sequentially if needed)(Supports reactive) |
contains |
Whether or not textual ORs are initialized as textInput checking entries for given string. (Fills vector sequentially if needed)(Supports reactive) |
ranged |
Whether or not numeric ORs are ranged. (Fills vector sequentially if needed)(Supports reactive) |
step |
Set numeric ORs number of slider steps. (Fills vector sequentially if needed)(Supports reactive) |
truncate |
Truncate datatable entries at x characters (Default = 30). |
selection.default |
Decide whether everything or nothing is selected on default (no filters applied). Either "all" or "none" (Default = "all"). |
Details
Keep in mind that the order of features (columns in clarion$data) is the order in which multiple, contains, ranged and step are evaluated.
Value
Reactive containing names list: Selected data as reactive containing clarion object (object). Used filter to select data (filter).