summary.evalbin: Summary method for the evalbin function

View source: R/evalbin.R

summary.evalbinR Documentation

Summary method for the evalbin function

Description

Summary method for the evalbin function

Usage

## S3 method for class 'evalbin'
summary(object, prn = TRUE, dec = 3, ...)

Arguments

object

Return value from evalbin

prn

Print full table of measures per model and bin

dec

Number of decimals to show

...

further arguments passed to or from other methods

Details

See https://radiant-rstats.github.io/docs/model/evalbin.html for an example in Radiant

See Also

evalbin to summarize results

plot.evalbin to plot results

Examples

data.frame(buy = dvd$buy, pred1 = runif(20000), pred2 = ifelse(dvd$buy == "yes", 1, 0)) %>%
  evalbin(c("pred1", "pred2"), "buy") %>%
  summary()

radiant.model documentation built on Oct. 16, 2023, 9:06 a.m.