Predicting Average Basket Value

Size: px
Start display at page:

Download "Predicting Average Basket Value"

Transcription

1 Predicting Basket Value Business Analytics Using Data Mining Group 9A Aashish Sharma: Abhishek Agrawal: Saurabh Malhotra: Madhav Pathak: Madhur Chadha:

2 Table of Contents I. Executive Summary... 3 A. Problem Description... 3 B. Brief description of the data, its source, key characteristics, and chart(s)... 3 C. High level Description (Prediction Methodology)... 4 D. Technical Summary... 5 E. Performance Metrics... 5 F. Limitations... 6 G. Recommendations... 6 II. APPENDIX... 7 A. CART Model... 7 B. Multiple Regression Model... 8 C. KNN Model... 9 D. Naïve Model... 10

3 I. Executive Summary A. Problem Description Retailers spend a considerable amount of time, effort, and money to acquire a new customer. However once a customer has been acquired, the maximum value can only be derived if the customer becomes a repetitive buyer and his/her purchase amounts increase with time. Identifying which customer will qualify for a promotion is a key to this problem and our study makes an attempt to solve this issue. Our model predicts the future shopping basket value of a customer. Basis this prediction, every week top 10% customers will be identified and the store will the promotional discount coupons to these customers. Accuracy of model will be another deciding factor in the overall scheme of business strategy. A miss out on a probable loyal customer could impact the long term customer life time value associated. As the hypermarket, we are interested in predicting the average basket value of the next customer who walks in based on his/her demographic data as well as his previous purchase pattern prior to this visit B. Brief description of the data, its source, key characteristics, and chart(s) Transaction data for ABC that include information at SKU level customer ID, purchase date, extended price, quantity sold, item description, department, sub-department, class and subclass. Data are provided on a period of 13 months from Aug 2011 to Aug Customer demographic information has also been provided which includes enrolment date, date of birth, sex, marital status and customer IDs. Source: Data collected by Hansa Cequity Solutions Key Characteristics: The available data was at the SKU and customer level. However, we needed basket level data for our analysis. In order to efficiently filter and sort the data to make it suitable for basket level analysis, we used BASE SAS v9.1. Compiled data at the Basket level for each customer Merged customer information with the transactions data to get customer_id and transaction_data level data Computed the lagged (i.e. till previous purchase) Basket Price & Purchase Quantity for each customer at transaction level using all purchases prior to current transaction date Included 4 dummy variables in data set - Sex, Married, and Flag

4 Variables : Customer_No, Transaction_Date, Day of Week, Quantity_Sold, Extended_Price, Avg_Quantity_Sold_Lag, Avg_Ext_Price_Lag, Count_Footfall, Clean_ _Flag, Total_qty_sold_tilldate, Total_cart_value_tilldate, Sex_M, Mobile_Status, Married, Enrollment_Age,, Missing Values Handling: At summary level, approx ~4000 rows had SEX and MARITAL status missing. This subset of was removed for our analysis. This is done deliberately as we want to create a robust model for only those customers for which we have all the information captured (it will also prompt customers to provide information next time in order to avail discounts) C. High level Description (Prediction Methodology) Following three methods were used to analyze the data and to create the predictive model on the driver file (created above) Multiple Linear Regression: Y = *Day of week *Avg Ext Price (Lag) *Count (Footfall) *AGE *SEX_M *ENROLLMENT AGE *MARRIED *CLEAN_ _FLAG Naïve Forecast: (Benchmark): Y = * Avg. Ext Price_Lag k-nn Model: Input Variables: Day of Week, Avg_Ext_Price_Lag, Count_Footfall, AGE, SEX_M, ENROLLMENT_AGE, MARRIED (k=20) CART: Input Variables: Day of Week, Avg_Ext_Price_Lag, Count_Footfall, AGE, SEX_M, ENROLLMENT_AGE, MARRIED (best pruned one) The Appendix shows the model working and other technical details. Residuals Histogram for the above models-

5 D. Technical Summary The lift chart and RMSE were used to evaluate the performance of the models above. The lift charts are shown below followed by comparison of RMSE - Best Final CART Model (Pruned) E. Performance Metrics The cost of offering a discount to a customer whom the model predicted but actually is misclassified, is very negligible. The cost of not identifying a person through the model could be very high because the hypermarket might lose this customer s average basket value sales less the discount that would have been offered. Underlying assumption to this evaluation is that because of not offering the discount promotion to the correct customer, we have lost the opportunity to make the customer visit the store next time. Also, we are assuming that during the next purchase, this customer s basket size would approximately be equal to his average last purchase value (Naïve). This cost turns out to be ~Rs.500 per customer for each misclassification (weekly prediction Vs actual data analysis on misidentified customer set).

6 Also we cannot offer this promotion to every customer at the hypermarket, because by offering the promotion, the probability of re-visit increases tremendously, thus the discount hit would be much higher. metric for evaluation F. Limitations Macro-economic factors have been ignored for the purpose of building this model. To improve the prediction quality of the model, the hypermarket should further add more predictor variables by collecting information from the customers. Demographic data might be misleading as many customers might have one loyalty card per family that might be getting used by multiple members of the family. All customers will be given a loyalty card while he/she makes a purchase at the hypermarket. Two ways to measure the success of our proposal- % Increase in Sales and % increase in re-purchase rate for existing customers. Prerequisite for this benchmark: % increase in sales should be greater than 5% % increase in profitability: G. Recommendations We would recommend the hypermarket to adopt and deploy our CART model to predict the basket value for the next purchase. Using this model, hypermarket will be better able to identify top 10 percentile customers and incentivize them for more frequent visits as well as reward them for being loyal customers. Hypermarket should run this model weekly update the misclassification cost and take proactive actions in defining the probability of repeat purchase for all the discounts offered. Tracking of the actual increase in customer footfall will help hypermarket evaluate whether the strategy is actually translating into real values. This model should be updated on a real time basis since it extensively uses the prior purchase of these customers as an input variable Ideal measure but since data is not available we are not using this

