Improving Retention by Predicting Both Who and Why

Size: px
Start display at page:

Download "Improving Retention by Predicting Both Who and Why"

Transcription

1 Improving Retention by Predicting Both Who and Why Ward Thomas, Euro RSCG Discovery, Richmond, VA ABSTRACT Customer attrition is a significant issue in many industries such as financial services, wireless, healthcare, and insurance. As companies work to acquire greater market share, they must also focus on customer retention in order to sustain that growth. To support customer retention efforts, organizations can apply data mining to behavior patterns of customers who remain loyal and those who defect. Predictive models can be built to periodically and systematically score customers for their likelihood to leave. Armed with this insight, firms can target their retention marketing budget to those customers with the greatest attrition risk. This is the traditional approach to answering the question, Who? is likely to leave. However, when faced with the question of Why?, satisfaction studies and/or focus groups are commonly conducted in order to learn why customers are dissatisfied. Then, these findings are universally applied to all customers and addressed in an effort to mitigate attrition. This paper introduces a methodology for how an attrition model can be used to identify not only who is likely to leave, but what the most significant risks are for each customer. Therefore, in a sense, a target audience selection model can be used to answer two key questions for marketing decision support: Who? and Why? INTRODUCTION The purpose of this paper is to demonstrate how a predictive attrition model can be used to estimate the likelihood of customer defection, and isolate key attrition risk factors for each customer. The paper begins with an explanation of how to collect data for and develop an attrition model. It then provides details on how the model can be dissected to derive unique attrition risk factors for each customer. The paper concludes with an explanation of how the attrition model and its risk factor insights can be translated into a retention marketing effort, and tested for effectiveness. All procedures will be illustrated using SAS BASE and STAT, and as such, the paper assumes a general knowledge of SAS syntax in order to understand the content. This presentation will focus on using SAS PROC LOGISTIC to develop the attrition model and subsequently scrutinize the results at an individual level to isolate the attrition drivers. ATTRITION MODELING MOTIVATION Customer attrition, also called churn, or defection, is a major business issue for organizations to address. It is crucial to maintain and grow customer relationships in order to sustain profitable growth. As companies pursue new customers through acquisition marketing efforts, existing customer attrition undermines that growth. Unchecked, customer attrition can create a leaky bucket scenario, whereby new customers poured into the business are insufficient to offset the outflow of customers from the business. Exacerbating the problem of customer attrition are the financial implications of acquisition cost and change in customer value over time. It s much cheaper to keep a customer than acquire a new one is a marketing axiom that has been quantified as 3 times up to 10 times more expensive to acquire a new customer, depending upon industry vertical. Additionally, customer value often increases over time, as new customers progress from initial trial to more lucrative relationships. This progression is catalyzed by up-sell and cross-sell marketing campaigns. Up-sell campaigns attempt to migrate customers into more valuable products or services. Cross-sell campaigns encourage customers to choose a broader array of products and services. Losing these more valuable customers makes it that much more difficult to compensate with new customer acquisition. Figure 1: Customer Segmentation for Attrition Marketing If we could identify which customers were most likely to leave, we could focus our efforts on retaining them proactively. In this illustration, commonly used as a customer retention segmentation framework, the horizontal dimension scales customer value from lowest to highest, while the vertical dimension scales customer attrition risk from lowest to highest. The resulting four quadrants have unique marketing imperatives, from Agressively Retain to Divest. Aggressively Retain: Customers who are both valuable and likely to leave should be given priority, with communications and service that address their needs. Maintain: Customers who are valuable with lower attrition risk should also be managed well with effective customer service, 1

2 but warrant less aggressive retention messaging. Grow: Customers who are less valuable but also less likely to attrite, should be actively up-sold and cross-sold to increase their value to the organization. Divest: Finally, customers who are less valuable and likely to attrite should receive a degree of communications designed to engender value and loyalty, but do not warrant significant marketing investment. DATA PREPARATION In an attrition modeling project, it is critical to work with subject matter experts to gather their hypotheses for attrition behavioral relationships. It is then essential to work with data owners to ensure that all available variables are assembled and that true leading indicators of attrition are identified. Variables that represent subject matter expert hypotheses should be created, as well as any appropriate variable derivations such as ratios or trends. Looking back at historic loyal and disloyal customers to re-create the past often presents problems such as overwritten data that may bias the results of the analysis. It is necessary to operationally define attrition, and structure the data to support its prediction. Attrition differs by industry and circumstance, and can be either active or passive in nature. Active attrition results when a customer does not renew a contract, cancels an account, or makes an observable, point-in-time choice. Passive attrition occurs when a customer stops transacting, or lapses into inactivity. In either case, an historic timeline can be established to study the leading indicators of attrition. As shown in Figure #2 below, observing customer behavior over a length of time prior to the attrition event observation window is the first time interval. The second time period that should be considered is a dark period, simulating the time during which the attrition model will be applied to the customer base and pre-emptive retention marketing communications delivered to stem attrition, prior to the attrition event observation window. The length of this window should be dictated by operational realities including database update periodicity and marketing channel execution times. For example, an could be sent or a customer service call made in a short time, whereas a direct mail package may take weeks to produce and deliver through the postal system. Finally, the attrition event observation window is the time period in which customers in the study are determined to attrite or remain loyal. Again, this could entail classifying customers based on whether or not they renew contracts, cancel their accounts, or begin a period of inactivity that is deemed by subject matter experts to be indefinite, and therefore synonymous with attrition. Figure 2: Attrition Model Development Data Timeline Once attrition has been defined and a timeline established for historic analysis, the next step is to consider what data exists for use in making the prediction. Best practice is to cast a wide net at this stage, considering all data being collected and already accessible within the organization. Dimensions of predictors include: RFM: Recency-Frequency-Monetary Value metrics, derived via transaction dates and spending amounts. This fundamental concept will likely be the backbone of any predictive customer model. Transactional detail: beyond RFM, transactional details include item(s) purchased, payment method, and channel (e.g., instore, online, mail order, etc.) Customer service: interactions customers have had, including dates, call durations, and disposition codes relating to issues presented and how they were resolved Surveys: satisfaction surveys or other attitudinal information collected from customers through various channels may also be considered providing that responses have been collected on a sufficient proportion of the customer base to actionably scale. 2

