More on RFM and Logistic: Lifts and Gains

Size: px
Start display at page:

Download "More on RFM and Logistic: Lifts and Gains"

Transcription

1 More on RFM and Logistic: Lifts and Gains

2 How do we conduct RFM in practice? Sample size Rule of thumb for size: Average number of responses per cell >4 4/ response rate = number to mail per cell e.g. response rate 2% --> 4/0.02=200 (times 125 RFM cells) Number of N-tiles With relatively small customer databases - quintiles may be too many For very large databases cells may be too few Don t have to be equal could have 5 (R), 3 (F), 4 (M) categories RFM isn t restricted to R, F, and M For websites could be R, F, and D (duration of visit)

3 What marketing program would you propose for these cells? R F M best, 5-worst

4 Lessons about RFM RFM analysis is Effective Simple Intuitive Flexible Does not require sophisticated software or analytics Anyone can do it RFM can handle only few predictive variables There may be much more predictive information (logistic is solution)

5 How do we assess model s performance and compare it to that of different models? Model performance measures General approach We are generally interested in models that predict or classify Use model to rank/score customers Calculate improvement in response over no targeting Lifts Expected number of customers relative to random targeting Gains Percentage of total buyers we expect from targeting X% of customers

6 We are using RFM for Tuscan Lifestyles to estimate lifts Approach for calculation of lifts Perform RFM Organize cells in deciles by response rate (variable buyer) Estimate lifts by comparing response rates in deciles and base response rate Dataset tuscan_lg Contains independent and sequential RFM indices

7 Lifts in RFM Prediction model /*split in 10 groups by mean response rate for independent N-tile RFM*/ proc rank data=tuscan_lg out=tuscan_lift1 ties=low groups=10; var resp1; We use average response rate ranks lift_iq; to form deciles run; We are reversing order of data tuscan_lift; deciles so best customers are set tuscan_lift1; in decile 1 lift_iq=10-lift_iq; run; proc freq data=tuscan_lift ; tables lift_iq*buyer /norow nocum nopercent ; run;

8 Lifts in RFM Prediction model We formed deciles by response rate

9 Calculation of Lift: Independent N-tile RFM Score Decile # Customers Cum # Cum % # Buyers Cum # Response Lift Cum. Resp. Cum. Lift Customers Customers Buyers Rate Rate % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % 1.00 Total % Cumulative # customers: the number of total customers up to and including that decile Cumulative % customers: the percent of total customers up to and including that decile Cumulative # Buyers: the number of buyers up to and including that decile Response Rate: the actual response rate for each decile, computed by the number of buyers divided by the number of customers for each decile Lift: (response rate for each decile) / (overall response rate) Cumulative Response Rate: cumulative # buyers / cumulative # customers Cum(ulative) Lift: (cumulative response rate) / (overall response rate) *100

10 The Lift indicates the model s ability to beat the no model Lift for top decile is 2.33 Targeting only top decile will yield 2.33 more responses/buyers than if we had not targeted Lift is relative index, i.e lift is 2.33 times base rate (2.46%)

11 Calculation of Gains: Independent N-Tile RFM Score Decile # Customers Cum # Cum % # Buyers Cum # Gains Cum. Gains Customers Customers Buyers % % 22.06% % % 38.25% % % 50.78% % % 61.11% % % 70.43% % % 78.32% % % 85.15% % % 90.26% % % 95.44% % % % Total % Gains the proportion of buyers in each decile Cum(ulative) Gains - the proportion of responders/buyers up to and including the decile, or simply the sum of the gains up to that decile.

12 Gains Chart The Gains chart reveals what proportion of responders we can expect to gain from targeting a specific percent of customers using the model By using the RFM model to target only top decile we can get 22.06% buyers We can get 50.78% customers by targeting three top deciles

13 Lifts and gains for sequential RFM /*split in 10 groups by mean response rate for sequential N-tile RFM*/ proc rank data=tuscan_lg out=tuscan_lift1 ties=low groups=10; var resp2; We use average response rate ranks lift_sq; to form deciles run; We are reversing order of data tuscan_lift; deciles so best customers are set tuscan_lift1; in decile 1 lift_sq=10-lift_sq; run; proc freq data=tuscan_lift ; tables lift_sq*buyer /norow nocum nopercent ; run;

14 Lifts and Gains in Sequential RFM

15 Calculation of Lift: Sequential N-tile RFM Score Decile # Customers Cum # Cum % # Buyers Cum # Response Lift Cum. Resp. Cum. Lift Customers Customers Buyers Rate Rate % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % 1.00 Total % Cumulative # customers: the number of total customers up to and including that decile Cumulative % customers: the percent of total customers up to and including that decile Cumulative # Buyers: the number of buyers up to and including that decile Response Rate: the actual response rate for each decile, computed by the number of buyers divided by the number of customers for each decile Lift: (response rate for each decile) / (overall response rate) Cumulative Response Rate: cumulative # buyers / cumulative # customers Cum(ulative) Lift: (cumulative response rate) / (overall response rate) *100

16 Lift chart for sequential RFM Lift for top decile is 2.41

