woebin_adj | R Documentation |
woebin_adj
interactively adjust the binning breaks.
woebin_adj(dt, y, bins, breaks_list = NULL, adj_all_var = TRUE,
to = "breaks_list", save_as = NULL, ...)
dt |
A data frame. |
y |
Name of y variable. |
bins |
A list of data frames. Binning information generated from |
breaks_list |
List of break points, Defaults to NULL. If it is not NULL, variable binning will based on the provided breaks. |
adj_all_var |
Logical, whether to show variables have monotonic woe trends. Defaults to TRUE |
to |
Adjusting bins into breaks_list or bins_list. Defaults to breaks_list. |
save_as |
A string. The file name to save breaks_list. Defaults to None. |
... |
Additional parameters. |
A list of modified break points of each x variables.
woebin
, woebin_ply
, woebin_plot
## Not run:
# Load German credit data
data(germancredit)
# Example I
dt = germancredit[, c("creditability", "age.in.years", "credit.amount")]
bins = woebin(dt, y="creditability")
breaks_adj = woebin_adj(dt, y="creditability", bins)
bins_final = woebin(dt, y="creditability",
breaks_list=breaks_adj)
# Example II adjust two variables' breaks in brklst
binsII = woebin(germancredit, y="creditability", save_as = 'breaks')
brklst = source('breaks.R')$value
# update break list file
brklst_adj = woebin_adj(germancredit, "creditability", binsII[1:2],
breaks_list = brklst, save_as = 'breaks')
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.