3 ATTRITION MODELING Once the data has been thoroughly and accurately prepared, keeping the subject matter expert hypotheses in mind, exploratory data analysis and predictive modeling can ensue. Many different algorithms can be applied to study attrition behavior including logistic regression, neural networks, decision trees, or survival analysis. This paper will use SAS PROC LOGISTIC to develop the attrition model and subsequently scrutinize the results at an individual level to isolate attrition drivers. Exploratory data analysis (EDA) methods such as random dataset partitioning, correcting for outliers, missing value imputation, non-linear transformations and interaction terms are best practices that should be followed prior to developing the final predictive model. Explanation of how to apply these techniques is beyond the scope of this paper. Once EDA is complete, candidate variables for attrition prediction can be submitted to SAS PROC LOGISTIC for model development. The basic SAS code framework for the procedure is as follows: ods output ParameterEstimates=Parms; proc logistic data=libname.filename descending; model attrition = var1 var_2 var_n; output out=pred (keep=customerid attrition pred var1 var2 var_n) pred=pred; ods output close; Features of this code that are of interest include the output statement, which is invoked to capture the parameter estimates along with the predicted values and independent variables in output datasets. Once this code has been run, the pred dataset can be manipulated to evaluate model performance. Typically, this is accomplished by sorting the probabilities from high to low, dividing the customers into ten equally-sized groups called deciles, such that ten percent of the customer base is contained in each decile, and observing model performance in terms of attrition rate by decile. proc rank data=pred groups=10 out=pred descending; var pred; ranks decile; data pred; set pred; decile=decile+1; proc means data=pred n mean sum; var attrition; class decile; Figure 3: Attrition Model Decile Analysis The above graph illustrates typical attrition model performance when studied through the lens of a decile analysis. If the model is performing as expected, actual attrition rates will decline from highest to lowest from decile 1 (most likely to attrite) to decile 10 (lease likely to attrite). Clearly this is true in the example in Figure 3: with an overall attrition rate of 3.5%, and a top decile attrition rate of 14%, customers in decile 1 are at 4 times greater risk than average. The curve slopes consistently down to nearly 0% attrition rate in the 10 th decile, where the model s prediction is lowest. Note that best practice is to conduct the above analysis on a customer sample that was held out from model development. This is accomplished by building the model on a development sample, then scoring a held-out validation sample, sorting, slicing into deciles, and measuring actual attrition rate vis a 3

4 vis the model s predictions. The purpose of the validation sample is to ensure that the model is robust, not over-fitting spurious relationships found only in the development sample. After the attrition model is built and validated, the business has a means of ranking customers by their likelihood to attrite at an individual level. Along with a measure of customer value, this enables the business to segment customers into the fourquadrant framework illustrated in Figure 1. IDENTIFYING ATTRITION RISK FACTORS Typically, a predictive attrition model is applied to identify a target audience, which is a crucial factor in the success of any retention marketing campaign. Normally, a single version of an anti-attrition message is extended to any customer who scores above a certain threshold. However, using a predictive model to differentiate the types of customers who score above that threshold to enable more relevant communications to each type is an approach which extends the model s value and application. Often, model deciles are studied to yield insight into the characteristics of customers in each. In the table below, means for each decile across hypothetical attrition model variables are presented: Figure 4: Attrition Model Decile Profile The table illustrates that customers who are most likely to attrite have the shortest tenure, have lapsed the longest, have made the most customer service calls, purchased in the fewest product categories, and at the highest discount. They are also the youngest customers with the highest percentage of single marital status. These central tendencies give the business a notion of the type of customer who is at greatest attrition risk, and can plan marketing interventions accordingly in terms of offers, creative/tone, and channel. However, not all at-risk customers are the same. Despite this overall attrition profile, even customers in Decile 1 have different reasons for their high scores. After all, a decile is a collective group of individuals, whose similar scores have been derived in myriad ways based on their unique characteristics. Figure 5: Individual at-risk customers Customer A is at risk due to short tenure, high discounts, young age, and single marital status. Customer B is at risk due to a long lapse and narrow product range. 4

5 Customer C is at risk due to frequent customer service calls. In all of these examples, customers score in the top 10% of attrition risk, but the characteristics that led to their scores are distinct, and warrant unique marketing intervention. If it were possible to systematically differentiate these high-risk customers based on their particular risk factors, the business could address their needs individually, and therefore make retention communications more effective at stemming attrition. Computationally, the following progression yields estimates of individual-level risk factors: This is the general form of the logistic regression model, with the probability of the event, y, as a function of independent variables, x. For individual j, this expression quantifies the contribution of the value for any given independent variable, x i to the probability of the event y. This expression quantifies the average contribution of any given independent variable x i to the probability of the event y. Finally, differencing the prior two expression outcomes yields the relative risk posed to customer j by his/her value of independent variable x i. It is important to subtract the average contribution to the probability of attrition for each independent variable, because all variables make a positive contribution to attrition probability, even if they are below average. For example, there will be a positive coefficient for the variable, days since last transaction, such that the more days of inactivity have elapsed, the greater the likelihood of attrition. However, if a customer has been inactive for 5 days, whereas the average number of days since last transaction is 30, that customer is actually much less likely to attrite than average, and therefore, days since last transaction should not be deemed a risk factor. SAS datastep programming for conducting these manipulations is as follows: proc sql noprint; select Estimate into: est_var_1 from Parms where Variable='var_1'; select Estimate into: est_var_2 from Parms where Variable='var_2'; select Estimate into: est_var_n from Parms where Variable='var_n'; quit; data pred; set pred; xbeta_var_1 = &est_var_1. * var_1; xbeta_var_2 = &est_var_2. * var_2; xbeta_var_n = &est_var_n. * var_n; prob_var_1=1/(1+exp(-xbeta_var_1)); 5

6 prob_var_2=1/(1+exp(-xbeta_var_2)); prob_var_n=1/(1+exp(-xbeta_var_n)); proc sql; select mean(prob_var_1), mean(prob_var_2), mean(prob_var_n) into :mean_var_1, :mean_var_2, :mean_var_n from pred; quit; data pred1(keep=customerid diff_prob:); set pred; diff_prob_var_1 = prob_var_1 - &mean_var_1.; diff_prob_var_2 = prob_var_2 - &mean_var_2.; diff_prob_var_n = prob_var_n - &mean_var_n.; proc sort data=pred1; by customerid; proc transpose data=pred1 out=pred2; by customerid; proc sort data=pred2; by customerid descending col1; data pred2; set pred2; by customerid descending col1; if first.customerid then rank=0; rank+1; _NAME_=tranwrd(_NAME_, "diff_prob_", ""); proc transpose data=pred2 out=pred2(drop=_name_); by customerid; var rank; Figure 6: Attrition Risk Factor Rankings Armed with contributions and ranks for each independent variable for each customer, several types of diagnostic analyses can be performed to inform retention marketing decisions: First, frequency distributions can be studied to evaluate which variables are the most prevalent in raising attrition risk. Just knowing which factors are most common can enable an organization to adjust policies and communicate those changes effectively to the most vulnerable customers to reduce attrition. In the graph above, transaction lapse, short tenure, and high discount levels are the top three attrition primary risk factors. Second, ranked attrition factors can be listed for each customer along with commensurate retention marketing tactics. These business rules can be deployed in different customer interaction settings such as the call center, point-of-sale, or online. 6