17 Calculation of Gains: Sequential N-Tile RFM Score Decile # Customers Cum # Cum % # Buyers Cum # Gains Cum. Gains Customers Customers Buyers % % 22.86% % % 39.48% % % 50.95% % % 61.83% % % 70.48% % % 78.07% % % 84.94% % % 90.81% % % 96.12% % % % Total % Gains the proportion of buyers in each decile Cum(ulative) Gains - the proportion of responders/buyers up to and including the decile, or simply the sum of the gains up to that decile.

18 Gains chart for sequential RFM Top decile contains 22.86% customers By using three top deciles we can get 50.96% customers

19 Logistic Regression proc logistic data=tuscan_lg descending plots=none; model buyer=last totdol numords; output out=tuscan_pr p=resp_pr; run; Let s see whether logistic regression provides better results.

20 Logistic Regression proc rank data=tuscan_pr out=tuscan_lift1 ties=low groups=10; var resp_pr; ranks lift_log; run; data tuscan_lift; set tuscan_lift1; lift_log=10-lift_log; run; proc freq data=tuscan_lift ; We use average response rate to form deciles We are reversing order of deciles so best customers are in decile 1 tables lift_log*buyer /norow nocum nopercent ; run;

21 Output for Logistic Regression

22 Lifts and Gains for Logistic Regression

23 Calculation of Lift: Logistic Regression Score Decile # Customers Cum # Cum % # Buyers Cum # Response Lift Cum. Resp. Cum. Lift Customers Customers Buyers Rate Rate % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % 1.00 Total % Cumulative # customers: the number of total customers up to and including that decile Cumulative % customers: the percent of total customers up to and including that decile Cumulative # Buyers: the number of buyers up to and including that decile Response Rate: the actual response rate for each decile, computed by the number of buyers divided by the number of customers for each decile Lift: (response rate for each decile) / (overall response rate) Cumulative Response Rate: cumulative # buyers / cumulative # customers Cum(ulative) Lift: (cumulative response rate) / (overall response rate) *100

24 Calculation of Gains: Logistic Regression Score Decile # Customers Cum # Cum % # Buyers Cum # Gains Cum. Gains Customers Customers Buyers % % 22.52% % % 36.10% % % 47.74% % % 57.70% % % 66.85% % % 73.94% % % 80.68% % % 88.40% % % 94.56% % % % Total % Gains the proportion of buyers in each decile Cum(ulative) Gains - the proportion of responders/buyers up to and including the decile, or simply the sum of the gains up to that decile.

25 Lift chart for Logistic regression Lift for top decile is 2.25

26 Gains chart for Logistic regression Targeting top decile gets 22.86% customers

27 Lifts and Gains can be used to compare different models

28 Lifts and Gains can be used to compare different models The fatter then banana the better model!

29 Concordance vs. Lifts for Logistic Regression Concordance proportion of observations that may be correctly predicted (buyer=0 or buyer=1) by logistic regression 59.4% cases may be correctly classified The highest lift is 2.25, which corresponds to 5.53% response rate for top decile. Interpretation?

Predictive Modeling Cross Selling of Home Loans to Credit Card Customers

Predictive Modeling Cross Selling of Home Loans to Credit Card Customers PAKDD COMPETITION 2007 Predictive Modeling Cross Selling of Home Loans to Credit Card Customers Hualin Wang 1 Amy Yu 1 Kaixia Zhang 1 800 Tech Center Drive Gahanna, Ohio 43230, USA April 11, 2007 1 Outline

More information

Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing

Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing C. Olivia Rud, President, OptiMine Consulting, West Chester, PA ABSTRACT Data Mining is a new term for the

More information

Risk and Risk Management in the Credit Card Industry

Risk and Risk Management in the Credit Card Industry Risk and Risk Management in the Credit Card Industry F. Butaru, Q. Chen, B. Clark, S. Das, A. W. Lo and A. Siddique Discussion by Richard Stanton Haas School of Business MFM meeting January 28 29, 2016

More information

The FREQ Procedure. Table of Sex by Gym Sex(Sex) Gym(Gym) No Yes Total Male Female Total

The FREQ Procedure. Table of Sex by Gym Sex(Sex) Gym(Gym) No Yes Total Male Female Total Jenn Selensky gathered data from students in an introduction to psychology course. The data are weights, sex/gender, and whether or not the student worked-out in the gym. Here is the output from a 2 x

More information

INTRODUCTION TO SURVIVAL ANALYSIS IN BUSINESS

INTRODUCTION TO SURVIVAL ANALYSIS IN BUSINESS INTRODUCTION TO SURVIVAL ANALYSIS IN BUSINESS By Jeff Morrison Survival model provides not only the probability of a certain event to occur but also when it will occur... survival probability can alert

More information

EXAMPLE 6: WORKING WITH WEIGHTS AND COMPLEX SURVEY DESIGN

EXAMPLE 6: WORKING WITH WEIGHTS AND COMPLEX SURVEY DESIGN EXAMPLE 6: WORKING WITH WEIGHTS AND COMPLEX SURVEY DESIGN EXAMPLE RESEARCH QUESTION(S): How does the average pay vary across different countries, sex and ethnic groups in the UK? How does remittance behaviour

More information

True-Lift Modeling: Mining for the Most Truly Responsive Customers and Prospects

True-Lift Modeling: Mining for the Most Truly Responsive Customers and Prospects True-Lift Modeling: Mining for the Most Truly Responsive Customers and Prospects Kathleen Kane Jane Zheng Victor Lo 1 Alex Arias-Vargas Fidelity Investments 1 Also with Bentley University San Franciso,

