View source: R/model_utility.R
check_utility_calc | R Documentation |
Utility to inspect a utility frame for some debugging.
check_utility_calc(
values,
...,
orig_score = NULL,
orig_outcome = NULL,
constant_utilities = FALSE
)
values |
model_utility result |
... |
Not used, forces later argument to be specified by name. |
constant_utilities |
logical, if TRUE assume utilities were constant per-row. |
NULL if okay, else a string describing the problem.
d <- data.frame(
predicted_probability = c(0, 0.5, 0.5, 0.5),
made_purchase = c(FALSE, TRUE, FALSE, FALSE),
false_positive_value = -5, # acting on any predicted positive costs $5
true_positive_value = 95, # revenue on a true positive is $100 minus action cost
true_negative_value = 0.001, # true negatives have no value in our application
# but just give ourselves a small reward for being right
false_negative_value = -0.01 # adding a small notional tax for false negatives,
# don't want our competitor getting these accounts.
)
values <- model_utility(d, 'predicted_probability', 'made_purchase')
check_utility_calc(values,
orig_score = d$predicted_probability,
orig_outcome = d$made_purchase)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.