7 Figure 7: Individual Customer Retention Strategies TESTING AND DEPLOYING CUSTOMIZED ATTRITION MARKETING Before a tailored attrition marketing system can be deployed within an organization, two key research questions must be answered: 1. Does the attrition model accurately identify customers at risk of defection? 2. Does customized messaging reduce attrition more than a standard message? TESTING THE ATTRITION MODEL To partially answer the first question, a holdout sample was used for model validation to guard against overfitting. However, additional, go-forward evaluation of the model s predictive accuracy is necessary to determine if it is robust in the face of evolving market dynamics. By continuing to track attrition rates by decile, an organization can ensure the attrition model s accuracy. If rates begin to differ from model predictions, model refinements or complete refreshes may be warranted. It is important to actively maintain a model for it to perform at peak efficiency. TESTING CUSTOMIZED ATTRITION MARKETING Once the model is found to be accurate over time, the second question can be addressed with in-market testing. Experimental design methodology should be applied to assess the effectiveness of customized retention marketing efforts relative to standard retention marketing efforts. To be specific, based on the expected attrition rate and minimally acceptable rate reduction, customized and standard communication sample sizes can be estimated using SAS PROC POWER. These customer groups can then be followed through a marketing campaign cycle to quantify the impact of customized retention marketing initiatives. proc power ; TwoSamplefreq Alpha =.05 Sides = 1 refproportion=.05 proportiondiff=0.005 groupns= to by Power =.; 7

8 In the above example, a two-independent-sample proportion test is being conducted. Confidence is set at the standard 95% level, and the test is 1-sided since the hypothesis is that customized retention marketing will outperform standard messaging. An expected attrition rate is input, as well as an incremental difference in attrition rate. Then, in an attempt to maximize the number of customers receiving customized marketing treatment, the groupns statement will return power levels for each accompanying sample size allocated to the standard marketing treatment. Essentially, this search will determine how to allocate customers into the two marketing treatment groups in order to achieve statistical standards of confidence and power. GENERALIZING THE APPROACH Since logistic regression can be employed to predict any marketing event (e.g., response, cross-sell, etc.), the methodology described in this paper can be applied to myriad marketing problems. For example, a response model can identify who is likely to respond, say, decile 1, and then be dissected among these individuals to identify different reasons for the response behavior that can be capitalized upon through marketing customization. The features and benefits of the product or service being promoted can be positioned differently according to the response drivers unique to each individual. Presented with a more relevant offer, consumers may be more likely to make a purchase accordingly. Incremental response rate due to offer customization can then be quantified through the application of sound experimental design as illustrated in the attrition case. CONCLUSION In summary, the organization will be armed with a model that estimates the probability of attrition for each customer on the database. Customer-level reasons for attrition risk will also then be available as a derivative of the predictive modeling effort. These reasons can be distributed overall to identify areas for the organization to address. They can be ranked for each customer along with appropriate retention messaging to form business rules for subsequent customer interactions. And, they can be used in a multivariate setting to derive clusters of customers that warrant unique retention marketing communication strategies. Experimental design can then be leveraged to quantify the impact that the combination of target audience identification, reason detection, and commensurate retention marketing initiatives have on stemming attrition behavior. Understanding which valuable customers are most likely to leave, and why they are at risk, yields a best practice decision support platform for an organization to minimize customer attrition. ACKNOWLEDGMENTS The author would like to thank Euro RSCG Discovery colleagues Stephen Easter and Vishal Patel who contributed statistical and SAS syntax expertise to the content of this paper. CONTACT INFORMATION Your comments and questions are valued and encouraged. Contact the author at: Ward Thomas Euro RSCG Discovery 4490 Cox Rd Glen Allen, VA Work Phone: ward.thomas@eurorscg.com SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. indicates USA registration. Other brand and product names are registered trademarks or trademarks of their respective companies. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 8

Easily Identify Your Best Customers

Easily Identify Your Best Customers IBM SPSS Statistics Easily Identify Your Best Customers Use IBM SPSS predictive analytics software to gain insight from your customer database Contents: 1 Introduction 2 Exploring customer data Where do

More information

Customer Segmentation and Predictive Modeling It s not an either / or decision.

Customer Segmentation and Predictive Modeling It s not an either / or decision. WHITEPAPER SEPTEMBER 2007 Mike McGuirk Vice President, Behavioral Sciences 35 CORPORATE DRIVE, SUITE 100, BURLINGTON, MA 01803 T 781 494 9989 F 781 494 9766 WWW.IKNOWTION.COM PAGE 2 A baseball player would

More information

Applying Customer Attitudinal Segmentation to Improve Marketing Campaigns Wenhong Wang, Deluxe Corporation Mark Antiel, Deluxe Corporation

Applying Customer Attitudinal Segmentation to Improve Marketing Campaigns Wenhong Wang, Deluxe Corporation Mark Antiel, Deluxe Corporation Applying Customer Attitudinal Segmentation to Improve Marketing Campaigns Wenhong Wang, Deluxe Corporation Mark Antiel, Deluxe Corporation ABSTRACT Customer segmentation is fundamental for successful marketing

More information

Modeling Customer Lifetime Value Using Survival Analysis An Application in the Telecommunications Industry

Modeling Customer Lifetime Value Using Survival Analysis An Application in the Telecommunications Industry Paper 12028 Modeling Customer Lifetime Value Using Survival Analysis An Application in the Telecommunications Industry Junxiang Lu, Ph.D. Overland Park, Kansas ABSTRACT Increasingly, companies are viewing

More information

DISCOVER MERCHANT PREDICTOR MODEL