More information

Running Descriptive Statistics: Sample and Population Values

Running Descriptive Statistics: Sample and Population Values Running Descriptive Statistics: Sample and Population Values Goal This exercise is an introduction to a few of the variables in the household-level and person-level LIS data sets. The exercise concentrates

More information

Decile Analysis: Perspective and Performance

Decile Analysis: Perspective and Performance 27 Decile Analysis: Perspective and Performance Appendix 27.A Incremental Gain in Accuracy: Model versus Chance libname da c://0-da ; data dec; set da.score; PREDICTED=0; if prob_hat > 0.222 then PREDICTED=1;

More information

Perspectives On 2004 and Beyond Ron Surz, President, PPCA, Inc.

Perspectives On 2004 and Beyond Ron Surz, President, PPCA, Inc. Volume 8, No. 1 Senior Consultant The Voice of the Investment Management Consultant Perspectives On 24 and Beyond Ron Surz, President, PPCA, Inc. Due to a 4th quarter rally, the stock market returned 12%

More information

Milliman Risk Score 2.0 stratifying mortality risk using prescription drug information

Milliman Risk Score 2.0 stratifying mortality risk using prescription drug information Milliman Risk Score 2.0 stratifying mortality risk using prescription drug information Predictive models and life insurance Munich Re assessed the Milliman Rx Risk Score, a predictive modeling tool developed

More information

Identifying High Spend Consumers with Equifax Dimensions

Identifying High Spend Consumers with Equifax Dimensions Identifying High Spend Consumers with Equifax Dimensions April 2014 Table of Contents 1 Executive summary 2 Know more about consumers by understanding their past behavior 3 Optimize business performance

More information

Building Better Credit Scores using Reject Inference and SAS

Building Better Credit Scores using Reject Inference and SAS ABSTRACT Building Better Credit Scores using Reject Inference and SAS Steve Fleming, Clarity Services Inc. Although acquisition credit scoring models are used to screen all applicants, the data available

More information

Chapter 5 Normal Probability Distributions

Chapter 5 Normal Probability Distributions Chapter 5 Normal Probability Distributions Section 5-1 Introduction to Normal Distributions and the Standard Normal Distribution A The normal distribution is the most important of the continuous probability

More information

Credit Card Default Predictive Modeling

Credit Card Default Predictive Modeling Credit Card Default Predictive Modeling Background: Predicting credit card payment default is critical for the successful business model of a credit card company. An accurate predictive model can help

More information

LESSON 9: BINOMIAL DISTRIBUTION

LESSON 9: BINOMIAL DISTRIBUTION LESSON 9: Outline The context The properties Notation Formula Use of table Use of Excel Mean and variance 1 THE CONTEXT An important property of the binomial distribution: An outcome of an experiment is

More information

Lecture 21: Logit Models for Multinomial Responses Continued

Lecture 21: Logit Models for Multinomial Responses Continued Lecture 21: Logit Models for Multinomial Responses Continued Dipankar Bandyopadhyay, Ph.D. BMTRY 711: Analysis of Categorical Data Spring 2011 Division of Biostatistics and Epidemiology Medical University

More information

To be two or not be two, that is a LOGISTIC question

To be two or not be two, that is a LOGISTIC question MWSUG 2016 - Paper AA18 To be two or not be two, that is a LOGISTIC question Robert G. Downer, Grand Valley State University, Allendale, MI ABSTRACT A binary response is very common in logistic regression

More information

STROKE HOSPITALIZATIONS

STROKE HOSPITALIZATIONS Paper 108 Evaluating and Mapping Stroke Hospitalization Costs in Florida Shamarial Roberson, MPH 1,2, Charlotte Baker, DrPH, MPH, CPH 1, Jamie Forrest MS 2 1 Florida Agricultural and Mechanical University

More information

We are experiencing the most rapid evolution our industry

We are experiencing the most rapid evolution our industry Integrated Analytics The Next Generation in Automated Underwriting By June Quah and Jinnah Cox We are experiencing the most rapid evolution our industry has ever seen. Incremental innovation has been underway

More information

The Normal Distribution & Descriptive Statistics. Kin 304W Week 2: Jan 15, 2012

The Normal Distribution & Descriptive Statistics. Kin 304W Week 2: Jan 15, 2012 The Normal Distribution & Descriptive Statistics Kin 304W Week 2: Jan 15, 2012 1 Questionnaire Results I received 71 completed questionnaires. Thank you! Are you nervous about scientific writing? You re

More information

Module 9: Single-level and Multilevel Models for Ordinal Responses. Stata Practical 1

Module 9: Single-level and Multilevel Models for Ordinal Responses. Stata Practical 1 Module 9: Single-level and Multilevel Models for Ordinal Responses Pre-requisites Modules 5, 6 and 7 Stata Practical 1 George Leckie, Tim Morris & Fiona Steele Centre for Multilevel Modelling If you find

More information

Analytical Finance 1 Seminar Monte-Carlo application for Value-at-Risk on a portfolio of Options, Futures and Equities

Analytical Finance 1 Seminar Monte-Carlo application for Value-at-Risk on a portfolio of Options, Futures and Equities Analytical Finance 1 Seminar Monte-Carlo application for Value-at-Risk on a portfolio of Options, Futures and Equities Radhesh Agarwal (Ral13001) Shashank Agarwal (Sal13002) Sumit Jalan (Sjn13024) Calculating

