Information Value CRAN Pkg: "Performance Analysis and Companion Functions that Aid Accuracy Improvement for Binary Classification Models"
Author: "Selva Prabhakaran" [email protected]
This is the latest development version of the "InformationValue" pkg. To install this version in your R, use:
devtools::install_github("selva86/InformationValue")
The functions in InformationValue
package are broadly divided in following categories:
1. Diagnostics of predicted probability scores
2. Performance analysis
3. Functions that aid accuracy improvement
First, lets define the meaning of the various terms used in this document.
Sensitivity, a.k.a True Positive Rate is the proportion of the events (ones) that a model predicted correctly as events, for a given prediction probability cut-off.
Specificity, a.k.a * 1 - False Positive Rate* is the proportion of the non-events (zeros) that a model predicted correctly as non-events, for a given prediction probability cut-off.
False Positive Rate is the proportion of non-events (zeros) that were predicted as events (ones)
False Negative Rate is the proportion of events (ones) that were predicted as non-events (zeros)
Mis-classification error is the proportion of observations (both events and non-event) that were not predicted correctly.
Concordance is the percentage of all-possible-pairs-of-predicted Ones and Zeros where the scores of actual ones are greater than the scores of actual zeros. It represents the predictive power of a binary classification model.
Weights of Evidence (WOE) provides a method of recoding the categorical
x
variable to continuous variables. For each category of a categorical variable, the WOE is calculated as:$$WOE = ln(\frac{perc.good. of. all. goods}{perc.bad. of. all. bads}) $$ In above formula, goods is synonymous with ones, events, positives or responders and bads synonymous with zeros, non-events, negatives or non-responders.
Information Value (IV) is a measure of the predictive capability of a categorical
x
variable to accurately predict the goods and bads. For each category ofx
, information value is computed as:$$IV = (perc.Good. of. all. goods - perc.Bad. of. all. bads) * WOE $$ The total IV of a variable is the sum of IV's of its categories. Here is what the values of IV mean according to Siddiqi (2006):
- Less than 0.02, then the predictor is not useful for modeling (separating the Goods from the Bads)
- 0.02 to 0.1, then the predictor has only a weak relationship.
- 0.1 to 0.3, then the predictor has a medium strength relationship.
- 0.3 or higher, then the predictor has a strong relationship.
KS Statistic is the maximum difference between the cumulative true positive and cumulative false positive rate. It is often used as the deciding metric to jusdge the efficacy of models in credit scoring. It can be computed using the
ks_stat
function
The plotROC uses the ggplot2
framework to create the ROC curve and prints the AUROC
inside. It comes with an option to display the change points of the prediction probability scores on the graph if you set the Show.labels = T
.
library(InformationValue)
data('ActualsAndScores')
plotROC(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores)
You can also get the sensitivity matrix used to make the plot by turning on returnSensitivityMat = TRUE
.
sensMat <- plotROC(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores, returnSensitivityMat = TRUE)
Sensitivity, also considered as the 'True Positive Rate' or 'recall' is the proportion of 'Events' (or 'Ones') correctly predicted by the model, for a given prediction probability cutoff score. The default cutoff score for the specificity
function unless specified by the threshold
argument is taken as 0.5
.
sensitivity(actuals = ActualsAndScores$Actuals, predictedScores = ActualsAndScores$PredictedScores)
If the objective of your problem is to maximize the ability of your model to detect the 'Events' (or 'Ones'), even at the cost of wrongly predicting the non-events ('Zeros') as an event ('One'), then you could set the threshold as determined by the optimalCutoff()
with optimiseFor='Ones'
.
NOTE: This may not be the best example, because we are able to achieve the maximum sensitivity of 1 with the default cutoff of 0.5. However, I am showing this example just to understand how this could be implemented in real projects.
max_sens_cutoff <- optimalCutoff(actuals=ActualsAndScores$Actuals, predictedScores = ActualsAndScores$PredictedScores, optimiseFor='Ones') # determine cutoff to maximize sensitivity.
print(max_sens_cutoff) # This would be cut-off score that achieved maximum sensitivity.
sensitivity(actuals = ActualsAndScores$Actuals, predictedScores = ActualsAndScores$PredictedScores, threshold=max_sens_cutoff)
For a given probability score cutoff (threshold
), specificity computes what proportion of the total non-events (zeros) were predicted accurately. It can alo be computed as 1 - False Positive Rate
. If unless specified, the default threshold
value is set as 0.5
, which means, the values of ActualsAndScores$PredictedScores
above 0.5
is considered as events (Ones).
specificity(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores)
If you wish to know what proportion of non-events could be detected by lowering the threshold
:
specificity(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores, threshold = 0.35)
For a given probability score cutoff (threshold
), precision or 'positive predictive value' computes the proportion of the total events (ones) out of the total that were predicted to be events (ones).
precision(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores)
For a given probability score cutoff (threshold
), npv or 'negative predictive value' computes the proportion of the total non-events (zeros) out of the total that were predicted to be non-events (zeros).
npv(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores)
Youden’s J Index (Youden 1950), calculated as
youdensIndex(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores)
Mis-Classification Error is the proportion of all events that were incorrectly classified, for a given probability cutoff score.
misClassError(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores, threshold=0.5)
Cohen's Kappa
is a robust accuracy measure that accounts for the percentage agreement that would occur by chance.
kappaCohen(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores)
Concordance is the percentage of predicted probability scores where the scores of actual positive’s are greater than the scores of actual negative’s. It is calculated by taking into account the scores of all possible pairs of Ones and Zeros. If the concordance of a model is 100%, it means that, by tweaking the prediction probability cutoff, we could accurately predict all of the events and non-events.
Concordance(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores)
somersD
computes how many more concordant than discordant pairs exist divided by the total number of pairs. Larger the Somers D value, better model's predictive ability.
somersD(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores)
ks_stat
computes the kolmogorov-smirnov statistic that is widely used in credit scoring to determine the efficacy of binary classificion models.
ks_stat(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores)
ks_plot
plots the lift is capturing the responders (Ones) against the the random case where we don't use the model. The more curvier (higher) the model curve, the better is your model.
ks_plot(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores)
optimalCutoff
determines the optimal threshold for prediction probability score based on your specific problem objectives. By adjusting the argument optimiseFor
as follows, you can find the optimal cutoff that:
Ones
: maximizes detection of events or onesZeros
: maximizes detection of non-events or zerosBoth
: control both false positive rate and false negative rate by maximizing the Youden's J Index.misclasserror
: minimizes misclassification error (default)
optimalCutoff(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores) # returns cutoff that gives minimum misclassification error.
optimalCutoff(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores, optimiseFor="Both") # returns cutoff that gives maximum of Youden's J Index
By setting the returnDiagnostics=TRUE
you can get the sensitivityTable
that shows the FPR
, TPR
, YOUDENSINDEX
, SPECIFICITY
, MISCLASSERROR
for various values of cutoff.
sens_table <- optimalCutoff(actuals=ActualsAndScores$Actuals, predictedScores=ActualsAndScores$PredictedScores, optimiseFor="Both", returnDiagnostics=TRUE)$sensitivityTable
Computes the Weights Of Evidence (WOE) for each group of a given categorical X and binary response Y.
WOE(X=SimData$X.Cat, Y=SimData$Y.Binary)
Generates the WOE table showing the percentage goods, bads, WOE and IV for each category of X
. WOE for a given category of X
is computed as:
options(scipen = 999, digits = 2)
WOETable(X=SimData$X.Cat, Y=SimData$Y.Binary)
Compute the information value of a given categorical X
(Factor) and binary Y
(numeric) response. The information value of a category of X
is calculated as:
IV
of the categorical variables is the sum of information value of its individual categories.
options(scipen = 999, digits = 4)
IV(X=SimData$X.Cat, Y=SimData$Y.Binary)
"He who gives up code safety for code speed deserves neither." For more information and examples, visit r-statistics.co