DISCOVER MERCHANT PREDICTOR MODEL DISCOVER MERCHANT PREDICTOR MODEL A Proactive Approach to Merchant Retention Welcome to Different. A High-Level View of Merchant Attrition It s a well-known axiom of business that it costs a lot more to

More information

Get Better Business Results

Get Better Business Results Get Better Business Results From the Four Stages of Your Customer Lifecycle Stage 1 Acquisition A white paper from Identify Unique Needs and Opportunities at Each Lifecycle Stage It s a given that having

More information

Predicting Customer Churn in the Telecommunications Industry An Application of Survival Analysis Modeling Using SAS

Predicting Customer Churn in the Telecommunications Industry An Application of Survival Analysis Modeling Using SAS Paper 114-27 Predicting Customer in the Telecommunications Industry An Application of Survival Analysis Modeling Using SAS Junxiang Lu, Ph.D. Sprint Communications Company Overland Park, Kansas ABSTRACT

More information

Data Mining with SAS. Mathias Lanner mathias.lanner@swe.sas.com. Copyright 2010 SAS Institute Inc. All rights reserved.

Data Mining with SAS. Mathias Lanner mathias.lanner@swe.sas.com. Copyright 2010 SAS Institute Inc. All rights reserved. Data Mining with SAS Mathias Lanner mathias.lanner@swe.sas.com Copyright 2010 SAS Institute Inc. All rights reserved. Agenda Data mining Introduction Data mining applications Data mining techniques SEMMA

More information

IBM SPSS Direct Marketing 23

IBM SPSS Direct Marketing 23 IBM SPSS Direct Marketing 23 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 23, release

More information

IBM SPSS Direct Marketing 22

IBM SPSS Direct Marketing 22 IBM SPSS Direct Marketing 22 Note Before using this information and the product it supports, read the information in Notices on page 25. Product Information This edition applies to version 22, release

More information

Improve Marketing Campaign ROI using Uplift Modeling. Ryan Zhao http://www.analyticsresourcing.com

Improve Marketing Campaign ROI using Uplift Modeling. Ryan Zhao http://www.analyticsresourcing.com Improve Marketing Campaign ROI using Uplift Modeling Ryan Zhao http://www.analyticsresourcing.com Objective To introduce how uplift model improve ROI To explore advanced modeling techniques for uplift

More information

Data Mining from A to Z: Better Insights, New Opportunities WHITE PAPER

Data Mining from A to Z: Better Insights, New Opportunities WHITE PAPER Data Mining from A to Z: Better Insights, New Opportunities WHITE PAPER SAS White Paper Table of Contents Introduction.... 1 How Do Predictive Analytics and Data Mining Work?.... 2 The Data Mining Process....

More information

How Organisations Are Using Data Mining Techniques To Gain a Competitive Advantage John Spooner SAS UK

How Organisations Are Using Data Mining Techniques To Gain a Competitive Advantage John Spooner SAS UK How Organisations Are Using Data Mining Techniques To Gain a Competitive Advantage John Spooner SAS UK Agenda Analytics why now? The process around data and text mining Case Studies The Value of Information

More information

Customer retention. Case study. Executive summary. General issue

Customer retention. Case study. Executive summary. General issue Case study Customer retention Executive summary The client, the life insurance division of a leading Australian bank, was struggling to retain its customers. Customer lapse rates were running significantly

More information

Easily Identify the Right Customers

Easily Identify the Right Customers PASW Direct Marketing 18 Specifications Easily Identify the Right Customers You want your marketing programs to be as profitable as possible, and gaining insight into the information contained in your

More information

Insurance customer retention and growth

Insurance customer retention and growth IBM Software Group White Paper Insurance Insurance customer retention and growth Leveraging business analytics to retain existing customers and cross-sell and up-sell insurance policies 2 Insurance customer

More information

Explode Six Direct Marketing Myths

Explode Six Direct Marketing Myths White Paper Explode Six Direct Marketing Myths Maximize Campaign Effectiveness with Analytic Technology Table of contents Introduction: Achieve high-precision marketing with analytics... 2 Myth #1: Simple

More information

How To Transform Customer Service With Business Analytics

How To Transform Customer Service With Business Analytics IBM Software Business Analytics Customer Service Transforming customer service with business analytics 2 Transforming customer service with business analytics Contents 2 Overview 2 Customer service is

More information

Hyper-targeted. Customer Retention with Customer360

Hyper-targeted. Customer Retention with Customer360 Hyper-targeted Customer Retention with Customer360 According to a study by the Association of Consumer Research, customer attrition or churn in retail is as high as 20 percent. What this means is that

More information

Modeling Lifetime Value in the Insurance Industry

Modeling Lifetime Value in the Insurance Industry Modeling Lifetime Value in the Insurance Industry C. Olivia Parr Rud, Executive Vice President, Data Square, LLC ABSTRACT Acquisition modeling for direct mail insurance has the unique challenge of targeting

More information

Data Analytical Framework for Customer Centric Solutions

Data Analytical Framework for Customer Centric Solutions Data Analytical Framework for Customer Centric Solutions Customer Savviness Index Low Medium High Data Management Descriptive Analytics Diagnostic Analytics Predictive Analytics Prescriptive Analytics

More information

Raising the Bar of Customer Loyalty Programs

Raising the Bar of Customer Loyalty Programs Raising the Bar of Customer Loyalty Programs Identifying Your Best Customers and Driving Their Most Profitable Behavior by Carlos Dunlap, Vice President, Strategic Services, Maritz Loyalty Marketing A

More information

Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing. C. Olivia Rud, VP, Fleet Bank

Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing. C. Olivia Rud, VP, Fleet Bank Data Mining: An Overview of Methods and Technologies for Increasing Profits in Direct Marketing C. Olivia Rud, VP, Fleet Bank ABSTRACT Data Mining is a new term for the common practice of searching through

More information

Accurately and Efficiently Measuring Individual Account Credit Risk On Existing Portfolios

Accurately and Efficiently Measuring Individual Account Credit Risk On Existing Portfolios Accurately and Efficiently Measuring Individual Account Credit Risk On Existing Portfolios By: Michael Banasiak & By: Daniel Tantum, Ph.D. What Are Statistical Based Behavior Scoring Models And How Are

More information

Managing Customer Retention

Managing Customer Retention Customer Relationship Management - Managing Customer Retention CRM Seminar SS 04 Professor: Assistent: Handed in by: Dr. Andreas Meier Andreea Iona Eric Fehlmann Av. Général-Guisan 46 1700 Fribourg eric.fehlmann@unifr.ch

