desc.report {monobinShiny} | R Documentation |
Descriptive statistics report
desc.report(target, rf, sc, sc.method, db)
target |
Selected target. |
rf |
Vector of a selected numeric risk factors. |
sc |
Numeric vector of special case values. |
sc.method |
Define how special cases will be treated, all together or in separate bins. |
db |
Data frame of target and numeric risk factors. |
Returns a data frame with descriptive statistics for the selected risk drivers.
if (interactive()) {
srv$desc.stat <- withProgress(message = "Running descriptive statistics report",
value = 0, {
desc.report(target = "qual",
rf = rf,
sc = sc,
sc.method = sc.method,
db = isolate(rv$db))
})
}