Description Usage Arguments Examples
Describe Bivariate
1 2  | describe_bivariate(data, target, p.min = 0.05, alpha = 0.05,
  verbose = TRUE)
 | 
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.  | 
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)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.