summary.uplift {radiant.model} | R Documentation |
Summary method for the uplift function
Description
Summary method for the uplift function
Usage
## S3 method for class 'uplift'
summary(object, prn = TRUE, dec = 3, ...)
Arguments
object |
Return value from |
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()
[Package radiant.model version 1.6.6 Index]