rbin_equal_freq {rbin} | R Documentation |
Equal frequency binning
Description
Bin continuous data using the equal frequency binning method.
Usage
rbin_equal_freq(data = NULL, response = NULL, predictor = NULL, bins = 10)
## S3 method for class 'rbin_equal_freq'
plot(x, print_plot = TRUE, ...)
Arguments
data |
A |
response |
Response variable. |
predictor |
Predictor variable. |
bins |
Number of bins. |
x |
An object of class |
print_plot |
logical; if |
... |
further arguments passed to or from other methods. |
Value
A tibble
.
Examples
bins <- rbin_equal_freq(mbank, y, age, 10)
bins
# plot
plot(bins)
[Package rbin version 0.2.0 Index]