control_slider {switchboard}R Documentation

A slider to modify the range of a continuous simulation variable.

Description

The control_slider widget displays a movable slider to drag and select a new numeric value of a simulation variable.

Arguments

inject

String of the variable name to be modified/injected by the slider widget. For example, inject = "i".

minimum

The minimum value of inject.

maximum

The maximum value of inject.

label

A small caption/label for the widget.

size

A number used to designate the size (magnification) of the widget. The default is set to 1 which is 80 by 80 pixels. For example, setting to 3 will results in a widget 3-times the default size (240 by 240 pixels) and will occupy a grid area of 3 by 3.

placeOnGrid

A row by column coordinate (e.g., c(row-number, column-number)) of a grid that designates the position to draw the widget on the switchboard. Use showGrid() to help organize widget placement on dashboard. The default places the first widget in pipe chain to the c(1, 1) position, and all following on the same row stacked to the right.

Value

Nothing.

Usage

control_slider(inject = "", minimum = 0, maximum = 100,
   label = "", size = 1, placeOnGrid = c(1, 1))

See Also

Other injectors: control_slider_Y_pair(), control_slider_Y(), control_slider_pair(), control_switch_pair(), control_switch_trio(), control_switch(), injector_2D(), injector_X(), injector()

Examples

## Not run: 

   varToSlide <- 0
   for (i in 1:500) {
     switchboard(delay = 0.01) %>%
        control_slider("varToSlide", label = "0 to 100") %>%
        number(varToSlide)
   }
   switchboard_close()


## End(Not run)


[Package switchboard version 0.1 Index]