number {switchboard} | R Documentation |
Display the value of a continuous variable in a simulation.
Description
The number
widget displays the numerical value of a continuous variable.
Arguments
eavesdrop |
The variable to track. |
digits |
The number of digits to display in a widget. |
label |
A small caption/label for the widget. |
updates |
The number of times the widget is to be updated (e.g., when it be modified/changed). The default updates with each iteration. |
size |
A number used to designate the size (magnification) of the
widget. The default is set to |
placeOnGrid |
A row by column coordinate (e.g., |
Value
Nothing.
Usage
number(eavesdrop = NULL, digits = 5, updates = 1, label = "", size = 1, placeOnGrid = c(1, 1))
See Also
Other eavesdroppers:
benchmark()
,
counter_tally()
,
counter()
,
eavesdropper_2D()
,
eavesdropper_X()
,
eavesdropper()
,
injector_2D()
,
injector_X()
,
injector()
,
number_pair()
,
number_quartet()
,
number_trio()
,
progress_benchmark()
Examples
## Not run:
for (i in 1:250) {
switchboard(delay = 0.01) %>%
number(i * i, label = "i * i")
}
switchboard_close()
## End(Not run)