add_woe | R Documentation |
A tidyverse friendly way to plug WoE versions of a set of predictor variables against a given binary outcome.
add_woe(.data, outcome, ..., dictionary = NULL, prefix = "woe")
.data |
A tbl. The data.frame to plug the new woe version columns. |
outcome |
The bare name of the outcome variable. |
... |
Bare names of predictor variables, passed as you would pass
variables to |
dictionary |
A tbl. If NULL the function will build a dictionary with
those variables passed to |
prefix |
A character string that will be the prefix to the resulting new variables. |
You can pass a custom dictionary to add_woe()
. It must have the exactly the
same structure of the output of dictionary()
. One easy way to do this is to
tweak a output returned from it.
A tibble with the original columns of .data plus the woe columns wanted.
mtcars %>% add_woe("am", cyl, gear:carb)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.