7 II. APPENDIX A. CART Model Full Tree Rules (Using Training Data) #Decision Nodes 6 #Terminal Nodes 7 Level NodeID ParentID SplitVar SplitValue Cases LeftChild RightChild PredVal Node Type 0 0 N/A Ext_Price_Lag Decision Count_Footfall Decision N/A N/A 1102 N/A N/A Terminal 2 3 1OLLMENT_AGE Decision Ext_Price_Lag Decision Ext_Price_Lag Decision N/A N/A 1296 N/A N/A Terminal AGE Decision N/A N/A 1091 N/A N/A Terminal N/A N/A 1806 N/A N/A Terminal N/A N/A 1551 N/A N/A Terminal N/A N/A 1489 N/A N/A Terminal N/A N/A 1664 N/A N/A Terminal Pruned Tree Rules (Using Validation Data) #Decision Nodes 4 #Terminal Nodes 5 Level NodeID ParentID SplitVar SplitValue Cases LeftChild RightChild PredVal Node Type 0 0 N/A Ext_Price_Lag Decision Count_Footfall Decision N/A N/A 2945 N/A N/A Terminal 2 3 1OLLMENT_AGE Decision Ext_Price_Lag Decision N/A N/A 8518 N/A N/A Terminal N/A N/A 4322 N/A N/A Terminal N/A N/A 5390 N/A N/A Terminal N/A N/A 345 N/A N/A Terminal Training Data scoring - Summary Report (Using Full Tree) E E-07 Validation Data scoring - Summary Report (Using Prune Tree) E Test Data scoring - Summary Report (Using Prune Tree) E

8 We have checked multiple box plots to see how this model is doing with respect to various predictors. One of them Predictor value vs day of week is shown here B. Multiple Regression Model The Regression Model Input variables Constant term Day of Week Avg_Ext_Price_Lag Count_Footfall AGE SEX_M ENROLLMENT_AGE MARRIED CLEAN_ _FLAG Coefficient Std. p-value SS E+11 Residual df Multiple R Std. Dev. estimate Residual SS E Training Data scoring - Summary Report E Validation Data scoring - Summary Report E

9 Box plot: Predictor value vs day of week is shown here C. KNN Model Validation error log for different k Value of k Training Validation <--- Best k Training Data scoring - Summary Report (for k=20) Validation Data scoring - Summary Report (for k=20) E Test Data scoring - Summary Report (for k=20) E

10 Similar to MLR, the box plot of predicted value vs day of week is shown below- D. Naïve Model The Regression Model Input variables Constant term Avg_Ext_Price_Lag Training Data scoring - Summary Report Coefficient Std. p-value SS Residual df Multiple R- Std. Dev. estimate Residual SS 1.362E E-06 Validation Data scoring - Summary Report

Targeting, valuing, segmenting and loyalty techniques

Targeting, valuing, segmenting and loyalty techniques MIKEGRIGSBY ADVANCED CUSTOMER ANALYTICS Targeting, valuing, segmenting and loyalty techniques MARKETING SCIENCE SERIES A KoganPage CONTENTS 01 Overview 1 What is retail? 1 What is analytics? 2 Who is this

More information

Who Are My Best Customers?

Who Are My Best Customers? Technical report Who Are My Best Customers? Using SPSS to get greater value from your customer database Table of contents Introduction..............................................................2 Exploring

More information

Applying Regression Techniques For Predictive Analytics Paviya George Chemparathy

Applying Regression Techniques For Predictive Analytics Paviya George Chemparathy Applying Regression Techniques For Predictive Analytics Paviya George Chemparathy AGENDA 1. Introduction 2. Use Cases 3. Popular Algorithms 4. Typical Approach 5. Case Study 2016 SAPIENT GLOBAL MARKETS

More information

ASSIGNMENT SUBMISSION FORM

ASSIGNMENT SUBMISSION FORM ASSIGNMENT SUBMISSION FORM Course Name Section Project Report : Forecasting Analytics : A : Inventory Management through Sales Forecasting PGID Name of the Member 1. 61710012 Anand Abhishek 2. 61710773

More information

Chapter 5 Evaluating Classification & Predictive Performance

Chapter 5 Evaluating Classification & Predictive Performance Chapter 5 Evaluating Classification & Predictive Performance Data Mining for Business Intelligence Shmueli, Patel & Bruce Galit Shmueli and Peter Bruce 2010 Why Evaluate? Multiple methods are available

More information

Forecasting Daily Number of User Problem Reports of Junyi Academy for Efficient Staff Allocation

Forecasting Daily Number of User Problem Reports of Junyi Academy for Efficient Staff Allocation Forecasting Daily Number of User Problem Reports of Junyi Academy for Efficient Staff Allocation Group 7 104078515 Chiali 104078509 Sherry 105078514 Elisa 105078502 Emily 2017.1.3 Background Junyi Academy

More information

Using Decision Tree to predict repeat customers

Using Decision Tree to predict repeat customers Using Decision Tree to predict repeat customers Jia En Nicholette Li Jing Rong Lim Abstract We focus on using feature engineering and decision trees to perform classification and feature selection on the