More information

STATISTICAL DISTRIBUTIONS AND THE CALCULATOR

STATISTICAL DISTRIBUTIONS AND THE CALCULATOR STATISTICAL DISTRIBUTIONS AND THE CALCULATOR 1. Basic data sets a. Measures of Center - Mean ( ): average of all values. Characteristic: non-resistant is affected by skew and outliers. - Median: Either

More information

2008 VantageScore Revalidation

2008 VantageScore Revalidation 2008 VantageScore Revalidation February 2009 The New Standard in Credit Scoring Overview VantageScore Solutions LLC has conducted its annual revalidation of the credit risk score, VantageScore. For the

More information

Using Advanced Analytics to Identify Fraud in Property and Casualty Insurance

Using Advanced Analytics to Identify Fraud in Property and Casualty Insurance AN EXL WHITE PAPER Using Advanced Analytics to Identify Fraud in Property and Casualty Insurance Neeraj Sibal Senior Manager, Analytics lookdeeper@exlservice.com The Coalition Against Insurance Fraud (CAIF)

More information

Claim Risk Scoring using Survival Analysis Framework and Machine Learning with Random Forest

Claim Risk Scoring using Survival Analysis Framework and Machine Learning with Random Forest Paper 2521-2018 Claim Risk Scoring using Survival Analysis Framework and Machine Learning with Random Forest Yuriy Chechulin, Jina Qu, Terrance D'souza Workplace Safety and Insurance Board of Ontario,

More information

Attractiveness Ratings for The Approved Wright Investment List

Attractiveness Ratings for The Approved Wright Investment List Attractiveness Ratings for The Approved Wright Investment List All stocks in The Approved Wright Investment List (AWIL) universe are organized and ranked by attractiveness based on fundamental criteria.

More information

Expanding Predictive Analytics Through the Use of Machine Learning

Expanding Predictive Analytics Through the Use of Machine Learning Expanding Predictive Analytics Through the Use of Machine Learning Thursday, February 28, 2013, 11:10 a.m. Chris Cooksey, FCAS, MAAA Chief Actuary EagleEye Analytics Columbia, S.C. Christopher Cooksey,

More information

Session 63 PD, Annuity Policyholder Behavior. Moderator: Kendrick D. Lombardo, FSA, MAAA

Session 63 PD, Annuity Policyholder Behavior. Moderator: Kendrick D. Lombardo, FSA, MAAA Session 63 PD, Annuity Policyholder Behavior Moderator: Kendrick D. Lombardo, FSA, MAAA Presenters: Eileen Sheila Burns, FSA, MAAA Kendrick D. Lombardo, FSA, MAAA Timothy S. Paris, FSA, MAAA Timothy Paris,

More information

LexisNexis Risk Classifier stratifying mortality risk using alternative data sources

LexisNexis Risk Classifier stratifying mortality risk using alternative data sources stratifying mortality risk using Predictive models and life insurance Munich Re assessed LexisNexis Risk Classifier, a predictive modeling tool developed and owned by LexisNexis Risk Solutions, Inc. that

More information

MgtOp 215 TEST 1 (Golden) Spring 2016 Dr. Ahn. Read the following instructions very carefully before you start the test.

MgtOp 215 TEST 1 (Golden) Spring 2016 Dr. Ahn. Read the following instructions very carefully before you start the test. MgtOp 15 TEST 1 (Golden) Spring 016 Dr. Ahn Name: ID: Section (Circle one): 4, 5, 6 Read the following instructions very carefully before you start the test. This test is closed book and notes; one summary

More information

The analysis of credit scoring models Case Study Transilvania Bank

The analysis of credit scoring models Case Study Transilvania Bank The analysis of credit scoring models Case Study Transilvania Bank Author: Alexandra Costina Mahika Introduction Lending institutions industry has grown rapidly over the past 50 years, so the number of

More information

List Sourcing Optimization. Using Analytics to Own the Advantage

List Sourcing Optimization. Using Analytics to Own the Advantage Sourcing Optimization Using Analytics to Own the Advantage For too long list owners and brokers have held the advantage in list acquisition Now it s your time to own the advantage! 2 Knowledge is Power

More information

International Patent Protection:

International Patent Protection: International Patent Protection: 1990-2005 Measurement and Trends Patent Strength and Stages of Economic Development I. Measurement & Trends Patent Rights Index (0-5) Duration (0-1) Coverage (0-1) Restrictions,

More information

Developing WOE Binned Scorecards for Predicting LGD

Developing WOE Binned Scorecards for Predicting LGD Developing WOE Binned Scorecards for Predicting LGD Naeem Siddiqi Global Product Manager Banking Analytics Solutions SAS Institute Anthony Van Berkel Senior Manager Risk Modeling and Analytics BMO Financial

More information

CUR 412: Game Theory and its Applications, Lecture 4

CUR 412: Game Theory and its Applications, Lecture 4 CUR 412: Game Theory and its Applications, Lecture 4 Prof. Ronaldo CARPIO March 27, 2015 Homework #1 Homework #1 will be due at the end of class today. Please check the website later today for the solutions

More information

The Mode: An Example. The Mode: An Example. Measure of Central Tendency: The Mode. Measure of Central Tendency: The Median

