powered by
Confusion matrix
confusion(dataset, pred, rvar, lev = "", cost = 1, margin = 2, train = "All", data_filter = "", ...)
Dataset
Predictions or predictors
Response variable
The level in the response variable defined as success
Cost for each connection (e.g., email or mailing)
Margin on each customer purchase
Use data from training ("Training"), validation ("Validation"), both ("Both"), or all data ("All") to evaluate model evalbin
Expression entered in, e.g., Data > View to filter the dataset in Radiant. The expression should be a string (e.g., "price > 10000")
further arguments passed to or from other methods
A list of results
Confusion matrix and additional metrics to evaluate binary classification models. See https://radiant-rstats.github.io/docs/model/evalbin.html for an example in Radiant
summary.confusion to summarize results
summary.confusion
plot.confusion to plot results
plot.confusion
# NOT RUN { data.frame(buy = dvd$buy, pred1 = runif(20000), pred2 = ifelse(dvd$buy == "yes", 1, 0)) %>% confusion(c("pred1", "pred2"), "buy") %>% str() # }
Run the code above in your browser using DataLab