More information

Nielsen Loyalty driving programs a new vision. ECR Baltic November 2011

Nielsen Loyalty driving programs a new vision. ECR Baltic November 2011 Nielsen Loyalty driving programs a new vision ECR Baltic November 2011 Topic of discussion: Retailers loyalty program Based on: Transaction log combined with Loyalty card data 2 Market Context - Key challenges

More information

The Business of Coupons-Do coupons lead to repeat purchases?

The Business of Coupons-Do coupons lead to repeat purchases? Pursuit - The Journal of Undergraduate Research at the University of Tennessee Volume 5 Issue 1 Article 14 June 2014 The Business of Coupons-Do coupons lead to repeat purchases? Margaret P. Ross University

More information

Harbingers of Failure: Online Appendix

Harbingers of Failure: Online Appendix Harbingers of Failure: Online Appendix Eric Anderson Northwestern University Kellogg School of Management Song Lin MIT Sloan School of Management Duncan Simester MIT Sloan School of Management Catherine

More information

Smart Rating for Electronic gadgets

Smart Rating for Electronic gadgets Smart Rating for Electronic gadgets BUSINESS ANALYTICS USING DATA MINING Deepanshu Saini 61310308 Rachna Lalwani 61310845 Saurabh Thaman 61310113 Vikramadith Raman 61310387 Jeevan Murthy 61310542 Karthik

More information

Price Arbitrage for Mom & Pop Store Product Traders

Price Arbitrage for Mom & Pop Store Product Traders Price Arbitrage for Mom & Pop Store Product Traders BADM Final Project Report Group 7B: Abhinav Verma (PGID: 61310725) Bhaskar Vedula (PGID: 61310424) Raphael Schilling (PGID: 61319001) Rhianna Prabhu

More information

3 Ways to Improve Your Targeted Marketing with Analytics

3 Ways to Improve Your Targeted Marketing with Analytics 3 Ways to Improve Your Targeted Marketing with Analytics Introduction Targeted marketing is a simple concept, but a key element in a marketing strategy. The goal is to identify the potential customers

More information

ATTRITION: THE SILENT KILLER

ATTRITION: THE SILENT KILLER ATTRITION: THE SILENT KILLER Executive Summary: Attrition is a key metric in the security industry. Your rate of attrition directly impacts the health, profitability, and ultimate value of your security

More information

Credit Card Marketing Classification Trees

Credit Card Marketing Classification Trees Credit Card Marketing Classification Trees From Building Better Models With JMP Pro, Chapter 6, SAS Press (2015). Grayson, Gardner and Stephens. Used with permission. For additional information, see community.jmp.com/docs/doc-7562.

More information

Harrington Collection

Harrington Collection Harrington Collection Assignment #2 Alan Wei Kang Liu - 100196797 2/12/2012 Instructor: Daniel Fawcett MRKT 3240 S10 Table of Contents Projected Impact of New Product Line Launch Active-wear... 3 Potential

More information

Segmentation and Targeting

Segmentation and Targeting Segmentation and Targeting Outline The segmentation-targeting-positioning (STP) framework Segmentation The concept of market segmentation Managing the segmentation process Deriving market segments and

More information

Segmentation and Targeting

Segmentation and Targeting Segmentation and Targeting Outline The segmentation-targeting-positioning (STP) framework Segmentation The concept of market segmentation Managing the segmentation process Deriving market segments and

More information

Magento Business Intelligence: The Essential Dashboards of Online Leaders

Magento Business Intelligence: The Essential Dashboards of Online Leaders Magento Business Intelligence: The Essential Dashboards of Online Leaders Page 2 Robert J. Moore Head of Magento Business Intelligence Twitter: @robertjmoore Page 3 Imagine Recap: MBI Essentials MBI Essentials

More information

Nothing can Build Sales and Profits like Adding Fuel!

Nothing can Build Sales and Profits like Adding Fuel! Nothing can Build Sales and Profits like Adding Fuel! Supermarkets have proven that adding fuel builds sales and profits better than anything else that can be done. Adding fuel also helps maximize property

More information

XXVI. OPTIMIZATION OF SKUS' LOCATIONS IN WAREHOUSE

XXVI. OPTIMIZATION OF SKUS' LOCATIONS IN WAREHOUSE XXVI. OPTIMIZATION OF SKUS' LOCATIONS IN WAREHOUSE David Sourek University of Pardubice, Jan Perner Transport Faculty Vaclav Cempirek University of Pardubice, Jan Perner Transport Faculty Abstract Many

More information

ZING YOUR LOYALTY & REFERRAL PROGRAMS TOP 10 BENEFITS FROM LOYALTY REWARDS PROGRAM

ZING YOUR LOYALTY & REFERRAL PROGRAMS TOP 10 BENEFITS FROM LOYALTY REWARDS PROGRAM ZING YOUR LOYALTY & REFERRAL PROGRAMS TOP 10 BENEFITS FROM LOYALTY REWARDS PROGRAM 102 Persian Drive Suite #101, Sunnyvale, CA 94089 +1 650-701-7759 www.zinrelo.com CONTENTS 1. DRIVE REPEAT SALES...3 1.1

More information

ELEVATING CONSUMER PROMOTIONS FOR RETAIL

ELEVATING CONSUMER PROMOTIONS FOR RETAIL SPOTLIGHT ON: ELEVATING CONSUMER PROMOTIONS FOR RETAIL DEVELOPING BETTER PROMOTIONAL STRATEGIES USING BASKET ANALYTICS INSIDE YOU LL FIND OUT: How excessive use of promotions can hurt retailers Best practices