More information

WHITEPAPER. How to Credit Score with Predictive Analytics

WHITEPAPER. How to Credit Score with Predictive Analytics WHITEPAPER How to Credit Score with Predictive Analytics Managing Credit Risk Credit scoring and automated rule-based decisioning are the most important tools used by financial services and credit lending

More information

Data Mining Applications in Higher Education

Data Mining Applications in Higher Education Executive report Data Mining Applications in Higher Education Jing Luan, PhD Chief Planning and Research Officer, Cabrillo College Founder, Knowledge Discovery Laboratories Table of contents Introduction..............................................................2

More information

The New Physics of Customer Loyalty

The New Physics of Customer Loyalty The New Physics of Customer Loyalty Manage Customer Migration Based on the Loyalty Profile of Your Customer Base McKinsey Marketing Practice Overview Today s rapidly changing competitive arena has caused

More information

Behavioral Segmentation

Behavioral Segmentation Behavioral Segmentation TM Contents 1. The Importance of Segmentation in Contemporary Marketing... 2 2. Traditional Methods of Segmentation and their Limitations... 2 2.1 Lack of Homogeneity... 3 2.2 Determining

More information

OPTIMIZING YOUR MARKETING STRATEGY THROUGH MODELED TARGETING

OPTIMIZING YOUR MARKETING STRATEGY THROUGH MODELED TARGETING OPTIMIZING YOUR MARKETING STRATEGY THROUGH MODELED TARGETING 1 Introductions An insights-driven customer engagement firm Analytics-driven Marketing ROI focus Direct mail optimization 1.5 Billion 1:1 pieces

More information

Analyzing Customer Churn in the Software as a Service (SaaS) Industry

Analyzing Customer Churn in the Software as a Service (SaaS) Industry Analyzing Customer Churn in the Software as a Service (SaaS) Industry Ben Frank, Radford University Jeff Pittges, Radford University Abstract Predicting customer churn is a classic data mining problem.

More information

ElegantJ BI. White Paper. The Competitive Advantage of Business Intelligence (BI) Forecasting and Predictive Analysis

ElegantJ BI. White Paper. The Competitive Advantage of Business Intelligence (BI) Forecasting and Predictive Analysis ElegantJ BI White Paper The Competitive Advantage of Business Intelligence (BI) Forecasting and Predictive Analysis Integrated Business Intelligence and Reporting for Performance Management, Operational

More information

Uniphore Software Systems Contact: info@uniphore.com Website: www.uniphore.com 1

Uniphore Software Systems Contact: info@uniphore.com Website: www.uniphore.com 1 Uniphore Software Systems Contact: info@uniphore.com Website: www.uniphore.com 1 Table of Contents Introduction... 3 Problem... 3 Solution... 5 Speech Analytics... 5 Effectiveness of speech analytics...

More information

WHITEPAPER. Creating and Deploying Predictive Strategies that Drive Customer Value in Marketing, Sales and Risk

WHITEPAPER. Creating and Deploying Predictive Strategies that Drive Customer Value in Marketing, Sales and Risk WHITEPAPER Creating and Deploying Predictive Strategies that Drive Customer Value in Marketing, Sales and Risk Overview Angoss is helping its clients achieve significant revenue growth and measurable return

More information

Overview, Goals, & Introductions

Overview, Goals, & Introductions Improving the Retail Experience with Predictive Analytics www.spss.com/perspectives Overview, Goals, & Introductions Goal: To present the Retail Business Maturity Model Equip you with a plan of attack

More information

Taking A Proactive Approach To Loyalty & Retention

Taking A Proactive Approach To Loyalty & Retention THE STATE OF Customer Analytics Taking A Proactive Approach To Loyalty & Retention By Kerry Doyle An Exclusive Research Report UBM TechWeb research conducted an online study of 339 marketing professionals

More information

Applied Data Mining Analysis: A Step-by-Step Introduction Using Real-World Data Sets

Applied Data Mining Analysis: A Step-by-Step Introduction Using Real-World Data Sets Applied Data Mining Analysis: A Step-by-Step Introduction Using Real-World Data Sets http://info.salford-systems.com/jsm-2015-ctw August 2015 Salford Systems Course Outline Demonstration of two classification

More information

Potential Value of Data Mining for Customer Relationship Marketing in the Banking Industry

Potential Value of Data Mining for Customer Relationship Marketing in the Banking Industry Advances in Natural and Applied Sciences, 3(1): 73-78, 2009 ISSN 1995-0772 2009, American Eurasian Network for Scientific Information This is a refereed journal and all articles are professionally screened

More information

HOW CAN CABLE COMPANIES DELIGHT THEIR CUSTOMERS?

HOW CAN CABLE COMPANIES DELIGHT THEIR CUSTOMERS? HOW CAN CABLE COMPANIES DELIGHT THEIR CUSTOMERS? Many customers do not love their cable companies. Advanced analytics and causal modeling can discover why, and help to figure out cost-effective ways to

More information

Prediction of Stock Performance Using Analytical Techniques

Prediction of Stock Performance Using Analytical Techniques 136 JOURNAL OF EMERGING TECHNOLOGIES IN WEB INTELLIGENCE, VOL. 5, NO. 2, MAY 2013 Prediction of Stock Performance Using Analytical Techniques Carol Hargreaves Institute of Systems Science National University

More information

Customer Perception and Reality: Unraveling the Energy Customer Equation

Customer Perception and Reality: Unraveling the Energy Customer Equation Paper 1686-2014 Customer Perception and Reality: Unraveling the Energy Customer Equation Mark Konya, P.E., Ameren Missouri; Kathy Ball, SAS Institute ABSTRACT Energy companies that operate in a highly

More information

Direct Marketing Profit Model. Bruce Lund, Marketing Associates, Detroit, Michigan and Wilmington, Delaware

Direct Marketing Profit Model. Bruce Lund, Marketing Associates, Detroit, Michigan and Wilmington, Delaware Paper CI-04 Direct Marketing Profit Model Bruce Lund, Marketing Associates, Detroit, Michigan and Wilmington, Delaware ABSTRACT A net lift model gives the expected incrementality (the incremental rate)

More information

IBM SPSS Direct Marketing

IBM SPSS Direct Marketing IBM Software IBM SPSS Statistics 19 IBM SPSS Direct Marketing Understand your customers and improve marketing campaigns Highlights With IBM SPSS Direct Marketing, you can: Understand your customers in

