sync.m23.imp {monobinShiny} | R Documentation |
Sync between descriptive statistics and monobin module after imputation process
Description
Sync between descriptive statistics and monobin module after imputation process
Usage
sync.m23.imp(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 imputation process.
Examples
if (interactive()) {
observeEvent(rv$sync2, {
rf.update.2 <- c(rv$num.rf[!rv$num.rf%in%rv$target.select.2], rv$rf.imp, rv$rf.out)
sync.m23.imp(id = "desc.imputation",
num.rf = rf.update.2,
module = "desc")
}, ignoreInit = TRUE)
}
[Package monobinShiny version 0.1.0 Index]