More information

Data Mining and Knowledge Discovery

Data Mining and Knowledge Discovery Data Mining and Knowledge Discovery Petra Kralj Novak Petra.Kralj.Novak@ijs.si Practice, 2010/12/2 1 Practice plan 2010/11/25: Predictive data mining Decision trees Naïve Bayes classifier Evaluating classifiers

More information

WHY YOU SHOULDN T IGNORE COUPON SITES

WHY YOU SHOULDN T IGNORE COUPON SITES WHY YOU SHOULDN T IGNORE COUPON SITES A white paper exploring how coupon sites impact the consumer purchase journey CJ Insights 2013 CJ Affiliate by Conversant Table Of Contents Overview 2 Key Findings

More information

Getting Started with HLM 5. For Windows

Getting Started with HLM 5. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 About this Document... 3 1.2 Introduction to HLM... 3 1.3 Accessing HLM... 3 1.4 Getting Help with HLM... 3 Section 2: Accessing

More information

Advertising spending

Advertising spending Advertising spending Where is the ROI? Presented by: Anne- Marie Roerink 210 Analytics Kirk Clark Mitchell Grocery Neal Leonhardt Brookshire Grocery Tom O Reilly Aptaris 1 Advertising & Promotional Practices

More information

Predicting Subscriber Dissatisfaction and Improving Retention in the Wireless Telecommunications Industry

Predicting Subscriber Dissatisfaction and Improving Retention in the Wireless Telecommunications Industry Predicting Subscriber Dissatisfaction and Improving Retention in the Wireless Telecommunications Industry Michael C. Mozer + * Richard Wolniewicz* Robert Dodier* Lian Yan* David B. Grimes + * Eric Johnson*

More information

Churn Prevention in Telecom Services Industry- A systematic approach to prevent B2B churn using SAS

Churn Prevention in Telecom Services Industry- A systematic approach to prevent B2B churn using SAS Paper 1414-2017 Churn Prevention in Telecom Services Industry- A systematic approach to prevent B2B churn using SAS ABSTRACT Krutharth Peravalli, Dr. Dmitriy Khots West Corporation It takes months to find

More information

Predictive Modeling using SAS. Principles and Best Practices CAROLYN OLSEN & DANIEL FUHRMANN

Predictive Modeling using SAS. Principles and Best Practices CAROLYN OLSEN & DANIEL FUHRMANN Predictive Modeling using SAS Enterprise Miner and SAS/STAT : Principles and Best Practices CAROLYN OLSEN & DANIEL FUHRMANN 1 Overview This presentation will: Provide a brief introduction of how to set

More information

ASSIGNMENT SUBMISSION FORM

ASSIGNMENT SUBMISSION FORM ASSIGNMENT SUBMISSION FORM Treat this as the first page of your assignment Course Name: Assignment Title: Business Analytics using Data Mining Crowdanalytix - Predicting Churn/Non-Churn Status of a Consumer

More information

Jialu Yan, Tingting Gao, Yilin Wei Advised by Dr. German Creamer, PhD, CFA Dec. 11th, Forecasting Rossmann Store Sales Prediction

Jialu Yan, Tingting Gao, Yilin Wei Advised by Dr. German Creamer, PhD, CFA Dec. 11th, Forecasting Rossmann Store Sales Prediction Jialu Yan, Tingting Gao, Yilin Wei Advised by Dr. German Creamer, PhD, CFA Dec. 11th, 2015 Forecasting Rossmann Store Sales Prediction Problem Understanding It is very important for retail stores to save

More information

Customer Profitability Customer Lifetime Value (CLV), Customer Equity (CE), and Shareholder Value

Customer Profitability Customer Lifetime Value (CLV), Customer Equity (CE), and Shareholder Value BA 597: Customer Profitability Customer Lifetime Value (CLV), Customer Equity (CE), and Shareholder Value 1 Today s Agenda To discuss how to calculate customer lifetime value (CLV) To show how it is calculated

More information

CUSTOMER-CENTRIC MERCHANDISING. Customer-centric merchandising a pipe dream or imminent reality?

CUSTOMER-CENTRIC MERCHANDISING. Customer-centric merchandising a pipe dream or imminent reality? CUSTOMER-CENTRIC MERCHANDISING Customer-centric merchandising a pipe dream or imminent reality? page 1 The next great evolution in retailing The customer is always right went the old retail slogan, but

More information

Retail Sales BEST PRACTICES. A Collection of Best Practices for: Includes Detailed Best Practices for:

Retail Sales BEST PRACTICES. A Collection of Best Practices for: Includes Detailed Best Practices for: BEST PRACTICES A Collection of Best Practices for: Retail Sales Includes Detailed Best Practices for: - Merchandising - Store Planning - E-Commerce - Inventory Management - Store Operations www.opsdog.com

More information

DMSMS Lifetime Buy Characterization Via Data Mining of Historical Buys

DMSMS Lifetime Buy Characterization Via Data Mining of Historical Buys P. Sandborn, V. Prabhakar, and D. Feng, "DMSMS Lifetime Buy Characterization Via Data Mining of Historical Buys," Proceedings DMSMS Conference, Orlando, FL, November 2007. DMSMS Lifetime Buy Characterization

More information

Silky Silk & Cottony Cotton Corp

Silky Silk & Cottony Cotton Corp Silky Silk & Cottony Cotton Corp Business Optimization Exercise 2/9/2012 Data_Miners_Anonymous Naveen Kumar 61210144 Akshay Sethi 61210413 Karthik Vemparala 61210505 Sruthi Yalaka 61210416 Contents Executive

