describe_bivariate: Describe Bivariate

Description Usage Arguments Examples

Description

Describe Bivariate

Usage

1
2
describe_bivariate(data, target, p.min = 0.05, alpha = 0.05,
  verbose = TRUE)

Arguments

data

A data frame to describe.

target

The target to describe.

p.min

Minimal proportion in a group (a ctree_control argument).

alpha

Minimal critetion (a ctree_control argument).

verbose

verbose.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
data("german_credit")

dbiv <- describe_bivariate(german_credit, target = good_bad)
dplyr::glimpse(dbiv)

describe_bivariate(german_credit, target = good_bad, alpha = 0.5)


## Not run: 

data(chileancredit, package = "smbinning")
data <- subset(chileancredit, select = -c(period))
describe_bivariate(data, target = fgood)


## End(Not run)

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