The Mode: An Example. The Mode: An Example. Measure of Central Tendency: The Mode. Measure of Central Tendency: The Median Chapter 4: What is a measure of Central Tendency? Numbers that describe what is typical of the distribution You can think of this value as where the middle of a distribution lies (the median). or The value

More information

FICO s analysis indicates:

FICO s analysis indicates: FICO s analysis indicates: No observed material impact to the FICO Score due to expected NCAP changes. Minimal impact to risk prediction, odds-to-score relationship, and score distributions. No impact

More information

Credit Score Basics, Part 3: Achieving the Same Risk Interpretation from Different Models with Different Ranges

Credit Score Basics, Part 3: Achieving the Same Risk Interpretation from Different Models with Different Ranges Credit Score Basics, Part 3: Achieving the Same Risk Interpretation from Different Models with Different Ranges September 2011 OVERVIEW Most generic credit scores essentially provide the same capability

More information

MS&E 448 Final Presentation High Frequency Algorithmic Trading

MS&E 448 Final Presentation High Frequency Algorithmic Trading MS&E 448 Final Presentation High Frequency Algorithmic Trading Francis Choi George Preudhomme Nopphon Siranart Roger Song Daniel Wright Stanford University June 6, 2017 High-Frequency Trading MS&E448 June

More information

BEAM Venture Wizard Quick Start Guide

BEAM Venture Wizard Quick Start Guide BEAM Venture Wizard Quick Start Guide COPYRIGHT 2014 Beam4D Enterprises, LLC Published on 08/03/2014 All Rights Reserved. This document is designed to provide accurate and useful information regarding

More information

Capital Management in commercial and investment banking Back to the drawing board? Rolf van den Heever. ABSA Capital

Capital Management in commercial and investment banking Back to the drawing board? Rolf van den Heever. ABSA Capital Capital Management in commercial and investment banking Back to the drawing board? Rolf van den Heever ABSA Capital Contents Objectives Background Existing regulatory and internal dispensation to meet

More information

Real Options for Engineering Systems

Real Options for Engineering Systems Real Options for Engineering Systems Session 1: What s wrong with the Net Present Value criterion? Stefan Scholtes Judge Institute of Management, CU Slide 1 Main issues of the module! Project valuation:

More information

TOOLS. To build agency revenue, profits and value. Turning Around an Unprofitable Agency

TOOLS. To build agency revenue, profits and value. Turning Around an Unprofitable Agency September 2014 TOOLS To build agency revenue, profits and value. page ONE Typical Uprofitable Agency page TWO Income and Expense Statement (con t) page THREE Hypothetical Examples of Actions page FOUR

More information

The Unique Credit Characteristics of Healthcare Patients. An Equifax Predictive Sciences Research Paper December 2003

The Unique Credit Characteristics of Healthcare Patients. An Equifax Predictive Sciences Research Paper December 2003 The Unique Credit Characteristics of Healthcare Patients An Equifax Predictive Sciences Research Paper December 2003 Executive Summary As today s healthcare payment trends shift toward an ever increasing

More information

574 Flanders Drive North Woodmere, NY ~ fax

574 Flanders Drive North Woodmere, NY ~ fax DM STAT-1 CONSULTING BRUCE RATNER, PhD 574 Flanders Drive North Woodmere, NY 11581 br@dmstat1.com 516.791.3544 ~ fax 516.791.5075 www.dmstat1.com The Missing Statistic in the Decile Table: The Confidence

More information

Presented at the 2012 SCEA/ISPA Joint Annual Conference and Training Workshop -

Presented at the 2012 SCEA/ISPA Joint Annual Conference and Training Workshop - Applying the Pareto Principle to Distribution Assignment in Cost Risk and Uncertainty Analysis James Glenn, Computer Sciences Corporation Christian Smart, Missile Defense Agency Hetal Patel, Missile Defense

More information

Predicting Companies Delisting to Improve Mutual Fund Performance

Predicting Companies Delisting to Improve Mutual Fund Performance Predicting Companies Delisting to Improve Mutual Fund Performance TA-WEI HUANG EUGENE YANG PO-WEI HUANG BADM BADM Group 6 Executive Summary Stock is removed from an exchange because the company for which

More information

Using alternative data, millions more consumers qualify for credit and go on to improve their credit standing

Using alternative data, millions more consumers qualify for credit and go on to improve their credit standing NO. 89 90 New FICO research shows how to score millions more creditworthy consumers Using alternative data, millions more consumers qualify for credit and go on to improve their credit standing Widespread

More information

Modeling Private Firm Default: PFirm

Modeling Private Firm Default: PFirm Modeling Private Firm Default: PFirm Grigoris Karakoulas Business Analytic Solutions May 30 th, 2002 Outline Problem Statement Modelling Approaches Private Firm Data Mining Model Development Model Evaluation

More information

Lecture 10: Alternatives to OLS with limited dependent variables, part 1. PEA vs APE Logit/Probit

Lecture 10: Alternatives to OLS with limited dependent variables, part 1. PEA vs APE Logit/Probit Lecture 10: Alternatives to OLS with limited dependent variables, part 1 PEA vs APE Logit/Probit PEA vs APE PEA: partial effect at the average The effect of some x on y for a hypothetical case with sample

More information

Article from. The Actuary. October/November 2015 Issue 5