More information

2013: RETAIL TRENDS & DRIVERS OF CONSUMER PREFERENCES

2013: RETAIL TRENDS & DRIVERS OF CONSUMER PREFERENCES 2013: RETAIL TRENDS & DRIVERS OF CONSUMER PREFERENCES Steve Lutz January 31, 2013 AGENDA Presentation Overview Perishables Group Background Macro Trends Industry Trends to Consider Seafood Trends in Supermarkets

More information

Sage 300 Retail Management by InfoCentral

Sage 300 Retail Management by InfoCentral Sage 300 Retail Management by InfoCentral Sage 300 Retail Management by InfoCentral Sage 300 Retail Management is a fully featured Point of Sale Solution that offers tremendous flexibility and enables

More information

Approaching an Analytical Project. Tuba Islam, Analytics CoE, SAS UK

Approaching an Analytical Project. Tuba Islam, Analytics CoE, SAS UK Approaching an Analytical Project Tuba Islam, Analytics CoE, SAS UK Approaching an Analytical Project Starting with questions.. What is the problem you would like to solve? Why do you need analytics? Which

More information

Improve Alerting Accuracy

Improve Alerting Accuracy New Relic s Apdex-Driven Approach Honed by Big Data Table of Contents OVERVIEW 03 UNDERSTANDING WEB PERFORMANCE 04 A BETTER APPROACH TO ALERTING DRIVEN BY APDEX 06 GETTING STARTED WITH NEW RELIC ALERTING

More information

Top-down Forecasting Using a CRM Database Gino Rooney Tom Bauer

Top-down Forecasting Using a CRM Database Gino Rooney Tom Bauer Top-down Forecasting Using a CRM Database Gino Rooney Tom Bauer Abstract More often than not sales forecasting in modern companies is poorly implemented despite the wealth of data that is readily available

More information

13973 QT Retail Bro_v7 AA 10/01/ :57 Page 1 QT-6600 & QT EPoS Terminals. Outstanding solutions for the retail sector

13973 QT Retail Bro_v7 AA 10/01/ :57 Page 1 QT-6600 & QT EPoS Terminals. Outstanding solutions for the retail sector 13973 QT Retail Bro_v7 AA 10/01/2011 14:57 Page 1 QT-6600 & QT-6100 EPoS Terminals Outstanding solutions for the retail sector 13973 QT Retail Bro_v7 AA 10/01/2011 14:57 Page 2 QT-6600 & QT-6100 EPoS solutions

More information

Local Market Intelligence:

Local Market Intelligence: Local Market Intelligence: Store level insights for SMBs; distribution opportunities for partners 27 th February 2017 Delivering Insights for Impact Local Market Intelligence gives merchants a deep set

More information

TDWI strives to provide course books that are contentrich and that serve as useful reference documents after a class has ended.

TDWI strives to provide course books that are contentrich and that serve as useful reference documents after a class has ended. Previews of TDWI course books offer an opportunity to see the quality of our material and help you to select the courses that best fit your needs. The previews cannot be printed. TDWI strives to provide

More information

Ensemble Modeling. Toronto Data Mining Forum November 2017 Helen Ngo

Ensemble Modeling. Toronto Data Mining Forum November 2017 Helen Ngo Ensemble Modeling Toronto Data Mining Forum November 2017 Helen Ngo Agenda Introductions Why Ensemble Models? Simple & Complex ensembles Thoughts: Post-real-life Experimentation Downsides of Ensembles

More information

MARKETING COMMUNICATIONS SERIES EVENT PARTICIPANT INSTRUCTIONS

MARKETING COMMUNICATIONS SERIES EVENT PARTICIPANT INSTRUCTIONS CAREER CLUSTER Marketing CAREER PATHWAY Marketing Communications INSTRUCTIONAL AREA Information Management MARKETING COMMUNICATIONS SERIES EVENT PARTICIPANT INSTRUCTIONS The event will be presented to

More information

Coupon Voucher Server Guide. Campaign and Channel Management

Coupon Voucher Server Guide. Campaign and Channel Management Coupon Voucher Server Guide Campaign and Channel Management Table of Contents Coupon Voucher Server... 1 What is the Coupon Voucher Server?... 1 Architecture... 1 Web Portal Interface... 3 Terminology...

More information

2016 INFORMS International The Analytics Tool Kit: A Case Study with JMP Pro

2016 INFORMS International The Analytics Tool Kit: A Case Study with JMP Pro 2016 INFORMS International The Analytics Tool Kit: A Case Study with JMP Pro Mia Stephens mia.stephens@jmp.com http://bit.ly/1uygw57 Copyright 2010 SAS Institute Inc. All rights reserved. Background TQM

More information

CREDIT RISK MODELLING Using SAS

CREDIT RISK MODELLING Using SAS Basic Modelling Concepts Advance Credit Risk Model Development Scorecard Model Development Credit Risk Regulatory Guidelines 70 HOURS Practical Learning Live Online Classroom Weekends DexLab Certified

More information

Economic Analysis for Business and Strategic Decisions. The Fundamentals of Managerial Economics

Economic Analysis for Business and Strategic Decisions. The Fundamentals of Managerial Economics Economic Analysis for Business and Strategic Decisions Chapter 1: The Fundamentals of Managerial Economics 1. Define the concept of time value of money. 2. Recognize the difference between value maximization

More information

The Fallacy of the Net Promoter Score: Customer Loyalty Predictive Model. Mohamed Zaki, Dalia Kandeil, Andy Neely and Janet McColl-Kennedy

