plot.binning: Generic method to plot a binnig object

Description Usage Arguments Examples

Description

Generic method to plot a binnig object

Usage

1
2
## S3 method for class 'binning'
plot(x, ...)

Arguments

x

A binning object.

...

Extra arguments.

Examples

1
2
3
4
5
6
7
8
data(german_credit)
bin <- binning(german_credit$duration_in_month, german_credit$good_bad)
plot(bin)

x <- runif(250)
y <- rbinom(250, 1, x)
bin <- binning(x, y)
plot(bin)

jbkunst/irks documentation built on May 22, 2021, 2:09 p.m.