Article from. The Actuary. October/November 2015 Issue 5 Article from The Actuary October/November 2015 Issue 5 FEATURE PREDICTIVE ANALYTICS THE USE OF PREDICTIVE ANALYTICS IN THE DEVELOPMENT OF EXPERIENCE STUDIES Recently, predictive analytics has drawn a lot

More information

Simulation Lecture Notes and the Gentle Lentil Case

Simulation Lecture Notes and the Gentle Lentil Case Simulation Lecture Notes and the Gentle Lentil Case General Overview of the Case What is the decision problem presented in the case? What are the issues Sanjay must consider in deciding among the alternative

More information

Model Maestro. Scorto TM. Specialized Tools for Credit Scoring Models Development. Credit Portfolio Analysis. Scoring Models Development

Model Maestro. Scorto TM. Specialized Tools for Credit Scoring Models Development. Credit Portfolio Analysis. Scoring Models Development Credit Portfolio Analysis Scoring Models Development Scorto TM Models Analysis and Maintenance Model Maestro Specialized Tools for Credit Scoring Models Development 2 Purpose and Tasks to Be Solved Scorto

More information

MSCI Global ESG Indexes Methodology

MSCI Global ESG Indexes Methodology Contents 1 Introduction... 3 2 ESG Research Framework... 3 MSCI ESG Intangible Value Assessment... 3 MSCI ESG Impact Monitor... 3 3 Constructing the MSCI Global ESG Indexes... 4 3.1 Underlying Universe...

More information

The Power of Quality-meets-Value

The Power of Quality-meets-Value BARROW STREET ADVISORS Equity Research The Power of Quality-meets-Value Common Investor Beliefs... Many Investors Believe: 1. Security prices are generally efficient over time, though they can offer mis-pricing

More information

TRΛNSPΛRΣNCY ΛNΛLYTICS

TRΛNSPΛRΣNCY ΛNΛLYTICS TRΛNSPΛRΣNCY ΛNΛLYTICS RISK-AI, LLC PRESENTATION INTRODUCTION I. Transparency Analytics is a state-of-the-art risk management analysis and research platform for Investment Advisors, Funds of Funds, Family

More information

Predicting the Success of a Retirement Plan Based on Early Performance of Investments

Predicting the Success of a Retirement Plan Based on Early Performance of Investments Predicting the Success of a Retirement Plan Based on Early Performance of Investments CS229 Autumn 2010 Final Project Darrell Cain, AJ Minich Abstract Using historical data on the stock market, it is possible

More information

Web Appendix Figure 1. Operational Steps of Experiment

Web Appendix Figure 1. Operational Steps of Experiment Web Appendix Figure 1. Operational Steps of Experiment 57,533 direct mail solicitations with randomly different offer interest rates sent out to former clients. 5,028 clients go to branch and apply for

More information

T A B L E 17.CS1 Summary Results for YoY Sales Growth Decile Analysis of All Stocks Universe, January 1, 1964 to December 31, 2009.

T A B L E 17.CS1 Summary Results for YoY Sales Growth Decile Analysis of All Stocks Universe, January 1, 1964 to December 31, 2009. What Works On Wall Street Chapter 17 Case Study: Do Sales Increases Work Better than Earnings Gains? Does the Percentage Change in Cash Flow Help? What About Looking at ized Unexpected Earnings? Is a Composited

More information

Quantile regression and surroundings using SAS

Quantile regression and surroundings using SAS Appendix B Quantile regression and surroundings using SAS Introduction This appendix is devoted to the presentation of the main commands available in SAS for carrying out a complete data analysis, that

More information

Table of Contents. New to the Second Edition... Chapter 1: Introduction : Social Research...

Table of Contents. New to the Second Edition... Chapter 1: Introduction : Social Research... iii Table of Contents Preface... xiii Purpose... xiii Outline of Chapters... xiv New to the Second Edition... xvii Acknowledgements... xviii Chapter 1: Introduction... 1 1.1: Social Research... 1 Introduction...

More information

Auctions. Agenda. Definition. Syllabus: Mansfield, chapter 15 Jehle, chapter 9

Auctions. Agenda. Definition. Syllabus: Mansfield, chapter 15 Jehle, chapter 9 Auctions Syllabus: Mansfield, chapter 15 Jehle, chapter 9 1 Agenda Types of auctions Bidding behavior Buyer s maximization problem Seller s maximization problem Introducing risk aversion Winner s curse

More information

Developing Optimized Maintenance Work Programs for an Urban Roadway Network using Pavement Management System

Developing Optimized Maintenance Work Programs for an Urban Roadway Network using Pavement Management System Developing Optimized Maintenance Work Programs for an Urban Roadway Network using Pavement Management System M. Arif Beg, PhD Principal Consultant, AgileAssets Inc. Ambarish Banerjee, PhD Consultant, AgileAssets

More information

Chinese Costing Practices?

Chinese Costing Practices? How Accurate Are Chinese Costing Practices? This is the third of three articles based on the recently completed study by the Institute of Management Accountants (IMA ) of the state of management accounting

More information

Opportunities in Emerging Markets Inefficiencies Can Provide Opportunity

Opportunities in Emerging Markets Inefficiencies Can Provide Opportunity Opportunities in Emerging Markets Inefficiencies Can Provide Opportunity Mark Wimer, CFA Senior Portfolio Manager Introduction Strategic Global Advisors (SGA) has been investing client assets in international