The Fallacy of the Net Promoter Score: Customer Loyalty Predictive Model. Mohamed Zaki, Dalia Kandeil, Andy Neely and Janet McColl-Kennedy The Fallacy of the Net Promoter Score: Customer Loyalty Predictive Model Mohamed Zaki, Dalia Kandeil, Andy Neely and Janet McColl-Kennedy Agenda Customer Loyalty Measurement NPS Critiques Research Framework

More information

Author please check for any updations

Author please check for any updations The Relationship Between Service Quality and Customer Satisfaction: An Empirical Study of the Indian Banking Industry Sunayna Khurana* In today s intense competitive business world, the customer is educated

More information

BIM. the way we see it. Mastering Retail. How the control of information is at the heart of a successful retail business

BIM. the way we see it. Mastering Retail. How the control of information is at the heart of a successful retail business BIM Mastering Retail How the control of information is at the heart of a successful retail business Control of Information is a Business Advantage in Retail Retail is a competitive business and in the

More information

Predictive Accuracy: A Misleading Performance Measure for Highly Imbalanced Data

Predictive Accuracy: A Misleading Performance Measure for Highly Imbalanced Data Paper 942-2017 Predictive Accuracy: A Misleading Performance Measure for Highly Imbalanced Data Josephine S Akosa, Oklahoma State University ABSTRACT The most commonly reported model evaluation metric

More information

POS Data and Your Demand Forecast

POS Data and Your Demand Forecast Available online at www.sciencedirect.com Procedia Computer Science 17 (2013 ) 8 13 Information Technology and Quantitative Management (ITQM2013) POS Data and Your Demand Forecast Jishan Zhu a * a School

More information

SNUG - 27TH FEBRUARY 2014 RETAIL MARKETING ANALYTICS OVERVIEW

SNUG - 27TH FEBRUARY 2014 RETAIL MARKETING ANALYTICS OVERVIEW SNUG - 27TH FEBRUARY 2014 RETAIL MARKETING ANALYTICS OVERVIEW WHO IS THIS GUY? Tim Manns a) Principal Analytics Consultant b) Since 1998 (employment history: Clementine/Modeler, SPSS, Optus, SAS) c) All

More information

WHITE PAPER. Eliminate Customer Thrashing: A Sure Fire Way to Lower Customer Effort

WHITE PAPER. Eliminate Customer Thrashing: A Sure Fire Way to Lower Customer Effort Eliminate Customer Thrashing: A Sure Fire Way to Lower Customer Effort August 2012 Executive Summary Customer Effort Score (CES) is the new hot metric for customer service. (CES) has been widely discussed

More information

CHAPTER V RESULT AND ANALYSIS

CHAPTER V RESULT AND ANALYSIS 39 CHAPTER V RESULT AND ANALYSIS In this chapter author will explain the research findings of the measuring customer loyalty through the role of customer satisfaction and the role of loyalty program quality

More information

Final Exam Spring Bread-and-Butter Edition

Final Exam Spring Bread-and-Butter Edition Final Exam Spring 1996 Bread-and-Butter Edition An advantage of the general linear model approach or the neoclassical approach used in Judd & McClelland (1989) is the ability to generate and test complex

More information

