sync.m23 {monobinShiny} | R Documentation |
Sync between descriptive statistics and monobin module after data import
Description
Sync between descriptive statistics and monobin module after data import
Usage
sync.m23(id, num.rf, module)
Arguments
id |
Namespace id. |
num.rf |
Vector of updated numeric risk factors. |
module |
Descriptive statistic or monobin module. |
Value
No return value, called in order to sync between descriptive statistics and monobin modules' UI elements after data import.
Examples
if (interactive()) {
observeEvent(rv$sync, {
sync.m23(id = "desc.imputation",
num.rf = rv$num.rf,
module = "desc")
sync.m23(id = "monobin",
num.rf = rv$num.rf,
module = "monobin")
rv$rf.imp <- NULL
rv$rf.out <- NULL
}, ignoreInit = TRUE)
}
[Package monobinShiny version 0.1.0 Index]