summary.confusion {radiant.model} | R Documentation |
Summary method for the confusion matrix
Description
Summary method for the confusion matrix
Usage
## S3 method for class 'confusion'
summary(object, dec = 3, ...)
Arguments
object |
Return value from |
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
confusion
to generate results
plot.confusion
to visualize result
Examples
data.frame(buy = dvd$buy, pred1 = runif(20000), pred2 = ifelse(dvd$buy == "yes", 1, 0)) %>%
confusion(c("pred1", "pred2"), "buy") %>%
summary()
[Package radiant.model version 1.6.6 Index]