View titanic.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View fraudperf.R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Utility function to use within AzureML for calculating useful account-level performance metrics | |
# for transaction fraud detection models. Each metric is calculated as a function of the score-cutoff | |
# used. These include: | |
# | |
# Account Detection Rate (ADR): what fraction of the fraud accounts received a score above the | |
# threshold at some point after the fraud started | |
# Value Detection Rate (VDR): From the point in time that the fist transaction scored above | |
# the threshold, what fraction of the losses could have been prevented. | |
# | |
# This code specifically calculates the effect of delayed action: it will calculate VDR for various scenarios, |