More information

School of Six Sigma. Calculating Savings. Overview. The Financial Lead

School of Six Sigma. Calculating Savings. Overview. The Financial Lead School of Six Sigma Calculating Savings Overview In this module we re going to discuss some ways to go about calculating the financial savings of continuous improvement projects. By the end of this module,

More information

See through the Markets with BookMap Xray

See through the Markets with BookMap Xray See through the Markets with BookMap Xray Trading Futures and Options on Futures involves substantial risk of loss and is not suitable for all investors. You should carefully consider whether trading is

More information

Examining Long-Term Trends in Company Fundamentals Data

Examining Long-Term Trends in Company Fundamentals Data Examining Long-Term Trends in Company Fundamentals Data Michael Dickens 2015-11-12 Introduction The equities market is generally considered to be efficient, but there are a few indicators that are known

More information

Developing Survey Expansion Factors

Developing Survey Expansion Factors Developing Survey Expansion Factors Objective: To apply expansion factors to the results of a household travel survey and to apply trip rates to calculate total trips. It is eighteen months later and the

More information

Lab#3 Probability

Lab#3 Probability 36-220 Lab#3 Probability Week of September 19, 2005 Please write your name below, tear off this front page and give it to a teaching assistant as you leave the lab. It will be a record of your participation

More information

Presentation to August 14,

Presentation to August 14, Audit Integrity Presentation to August 14, 2006 www.auditintegrity.com 1 Agenda Accounting & Governance Risk Why does it matter? Which Accounting & Governance Metrics are Most Highly Correlated to Fraud

More information

2) What is algorithm?

2) What is algorithm? 2) What is algorithm? Step by step procedure designed to perform an operation, and which (like a map or flowchart) will lead to the sought result if followed correctly. Algorithms have a definite beginning

More information

Gyroscope Capital Management Group

Gyroscope Capital Management Group Thursday, March 08, 2018 Quarterly Review and Commentary Earlier this year, we highlighted the rising popularity of quant strategies among asset managers. In our most recent commentary, we discussed factor

More information

Machine Learning Performance over Long Time Frame

