Description Usage Arguments Value Examples
View source: R/levelsCollapser.R
This function displays the response rates by the levels of an attribute Levels with similar response rates may be combined
1 | levelsCollapser(dset, resp = "y", bins = 10)
|
dset |
The data frame containing the data set |
resp |
A character respresenting the name of the binary outcome variable The binary outcome variable may be a factor with two levels or an integer (or numeric ) with two unique values |
bins |
A number denoting the number of bins.Default value is 10 |
A list containing the tables of response rate by levels for every attribute
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Load the German_Credit data set supplied with this package
data("German_Credit")
# Create an empty list
l<-list()
# Call the function as follows
l<-levelsCollapser(German_Credit,resp="Good_Bad",bins=10)
# response rate by levels of the Account_Balance in the German_Credit data
l$Account_Balance
# Collapse levels with similar response percentages.
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.