featureSelector: featureSelector module server logic

Description Usage Arguments Details Value

View source: R/featureSelector.R

Description

featureSelector module server logic

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
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 Clarion. (Supports reactive)

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).


wilson documentation built on April 19, 2021, 5:07 p.m.