More information

Seven ways to boost customer loyalty and profitability through an empowered contact center

Seven ways to boost customer loyalty and profitability through an empowered contact center Seven ways to boost customer loyalty and profitability through an empowered contact center Is your bank using today s communications technology to its full potential? The financial services industry as

More information

PROFITABLE CUSTOMER ENGAGEMENT Concepts, Metrics & Strategies

PROFITABLE CUSTOMER ENGAGEMENT Concepts, Metrics & Strategies PROFITABLE CUSTOMER ENGAGEMENT Concepts, Metrics & Strategies V. Kumar Dr V.Kumar Chapter 4 Valuing customer contributions The future looks green!!! Instructor s Presentation Slides 2 Traditional measures

More information

How To Use Social Media To Improve Your Business

How To Use Social Media To Improve Your Business IBM Software Business Analytics Social Analytics Social Business Analytics Gaining business value from social media 2 Social Business Analytics Contents 2 Overview 3 Analytics as a competitive advantage

More information

TABLE OF CONTENTS. Introduction: 3. Finding #1: Organizations are currently using a wide variety of contact channels to interact with customers 5

TABLE OF CONTENTS. Introduction: 3. Finding #1: Organizations are currently using a wide variety of contact channels to interact with customers 5 TABLE OF CONTENTS Introduction: 3 Finding #1: Organizations are currently using a wide variety of contact channels to interact with customers 5 Finding #2: Most organizations do not believe their current

More information

A Marketer s Guide to Analytics

A Marketer s Guide to Analytics A Marketer s Guide to Analytics Using Analytics to Make Smarter Marketing Decisions and Maximize Results WHITE PAPER SAS White Paper Table of Contents Executive Summary.... 1 The World of Marketing Is

More information

Justifying Marketing Automation and Pilot Program

Justifying Marketing Automation and Pilot Program Introduction Marketing automation - is the name given to software platforms designed for marketing departments and organizations to simplify processes by automating repetitive tasks. Marketing departments

More information

IBM SPSS Direct Marketing 19

IBM SPSS Direct Marketing 19 IBM SPSS Direct Marketing 19 Note: Before using this information and the product it supports, read the general information under Notices on p. 105. This document contains proprietary information of SPSS

More information

Nine Common Types of Data Mining Techniques Used in Predictive Analytics

Nine Common Types of Data Mining Techniques Used in Predictive Analytics 1 Nine Common Types of Data Mining Techniques Used in Predictive Analytics By Laura Patterson, President, VisionEdge Marketing Predictive analytics enable you to develop mathematical models to help better

More information

Redefining Customer Analytics

Redefining Customer Analytics SAP Brief SAP Customer Engagement Intelligence Objectives Redefining Customer Analytics Making personalized connections with customers in real time Making personalized connections with customers in real

More information

Five predictive imperatives for maximizing customer value

Five predictive imperatives for maximizing customer value Five predictive imperatives for maximizing customer value Applying predictive analytics to enhance customer relationship management Contents: 1 Introduction 4 The five predictive imperatives 13 Products

More information

Best Practices for Relationship Marketing

Best Practices for Relationship Marketing WebTrends 851 SW 6th Ave., Suite 600 Portland, OR 97204 1.503.294.7025 1.503.294.7130 fax US Toll Free 1-877-WebTrends (1-877-932-8736) WebTrends Sales 1.888.932.8736 sales@webtrends.com Europe, Middle

More information

How To Analyze Customer Experience

How To Analyze Customer Experience Customer Experience Analytics By eloyalty s Marketing Solutions Service Line 9.16.2003 OPTIMIZING CUSTOMER INTERACTIONS Customer Experience Analytics Abstract This paper will describe a method of quantifying

More information

Minimize customer churn with analytics

Minimize customer churn with analytics IBM Software Business Analytics Telecommunications Minimize customer churn with analytics Understand who s likely to churn and take action with IBM software 2 Minimize customer churn with analytics Contents

More information

An Application of the Cox Proportional Hazards Model to the Construction of Objective Vintages for Credit in Financial Institutions, Using PROC PHREG

An Application of the Cox Proportional Hazards Model to the Construction of Objective Vintages for Credit in Financial Institutions, Using PROC PHREG Paper 3140-2015 An Application of the Cox Proportional Hazards Model to the Construction of Objective Vintages for Credit in Financial Institutions, Using PROC PHREG Iván Darío Atehortua Rojas, Banco Colpatria

More information

Data Mining Techniques Chapter 4: Data Mining Applications in Marketing and Customer Relationship Management

Data Mining Techniques Chapter 4: Data Mining Applications in Marketing and Customer Relationship Management Data Mining Techniques Chapter 4: Data Mining Applications in Marketing and Customer Relationship Management Prospecting........................................................... 2 DM to choose the right

More information

Maximizing the ROI Of Visual Rules

Maximizing the ROI Of Visual Rules Table of Contents Introduction... 3 Decision Management... 3 Decision Discovery... 4 Decision Services... 6 Decision Analysis... 11 Conclusion... 12 About Decision Management Solutions... 12 Acknowledgements

More information

Banking Analytics Training Program

Banking Analytics Training Program Training (BAT) is a set of courses and workshops developed by Cognitro Analytics team designed to assist banks in making smarter lending, marketing and credit decisions. Analyze Data, Discover Information,

More information

Revenue Enhancement and Churn Prevention

Revenue Enhancement and Churn Prevention Revenue Enhancement and Churn Prevention for Telecom Service Providers A Telecom Event Analytics Framework to Enhance Customer Experience and Identify New Revenue Streams www.wipro.com Anindito De Senior

More information

GUIDE TO THE. 12 Must-Have KPIs for Sales Enablement

GUIDE TO THE. 12 Must-Have KPIs for Sales Enablement GUIDE TO THE 12 Must-Have KPIs for Sales Enablement Introduction Key Performance Indicators (KPIs) are a set of metrics that measure a business s progress towards achieving their organizational goals.

More information

Data Mining Methods: Applications for Institutional Research

Data Mining Methods: Applications for Institutional Research Data Mining Methods: Applications for Institutional Research Nora Galambos, PhD Office of Institutional Research, Planning & Effectiveness Stony Brook University NEAIR Annual Conference Philadelphia 2014

More information

Five Predictive Imperatives for Maximizing Customer Value