Machine Learning Performance over Long Time Frame Machine Learning Performance over Long Time Frame Yazhe Li, Tony Bellotti, Niall Adams Imperial College London yli16@imperialacuk Credit Scoring and Credit Control Conference, Aug 2017 Yazhe Li (Imperial

More information

Lesson Plan: Saving and Investment Challenge. Glossary

Lesson Plan: Saving and Investment Challenge. Glossary Step 1 Glossary (knowledge) Lesson Plan: Saving and Investment Challenge Prepare a glossary of at least 20 terms relating to saving and investing. A set of 15 terms have been provided. Use the additional

More information

Who Goes Bad First? Reducing Risk Through Blended Credit Profiles

Who Goes Bad First? Reducing Risk Through Blended Credit Profiles Who Goes Bad First? Reducing Risk Through Blended Credit Profiles Sung Park Director of Analytics Consulting, Experian 1 MAC is an organization of Bankcard professionals involved in the risk management

More information

7. For the table that follows, answer the following questions: x y 1-1/4 2-1/2 3-3/4 4

7. For the table that follows, answer the following questions: x y 1-1/4 2-1/2 3-3/4 4 7. For the table that follows, answer the following questions: x y 1-1/4 2-1/2 3-3/4 4 - Would the correlation between x and y in the table above be positive or negative? The correlation is negative. -

More information

Normal populations. Lab 9: Normal approximations for means STT 421: Summer, 2004 Vince Melfi

Normal populations. Lab 9: Normal approximations for means STT 421: Summer, 2004 Vince Melfi Lab 9: Normal approximations for means STT 421: Summer, 2004 Vince Melfi In previous labs where we investigated the distribution of the sample mean and sample proportion, we often noticed that the distribution

More information

Making Predictive Modeling Work for Small Commercial Insurance Risk Assessment

Making Predictive Modeling Work for Small Commercial Insurance Risk Assessment WHITE PAPER Making Predictive Modeling Work for Small Commercial Insurance Risk Assessment Best practices from LexisNexis Risk Solutions AUGUST 2017 Executive Summary While predictive modeling has proven

More information

Underwriting Issues & Innovation Seminar

Underwriting Issues & Innovation Seminar The Product Development Section Presents Underwriting Issues & Innovation Seminar July 31-August 1, 2017 The Westin O Hare Chicago, IL Risk Assessment Tools Part 2 Moderator: Cindy Mitchell Presenters:

More information

The CreditRiskMonitor FRISK Score

The CreditRiskMonitor FRISK Score Read the Crowdsourcing Enhancement white paper (7/26/16), a supplement to this document, which explains how the FRISK score has now achieved 96% accuracy. The CreditRiskMonitor FRISK Score EXECUTIVE SUMMARY

More information

Relative and absolute equity performance prediction via supervised learning

Relative and absolute equity performance prediction via supervised learning Relative and absolute equity performance prediction via supervised learning Alex Alifimoff aalifimoff@stanford.edu Axel Sly axelsly@stanford.edu Introduction Investment managers and traders utilize two

More information

Using survival models for profit and loss estimation. Dr Tony Bellotti Lecturer in Statistics Department of Mathematics Imperial College London

Using survival models for profit and loss estimation. Dr Tony Bellotti Lecturer in Statistics Department of Mathematics Imperial College London Using survival models for profit and loss estimation Dr Tony Bellotti Lecturer in Statistics Department of Mathematics Imperial College London Credit Scoring and Credit Control XIII conference August 28-30,

More information

Illustration Software Quick Start Guide

Illustration Software Quick Start Guide Illustration Software Quick Start Guide The illustration software is primarily designed to create an illustration that highlights the benefits of downside risk management and illustrates the effects of

More information

CUR 412: Game Theory and its Applications, Lecture 4

CUR 412: Game Theory and its Applications, Lecture 4 CUR 412: Game Theory and its Applications, Lecture 4 Prof. Ronaldo CARPIO March 22, 2015 Homework #1 Homework #1 will be due at the end of class today. Please check the website later today for the solutions

More information

REJECT INFERENCE FOR CREDIT ADJUDICATION

REJECT INFERENCE FOR CREDIT ADJUDICATION REJECT INFERENCE FOR CREDIT ADJUDICATION May 2014 THE SITUATION SOMEONE APPLIES FOR A LOAN AND A DECISION HAS TO BE MADE TO ACCEPT OR REJECT. THIS IS CREDIT ADJUDICATION IF WE ACCEPT WE CAN OBSERVE PERFORMANCE

More information

Validating TIP$TER Can You Trust Its Math?

Validating TIP$TER Can You Trust Its Math? Validating TIP$TER Can You Trust Its Math? A Series of Tests Introduction: Validating TIP$TER involves not just checking the accuracy of its complex algorithms, but also ensuring that the third party software

More information

Examining the Morningstar Quantitative Rating for Funds A new investment research tool.

Examining the Morningstar Quantitative Rating for Funds A new investment research tool. ? Examining the Morningstar Quantitative Rating for Funds A new investment research tool. Morningstar Quantitative Research 27 August 2018 Contents 1 Executive Summary 1 Introduction 2 Abbreviated Methodology

More information

DATA HANDLING Five-Number Summary

DATA HANDLING Five-Number Summary DATA HANDLING Five-Number Summary The five-number summary consists of the minimum and maximum values, the median, and the upper and lower quartiles. The minimum and the maximum are the smallest and greatest

More information

Implementing a New Credit Score in Lender Strategies

Implementing a New Credit Score in Lender Strategies SM DECEMBER 2014 Implementing a New Credit Score in Lender Strategies Contents The heart of the matter. 1 Why do default rates and population volumes vary by credit scores? 1 The process 2 Plug & Play

More information

Statistics & Flood Frequency Chapter 3. Dr. Philip B. Bedient

Statistics & Flood Frequency Chapter 3. Dr. Philip B. Bedient Statistics & Flood Frequency Chapter 3 Dr. Philip B. Bedient Predicting FLOODS Flood Frequency Analysis n Statistical Methods to evaluate probability exceeding a particular outcome - P (X >20,000 cfs)

More information

Percentiles, STATA, Box Plots, Standardizing, and Other Transformations

Percentiles, STATA, Box Plots, Standardizing, and Other Transformations Percentiles, STATA, Box Plots, Standardizing, and Other Transformations Lecture 3 Reading: Sections 5.7 54 Remember, when you finish a chapter make sure not to miss the last couple of boxes: What Can Go

More information

Copyright 2011 Pearson Education, Inc. Publishing as Addison-Wesley.

Copyright 2011 Pearson Education, Inc. Publishing as Addison-Wesley. Appendix: Statistics in Action Part I Financial Time Series 1. These data show the effects of stock splits. If you investigate further, you ll find that most of these splits (such as in May 1970) are 3-for-1

More information

To acquaint yourself with the practical applications of simulation methods.

To acquaint yourself with the practical applications of simulation methods. Unit 5 SIMULATION THEORY Lesson 40 Learning objectives: To acquaint yourself with the practical applications of simulation methods. Hello students, Now when you are aware of the methods of simulation and

More information

Characterization of Risky Projects based on Project Managers Evaluation

Characterization of Risky Projects based on Project Managers Evaluation Characterization of Risky Projects based on Project Managers Evaluation Osamu Mizuno Tohru Kikuno Osaka University, JAPAN Yasunari Takagi Keishi Sakamoto OMRON Corporation, JAPAN Outline Background and

More information

Loan Approval and Quality Prediction in the Lending Club Marketplace

Loan Approval and Quality Prediction in the Lending Club Marketplace Loan Approval and Quality Prediction in the Lending Club Marketplace Milestone Write-up Yondon Fu, Shuo Zheng and Matt Marcus Recap Lending Club is a peer-to-peer lending marketplace where individual investors

More information

Mountain High or Valley Low?

Mountain High or Valley Low? Mountain High or Valley Low? Key Considerations in Current SaaS Valuations It s one of the most persistent questions in the SaaS world: Does investing in growth at the expense of profitability impact valuation,

More information

ECS171: Machine Learning

ECS171: Machine Learning ECS171: Machine Learning Lecture 15: Tree-based Algorithms Cho-Jui Hsieh UC Davis March 7, 2018 Outline Decision Tree Random Forest Gradient Boosted Decision Tree (GBDT) Decision Tree Each node checks

More information