TERMS AND CONDITIONS. Schedule D: (Note: This document regulates the relationship between the

TERMS AND CONDITIONS. Schedule D: (Note: This document regulates the relationship between the TERMS AND CONDITIONS Schedule D: (Note: This document regulates the relationship between the INTELLIACC PROGRAM Members and the Store) LOYALTY MEMBERS TERMS & CONDITIONS (18 JUNE 2014 Latest update) We

More information

Retail Channel Management and Corporate Operations. Microsoft Dynamics AX 2012 R3

Retail Channel Management and Corporate Operations. Microsoft Dynamics AX 2012 R3 Retail Channel Management and Corporate Operations Microsoft Dynamics AX 2012 R3 Table of Contents Course Details 1 Prerequisites 2 Course Outline 3 Course Details This 2-day instructor-led training provides

More information

Company Presentation. Karsten Odemann, CFO. Munich, 19 September Baader Investment Conference

Company Presentation. Karsten Odemann, CFO. Munich, 19 September Baader Investment Conference Company Presentation Karsten Odemann, CFO Munich, 19 September 2017 1 Investment Summary: ADLER Modemärkte is well positioned to face short-term challenges and lift mid- to long-term potentials Assets

More information

2 Maria Carolina Monard and Gustavo E. A. P. A. Batista

2 Maria Carolina Monard and Gustavo E. A. P. A. Batista Graphical Methods for Classifier Performance Evaluation Maria Carolina Monard and Gustavo E. A. P. A. Batista University of São Paulo USP Institute of Mathematics and Computer Science ICMC Department of

More information

Key Drivers algorithm classifies the aspects measured in the survey into four categories

Key Drivers algorithm classifies the aspects measured in the survey into four categories Key Drivers Analysis There are probably many things you would like to improve about your organization. Since it is unlikely that you are going to get the resources to address them all, the challenge to

More information

HOW-TO GUIDE: 5 WAYS TO MEASURE THE BUSINESS IMPACT OF A LOYALTY PROGRAM

HOW-TO GUIDE: 5 WAYS TO MEASURE THE BUSINESS IMPACT OF A LOYALTY PROGRAM HOW-TO GUIDE: 5 WAYS TO MEASURE THE BUSINESS IMPACT OF A LOYALTY PROGRAM CONTENTS Introduction...3 Importance of Measuring Loyalty Programs...4 5 Loyalty Program Measurement Strategies...5 1. Create a

More information

Market Sentiment Helps Explain the Price of Bitcoin

Market Sentiment Helps Explain the Price of Bitcoin Market Sentiment Helps Explain the Price of Bitcoin Yoshiharu Sato http://yoshi2233.strikingly.com/ December 15 th, 2017 Abstract. A simple model that accurately explains the market price of Bitcoin (BTC)

More information

DATA ANALYTICS SERIES. Data Visualization Translating data into actionable insights for retailers

DATA ANALYTICS SERIES. Data Visualization Translating data into actionable insights for retailers DATA ANALYTICS SERIES Data Visualization Translating data into actionable insights for retailers June 2016 INTRODUCTION Data visualization is the presentation of data in a visual format. It allows users

More information

How to build and deploy machine learning projects

How to build and deploy machine learning projects How to build and deploy machine learning projects Litan Ilany, Advanced Analytics litan.ilany@intel.com Agenda Introduction Machine Learning: Exploration vs Solution CRISP-DM Flow considerations Other

More information

IBM SPSS Decision Trees

IBM SPSS Decision Trees IBM SPSS Decision Trees 20 IBM SPSS Decision Trees Easily identify groups and predict outcomes Highlights With SPSS Decision Trees you can: Identify groups, segments, and patterns in a highly visual manner

More information

Discovering Shopper Behavior Through New In-Store Metrics

Discovering Shopper Behavior Through New In-Store Metrics Discovering Shopper Behavior Through New In-Store Metrics Phase I: In-Store Traffic Analytics September 2013 September 2013 2013 Center for Advancing Retail & Technology LLC 1 Report Structure Section

More information

COMPILED BY 10/09/2014 JMP/LOGISTICS/UNIT I/RADHA IYER

COMPILED BY 10/09/2014 JMP/LOGISTICS/UNIT I/RADHA IYER DEMAND FORECASTING COMPILED BY RADHA IYER 1 What is demand forecasting? It is a tool which attempts to cope up with the uncertainty of the future. Starts with certain assumptions based on experience, knowledge

More information

Data Mining in CRM THE CRM STRATEGY

Data Mining in CRM THE CRM STRATEGY CHAPTER ONE Data Mining in CRM THE CRM STRATEGY Customers are the most important asset of an organization. There cannot be any business prospects without satisfied customers who remain loyal and develop

More information

DATA ANALYTICS WITH R, EXCEL & TABLEAU

DATA ANALYTICS WITH R, EXCEL & TABLEAU Learn. Do. Earn. DATA ANALYTICS WITH R, EXCEL & TABLEAU COURSE DETAILS centers@acadgild.com www.acadgild.com 90360 10796 Brief About this Course Data is the foundation for technology-driven digital age.

More information

Tao of Shop Admin User Guide

Tao of Shop Admin User Guide Tao of Shop Admin User Guide Contents Engage... 2 1. Create new post... 2 2. Create new coupon... 6 3. Edit coupon... 9 4. Publishing a Private Post via Customer Import... 11 5. Adding Product Links within

More information

Promotion Profitability

Promotion Profitability Promotion Profitability This module covers the concepts of baseline sales, incremental sales, promotional lift, return on marketing investment (ROMI), coupon redemption and passthrough percentages on promotions.

More information

Gift & Loyalty Cards

Gift & Loyalty Cards Gift & Loyalty Cards Business Development Our Gift & Loyalty card program will afford you one of the most powerful and profitable tools to grow your business on a daily basis. Let our systems do the work

More information

Step-by-step CRM data analytics for sales teams. How to go beyond metrics and find actionable insights to improve sales performance

Step-by-step CRM data analytics for sales teams. How to go beyond metrics and find actionable insights to improve sales performance Step-by-step CRM data analytics for sales teams How to go beyond metrics and find actionable insights to improve sales performance On average, On average, Finding insights is hard don t make it any harder

More information

Chapter 13 Knowledge Discovery Systems: Systems That Create Knowledge

Chapter 13 Knowledge Discovery Systems: Systems That Create Knowledge Chapter 13 Knowledge Discovery Systems: Systems That Create Knowledge Becerra-Fernandez, et al. -- Knowledge Management 1/e -- 2007 Prentice Hall Chapter Objectives To explain how knowledge is discovered

More information

Functional Guide for the Promotion Calculation Engine

Functional Guide for the Promotion Calculation Engine Promotion Calculation Engine Document Version: 1.0 2017-12-01 SAP Customer Activity Repository 3.0 FP2 Typographic Conventions Type Style Example Description Words or characters quoted from the screen.

More information

PRACTICE ANALYSIS. Test Blueprint. Practice Analysis. Reporting Letter/Data Merge Data Setup and Maintenance

PRACTICE ANALYSIS. Test Blueprint. Practice Analysis. Reporting Letter/Data Merge Data Setup and Maintenance Practice Analysis Test Blueprint Practice Analysis Reporting Letter/Data Merge Data Setup and Maintenance Overview Who should take the Practice Analysis test? Office managers or administrators. Team members

More information

Timing Production Runs

Timing Production Runs Class 7 Categorical Factors with Two or More Levels 189 Timing Production Runs ProdTime.jmp An analysis has shown that the time required in minutes to complete a production run increases with the number

More information

Role of Inventory in the Supply Chain. Inventory categories. Inventory management

Role of Inventory in the Supply Chain. Inventory categories. Inventory management Inventory management Role of Inventory in the Supply Chain Improve Matching of Supply and Demand Improved Forecasting Reduce Material Flow Time Reduce Waiting Time Reduce Buffer Inventory Economies of

More information

Advancement/Development

Advancement/Development Understanding Advancement/Development Reporting Session Goals Reporting Basics What Makes a Great Reporting Environment Key Performance Indicators The Future of Reporting What was 4.5 Thick Prospecting

More information

CUSTOMER RETENTION PLAN TEMPLATE AND WORKBOOK NOTES AND TAKEAWAYS.

CUSTOMER RETENTION PLAN TEMPLATE AND WORKBOOK NOTES AND TAKEAWAYS. Once you ve acquired a new customer, the battle isn t finished. You need to secure that customer for life. Consumers are well educated on their choices and prepared to take their business elsewhere. If

More information

Right Customers. Nurturing the COVER STORY. By measuring and improving Customer Lifetime Value, you ll be able to grow your most profitable customers.

Right Customers. Nurturing the COVER STORY. By measuring and improving Customer Lifetime Value, you ll be able to grow your most profitable customers. By measuring and improving Customer Lifetime Value, you ll be able to grow your most profitable customers. Nurturing the Right Customers By V. Kumar and Bharath Rajan Companies often measure their success

More information

Chapter 3. Integrating AHP, clustering and association rule mining

Chapter 3. Integrating AHP, clustering and association rule mining Chapter 3. Integrating AHP, clustering and association rule mining This chapter presents a novel product recommendation methodology that combines group decision-making and data mining. This method has

More information

Differences Between High-, Medium-, and Low-Profit Cow-Calf Producers: An Analysis of Kansas Farm Management Association Cow-Calf Enterprise

Differences Between High-, Medium-, and Low-Profit Cow-Calf Producers: An Analysis of Kansas Farm Management Association Cow-Calf Enterprise Differences Between High-, Medium-, and Low-Profit Cow-Calf Producers: An Analysis of 2012-2016 Kansas Farm Management Association Cow-Calf Enterprise Dustin L. Pendell (dpendell@ksu.edu) and Kevin L.

More information

NCOVER. ROI Analysis for. Using NCover. NCover P.O. Box 9298 Greenville, SC T F

NCOVER. ROI Analysis for. Using NCover. NCover P.O. Box 9298 Greenville, SC T F NCOVER ROI Analysis for Test Coverage Using NCover NCover P.O. Box 9298 Greenville, SC 29601 T 864.990.3717 F 864.341.8312 conversation@ncover.com www.ncover.com Table of Contents Executive Summary 2 Cost

More information

IBM SPSS Forecasting 19

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

More information

Whitepaper on Material Yield Variance Sub-System

Whitepaper on Material Yield Variance Sub-System Whitepaper on Material Yield Variance Sub-System Header Fields Create a multi-divisional material variance tracking system One set of "source" code Standard terminology across divisions Support KPI - "key

More information

Data Science using SAS & R A comprehensive, job-oriented training program crafted by experts

Data Science using SAS & R A comprehensive, job-oriented training program crafted by experts Data Science using SAS & R A comprehensive, job-oriented training program crafted by experts Disclaimer: This material is protected under copyright act AnalytixLabs, 2011-2016. Unauthorized use and/ or

More information

EXAMINATION MANUAL. Contents : Introduction. Pre Examination Requisites. At the Examination Centre. Post Examination. Examination Preparation Tips

EXAMINATION MANUAL. Contents : Introduction. Pre Examination Requisites. At the Examination Centre. Post Examination. Examination Preparation Tips EXAMINATION MANUAL Contents : Introduction Pre Examination Requisites At the Examination Centre Post Examination Examination Preparation Tips Sample Questions Introduction: Confederation of Indian Industry

More information

Predicting the present with Google Trends. -Hyunyoung Choi -Hal Varian

Predicting the present with Google Trends. -Hyunyoung Choi -Hal Varian Predicting the present with Google Trends -Hyunyoung Choi -Hal Varian Outline Problem Statement Goal Methodology Analysis and Forecasting Evaluation Applications and Examples Summary and Future work Problem

More information

Customer Relationship Management in marketing programs: A machine learning approach for decision. Fernanda Alcantara

Customer Relationship Management in marketing programs: A machine learning approach for decision. Fernanda Alcantara Customer Relationship Management in marketing programs: A machine learning approach for decision Fernanda Alcantara F.Alcantara@cs.ucl.ac.uk CRM Goal Support the decision taking Personalize the best individual

More information

A Retail Merchant Loyalty Program

A Retail Merchant Loyalty Program A Retail Merchant Loyalty Program Table of Content A Retail Merchant Community Slides 3 4 2014 Loyalty Strategy Slides 5 11 Suggested Systematic Marketing Campaign Calendar Slides 12 13 New Services we

More information

Implementing Predictive Analytics to Generate Big Win s for Trading Partners

Implementing Predictive Analytics to Generate Big Win s for Trading Partners Implementing Predictive Analytics to Generate Big Win s for Trading Partners Richard Althoff, Founder Sequoya Analytics & Eric Nordquist, Partner - Sequoya Analytics Our Morning Agenda This session will

More information

Sisel KAFFE Compensation Plan. ThE TASTE OF SUCCESS

Sisel KAFFE Compensation Plan. ThE TASTE OF SUCCESS Sisel KAFFE Compensation Plan ThE TASTE OF SUCCESS Sisel International, LLC February, 2014 Introducing Sisel Kaffé Global Compensation Plan Getting Started Global Compensation Plan 2 Fast Start Bonus

More information