Five Predictive Imperatives for Maximizing Customer Value Executive Brief Five Predictive Imperatives for Maximizing Customer Value Applying Predictive Analytics to enhance customer relationship management Table of contents Executive summary...2 The five predictive

More information

Maximize customer value and reduce costs and risk

Maximize customer value and reduce costs and risk Maximize customer value and reduce costs and risk companies around the world face the same challenges: How can they lower costs while increasing profitability? Improve efficiency? Identify, attract and

More information

Paper AA-08-2015. Get the highest bangs for your marketing bucks using Incremental Response Models in SAS Enterprise Miner TM

Paper AA-08-2015. Get the highest bangs for your marketing bucks using Incremental Response Models in SAS Enterprise Miner TM Paper AA-08-2015 Get the highest bangs for your marketing bucks using Incremental Response Models in SAS Enterprise Miner TM Delali Agbenyegah, Alliance Data Systems, Columbus, Ohio 0.0 ABSTRACT Traditional

More information

Business Case for Smart Care Software Product Portfolio

Business Case for Smart Care Software Product Portfolio Business Case for Smart Care Software Product Portfolio Contents Company Overview... 3 Growing Challenges with Mobile Device Support... 3 Solution... 4 Privacy and Security... 6 Financial Benefits... 7

More information

Improving the Performance of Data Mining Models with Data Preparation Using SAS Enterprise Miner Ricardo Galante, SAS Institute Brasil, São Paulo, SP

Improving the Performance of Data Mining Models with Data Preparation Using SAS Enterprise Miner Ricardo Galante, SAS Institute Brasil, São Paulo, SP Improving the Performance of Data Mining Models with Data Preparation Using SAS Enterprise Miner Ricardo Galante, SAS Institute Brasil, São Paulo, SP ABSTRACT In data mining modelling, data preparation

More information

Measuring How. with Your Brand: Brand Engagement Monitor. A Database Marketing Agency

Measuring How. with Your Brand: Brand Engagement Monitor. A Database Marketing Agency Measuring How Consumers Interact with Your Brand: Brand Engagement Monitor M er kl e Tho u g ht L eader s hip S e r i e s A Database Marketing Agency Executive Summary: Marketers face a challenging new

More information

COMPARISONS OF CUSTOMER LOYALTY: PUBLIC & PRIVATE INSURANCE COMPANIES.

COMPARISONS OF CUSTOMER LOYALTY: PUBLIC & PRIVATE INSURANCE COMPANIES. 277 CHAPTER VI COMPARISONS OF CUSTOMER LOYALTY: PUBLIC & PRIVATE INSURANCE COMPANIES. This chapter contains a full discussion of customer loyalty comparisons between private and public insurance companies

More information

Myth or Fact: The Diminishing Marginal Returns of Variable Creation in Data Mining Solutions

Myth or Fact: The Diminishing Marginal Returns of Variable Creation in Data Mining Solutions Myth or Fact: The Diminishing Marginal Returns of Variable in Data Mining Solutions Data Mining practitioners will tell you that much of the real value of their work is the ability to derive and create

More information

"SEO vs. PPC The Final Round"

SEO vs. PPC The Final Round "SEO vs. PPC The Final Round" A Research Study by Engine Ready, Inc. Examining The Role Traffic Source Plays in Visitor Purchase Behavior January 2008 Table of Contents Introduction 3 Definitions 4 Methodology

More information

Three proven methods to achieve a higher ROI from data mining

Three proven methods to achieve a higher ROI from data mining IBM SPSS Modeler Three proven methods to achieve a higher ROI from data mining Take your business results to the next level Highlights: Incorporate additional types of data in your predictive models By

More information

Alex Vidras, David Tysinger. Merkle Inc.

Alex Vidras, David Tysinger. Merkle Inc. Using PROC LOGISTIC, SAS MACROS and ODS Output to evaluate the consistency of independent variables during the development of logistic regression models. An example from the retail banking industry ABSTRACT

More information

TIBCO Industry Analytics: Consumer Packaged Goods and Retail Solutions

TIBCO Industry Analytics: Consumer Packaged Goods and Retail Solutions TIBCO Industry Analytics: Consumer Packaged Goods and Retail Solutions TIBCO s robust, standardsbased infrastructure technologies are used by successful retailers around the world, including five of the

More information

KnowledgeSTUDIO HIGH-PERFORMANCE PREDICTIVE ANALYTICS USING ADVANCED MODELING TECHNIQUES

KnowledgeSTUDIO HIGH-PERFORMANCE PREDICTIVE ANALYTICS USING ADVANCED MODELING TECHNIQUES HIGH-PERFORMANCE PREDICTIVE ANALYTICS USING ADVANCED MODELING TECHNIQUES Translating data into business value requires the right data mining and modeling techniques which uncover important patterns within

More information

Introduction to Successful Association Data Mining

Introduction to Successful Association Data Mining Introduction Introduction to Successful Association Data Mining Data mining has resulted from the recent convergence of large databases of customer or member information, high speed computer technology

More information

KnowledgeSEEKER Marketing Edition

KnowledgeSEEKER Marketing Edition KnowledgeSEEKER Marketing Edition Predictive Analytics for Marketing The Easiest to Use Marketing Analytics Tool KnowledgeSEEKER Marketing Edition is a predictive analytics tool designed for marketers

More information

Assessing the Economic Value of Making the Right Customer Satisfaction Decisions and the Impact of Dissatisfaction on Churn

Assessing the Economic Value of Making the Right Customer Satisfaction Decisions and the Impact of Dissatisfaction on Churn Assessing the Economic Value of Making the Right Customer Satisfaction Decisions and the Impact of Dissatisfaction on Churn By Joel Barbier, Andy Noronha, and Amitabh Dixit, Cisco Internet Business Solutions

More information

Data Mining Algorithms Part 1. Dejan Sarka

Data Mining Algorithms Part 1. Dejan Sarka Data Mining Algorithms Part 1 Dejan Sarka Join the conversation on Twitter: @DevWeek #DW2015 Instructor Bio Dejan Sarka (dsarka@solidq.com) 30 years of experience SQL Server MVP, MCT, 13 books 7+ courses

More information

10 Strategies for an Award-winning Onboarding Process

10 Strategies for an Award-winning Onboarding Process 10 Strategies for an Award-winning Onboarding Process WHITE PAPER MARKETING SERVICES In December 2011, Harland Clarke Marketing Services received the prestigious Gold Award for Marketing Strategies from

More information

Predictive Analytics for Database Marketing

