powered by
Evaluate the performance of different (binary) classification models
evalbin( dataset, pred, rvar, lev = "", qnt = 10, cost = 1, margin = 2, scale = 1, train = "All", data_filter = "", arr = "", rows = NULL, envir = parent.frame() )
A list of results
Dataset
Predictions or predictors
Response variable
The level in the response variable defined as success
Number of bins to create
Cost for each connection (e.g., email or mailing)
Margin on each customer purchase
Scaling factor to apply to calculations
Use data from training ("Training"), test ("Test"), 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")
Expression to arrange (sort) the data on (e.g., "color, desc(price)")
Rows to select from the specified dataset
Environment to extract data from
Evaluate different (binary) classification models based on predictions. See https://radiant-rstats.github.io/docs/model/evalbin.html for an example in Radiant
summary.evalbin to summarize results
summary.evalbin
plot.evalbin to plot results
plot.evalbin
data.frame(buy = dvd$buy, pred1 = runif(20000), pred2 = ifelse(dvd$buy == "yes", 1, 0)) %>% evalbin(c("pred1", "pred2"), "buy") %>% str()
Run the code above in your browser using DataLab