Predictive Analytics for Database Marketing Predictive Analytics for Database Marketing Jarlath Quinn Analytics Consultant Rachel Clinton Business Development www.sv-europe.com FAQ s Is this session being recorded? Yes Can I get a copy of the slides?

More information

Risk pricing for Australian Motor Insurance

Risk pricing for Australian Motor Insurance Risk pricing for Australian Motor Insurance Dr Richard Brookes November 2012 Contents 1. Background Scope How many models? 2. Approach Data Variable filtering GLM Interactions Credibility overlay 3. Model

More information

Product recommendations and promotions (couponing and discounts) Cross-sell and Upsell strategies

Product recommendations and promotions (couponing and discounts) Cross-sell and Upsell strategies WHITEPAPER Today, leading companies are looking to improve business performance via faster, better decision making by applying advanced predictive modeling to their vast and growing volumes of data. Business

More information

Predicting & Preventing Banking Customer Churn by Unlocking Big Data

Predicting & Preventing Banking Customer Churn by Unlocking Big Data Predicting & Preventing Banking Customer Churn by Unlocking Big Data Making Sense of Big Data http://www.ngdata.com Predicting & Preventing Banking Customer Churn by Unlocking Big Data 1 Predicting & Preventing

More information

Virtual Site Event. Predictive Analytics: What Managers Need to Know. Presented by: Paul Arnest, MS, MBA, PMP February 11, 2015

Virtual Site Event. Predictive Analytics: What Managers Need to Know. Presented by: Paul Arnest, MS, MBA, PMP February 11, 2015 Virtual Site Event Predictive Analytics: What Managers Need to Know Presented by: Paul Arnest, MS, MBA, PMP February 11, 2015 1 Ground Rules Virtual Site Ground Rules PMI Code of Conduct applies for this

More information

Customer Lifecycle Management How Infogix Helps Enterprises Manage Opportunity and Risk throughout the Customer Lifecycle

Customer Lifecycle Management How Infogix Helps Enterprises Manage Opportunity and Risk throughout the Customer Lifecycle Customer Lifecycle Management How Infogix Helps Enterprises Manage Opportunity and Risk throughout the Customer Lifecycle Analytics can be a sustained competitive differentiator for any industry. Embedding

More information

THE ORGANIZER S ROLE IN DRIVING EXHIBITOR ROI A Consultative Approach

THE ORGANIZER S ROLE IN DRIVING EXHIBITOR ROI A Consultative Approach 7 Hendrickson Avenue, Red Bank, NJ 07701 800.224.3170 732.741.5704 Fax www.exhibitsurveys.com White Paper THE ORGANIZER S ROLE IN DRIVING EXHIBITOR ROI A Consultative Approach Prepared for the 2014 Exhibition

More information

The Power of Personalizing the Customer Experience

The Power of Personalizing the Customer Experience The Power of Personalizing the Customer Experience Creating a Relevant Customer Experience from Real-Time, Cross-Channel Interaction WHITE PAPER SAS White Paper Table of Contents The Marketplace Today....1

More information

How To Get More Business From Big Data And Analytics

How To Get More Business From Big Data And Analytics ACQUIRE, GROW & RETAIN CUSTOMERS: The Business Imperative for BIG DATA & ANALYTICS INSIDESSS Introduction Page 2 The Four Benefits Page 3 Make Your Business Big Data & Analytics Driven Page 4 Acquire Page

More information

Pr(e)-CRM: Supercharging Your E- Business CRM Strategy

Pr(e)-CRM: Supercharging Your E- Business CRM Strategy Pr(e)-CRM: Supercharging Your E- Business CRM Strategy Presented by: Michael MacKenzie Chairman, Chief Research Officer Mike.Mackenzie@ConvergZ.com Michael Doucette President Mike.Doucette@ConvergZ.com

More information

Marketing Advanced Analytics. Predicting customer churn. Whitepaper

Marketing Advanced Analytics. Predicting customer churn. Whitepaper Marketing Advanced Analytics Predicting customer churn Whitepaper Churn prediction The challenge of predicting customers churn It is between five and fifteen times more expensive for a company to gain

More information

STATISTICA. Financial Institutions. Case Study: Credit Scoring. and

STATISTICA. Financial Institutions. Case Study: Credit Scoring. and Financial Institutions and STATISTICA Case Study: Credit Scoring STATISTICA Solutions for Business Intelligence, Data Mining, Quality Control, and Web-based Analytics Table of Contents INTRODUCTION: WHAT

More information

Solutions. Payments Performance Management Thought Leadership and Payments Consulting

Solutions. Payments Performance Management Thought Leadership and Payments Consulting Solutions Payments Performance Management Thought Leadership and Payments Consulting Solutions Payments Performance Management consulting services from Fiserv offer thought leadership and payments business

More information

Predicting & Preventing Banking Customer Churn by Unlocking Big Data

Predicting & Preventing Banking Customer Churn by Unlocking Big Data Predicting & Preventing Banking Customer Churn by Unlocking Big Data Customer Churn: A Key Performance Indicator for Banks In 2012, 50% of customers, globally, either changed their banks or were planning

More information

Achieving customer loyalty with customer analytics

Achieving customer loyalty with customer analytics IBM Software Business Analytics Customer Analytics Achieving customer loyalty with customer analytics 2 Achieving customer loyalty with customer analytics Contents 2 Overview 3 Using satisfaction to drive

More information

Successful marketing in today s challenging insurance environment. Acquire new customers. Postal databases

Successful marketing in today s challenging insurance environment. Acquire new customers. Postal databases CONSUMER INFORMATION SOLUTIONS Insurance Successful marketing in today s challenging insurance environment With more options available to your customers and more businesses competing for those customers,

More information

Role of Customer Response Models in Customer Solicitation Center s Direct Marketing Campaign

Role of Customer Response Models in Customer Solicitation Center s Direct Marketing Campaign Role of Customer Response Models in Customer Solicitation Center s Direct Marketing Campaign Arun K Mandapaka, Amit Singh Kushwah, Dr.Goutam Chakraborty Oklahoma State University, OK, USA ABSTRACT Direct

More information

Customer Segmentation and Profitability

Customer Segmentation and Profitability Customer Segmentation and Profitability Building Loyal, Profitable Customers S O L U T I O N P A P E R : FINANCIAL SERVICES SOLUTION PAPER: FINANCIAL SERVICES Customer Segmentation and Profitability Building

More information