SlideShare a Scribd company logo
Data Mining
Techniques for CRM
B.SHYAAMINI
(11MCM043)
2
“The key in business is to know something that nobody
else knows.”
— Aristotle Onassis
“To understand is to perceive patterns.”
— Sir Isaiah Berlin
Data Mining Motivation
3
Data Mining Applications
4
Data Mining Applications:
RETAIL:
 Performing basket analysis
 Sales forecasting
 Database marketing
 Merchandise planning and allocation
BANKING:
 Fraud detection
 Card marketing
TELECOMMUNICATION:
 Call detail record analysis
 Customer loyalty
CRM Life Cycle:
5
6
Data Mining in CRM:
Customer Life Cycle
 Customer Life Cycle
 The stages in the relationship between a customer
and a business
 Key stages in the customer lifecycle
 Prospects: people who are not yet customers but are
in the target market
 Responders: prospects who show an interest in a
product or service
 Active Customers: people who are currently using
the product or service
 Former Customers: may be “bad” customers who
did not pay their bills or who incurred high costs
 It’s important to know life cycle events (e.g. retirement)
7
Data Mining in CRM:
Customer Life Cycle
 What marketers want: Increasing customer revenue and
customer profitability
 Up-sell
 Cross-sell
 Keeping the customers for a longer period of time
 Solution: Applying data mining
8
Data Mining in CRM
 Data Mining helps to
 Determine the behavior surrounding a particular
lifecycle event
 Find other people in similar life stages and determine
which customers are following similar behavior
patterns
9
Data Mining in CRM (cont.)
Data Warehouse Data Mining
Campaign Management
Customer Profile
Customer Life Cycle Info.
10
Data Mining Techniques
Data Mining Techniques
Descriptive Predictive
Clustering
Association
Classification
Regression
Sequential Analysis
Decision Tree
Rule Induction
Neural Networks
Nearest Neighbor Classification
11
Predictive Data Mining
Tridas Vickie Mike
Honest
BarneyWaldoWally
Crooked
12
Prediction
Tridas Vickie Mike
Honest = has round eyes and a smile
13
Decision Trees
 Data
height hair eyes class
short blond blue A
tall blond brown B
tall red blue A
short dark blue B
tall dark blue B
tall blond blue A
tall dark brown B
short blond brown B
14
Decision Trees (cont.)
hair
dark
red
blond
short, blue = B
tall, blue = B
tall, brown= B
{tall, blue = A} short, blue = A
tall, brown = B
tall, blue = A
short, brown = B
Completely classifies dark-haired
and red-haired people
Does not completely classify
blonde-haired people.
More work is required
15
Decision Trees (cont.)
hair
dark
red
blond
short, blue = B
tall, blue = B
tall, brown= B
{tall, blue = A} short, blue = A
tall, brown = B
tall, blue = A
short, brown = B
eye
blue brown
short = A
tall = A
tall = B
short = B
Decision tree is complete because
1. All 8 cases appear at nodes
2. At each node, all cases are in
the same class (A or B)
16
Decision Trees:
Learned Predictive Rules
hair
eyesB
B
A
A
dark
red
blond
blue brown
17
Decision Trees:
Another Example
Total list
50% member
0-1 child 2-3 child
20% member
4+ children
$50-75k income
15% member
$75k+ income
70% member
$50-75k income $20-50k income
85% member
Age: 40-60
80% member
Age: 20-40
45% member
18
Rule Induction
 Try to find rules of the form
IF <left-hand-side> THEN <right-hand-side>
 This is the reverse of a rule-based agent, where the rules
are given and the agent must act. Here the actions are
given and we have to discover the rules!
 Prevalence = probability that LHS and RHS occur together
(sometimes called “support factor,” “leverage” or “lift”)
 Predictability = probability of RHS given LHS (sometimes
called “confidence” or “strength”)
19
Association Rules from
Market Basket Analysis
 <Dairy-Milk-Refrigerated> → <Soft Drinks
Carbonated>
 prevalence = 4.99%, predictability = 22.89%
 <Dry Dinners - Pasta> → <Soup-Canned>
 prevalence = 0.94%, predictability = 28.14%
 <Dry Dinners - Pasta> → <Cereal - Ready to Eat>
 prevalence = 1.36%, predictability = 41.02%
 <Cheese Slices > → <Cereal - Ready to Eat>
 prevalence = 1.16%, predictability = 38.01%
20
Use of Rule Associations
 Coupons, discounts
 Don’t give discounts on 2 items that are frequently
bought together. Use the discount on 1 to “pull”
the other
 Product placement
 Offer correlated products to the customer at the
same time. Increases sales
 Timing of cross-marketing
 Send camcorder offer to VCR purchasers 2-3
months after VCR purchase
 Discovery of patterns
 People who bought X, Y and Z (but not any pair)
bought W over half the time
21
Finding Rule Associations
Algorithm
 Example: grocery shopping
 For each item, count # of occurrences (say out of 100,000)
 apples 1891, caviar 3, ice cream 1088, …
 Drop the ones that are below a minimum support level
 apples 1891, ice cream 1088, pet food 2451, …
 Make a table of each item against each other item:
 Discard cells below support threshold. Now make a cube for
triples, etc. Add 1 dimension for each product on LHS.
apples ice cream pet food
apples 1891 685 24
ice cream ----- 1088 322
pet food ----- ----- 2451
22
Clustering
 The art of finding groups in data
 Objective: gather items from a database into sets
according to (unknown) common characteristics
 Much more difficult than classification since the classes
are not known in advance (no training)
 Technique: unsupervised learning
23
The K-Means Clustering
Method
0
1
2
3
4
5
6
7
8
9
10
0 1 2 3 4 5 6 7 8 9 10
0
1
2
3
4
5
6
7
8
9
10
0 1 2 3 4 5 6 7 8 9 10
0
1
2
3
4
5
6
7
8
9
10
0 1 2 3 4 5 6 7 8 9 10
0
1
2
3
4
5
6
7
8
9
10
0 1 2 3 4 5 6 7 8 9 10
0
1
2
3
4
5
6
7
8
9
10
0 1 2 3 4 5 6 7 8 9 10
K=2
Arbitrarily choose K
objects as initial
cluster center
Assign
each of
the
objects
to most
similar
center
Update
the
cluster
means
Update
the
cluster
means
reassignreassign
Major Issues in Data
Mining
 Mining methodology and user interaction
 Mining different kinds of knowledge in databases
 Interactive mining of knowledge at multiple levels of
abstraction
 Incorporation of background knowledge
 Expression and visualization of data mining results
 Handling noise and incomplete data
 Pattern evaluation: the interestingness problem
 Performance and scalability
 Efficiency and scalability of data mining algorithms
 Parallel, distributed and incremental mining methods
24
Major Issues in Data
Mining
 Issues relating to the diversity of data types
 Handling relational and complex types of data
 Mining information from heterogeneous databases and
global information systems (WWW)
 Issues related to applications and social impacts
 Application of discovered knowledge
 Domain-specific data mining tools
 Intelligent query answering
 Process control and decision making
 Integration of the discovered knowledge with existing
knowledge: A knowledge fusion problem
 Protection of data security, integrity, and privacy
25
THANK YOU
26

More Related Content

What's hot

Category Management
Category Management Category Management
Category Management Fabio Bullita
 
Sales Management- SALES TRAINING DESIGN
Sales Management- SALES TRAINING DESIGN Sales Management- SALES TRAINING DESIGN
Sales Management- SALES TRAINING DESIGN Trinity Dwarka
 
Retail Store Management PowerPoint Presentation Slides
Retail Store Management PowerPoint Presentation SlidesRetail Store Management PowerPoint Presentation Slides
Retail Store Management PowerPoint Presentation SlidesSlideTeam
 
Chapter 23 Marketing Research Malhotra
Chapter 23 Marketing Research MalhotraChapter 23 Marketing Research Malhotra
Chapter 23 Marketing Research MalhotraAADITYA TANTIA
 
Business Intelligence for FMCG Business
Business Intelligence for FMCG BusinessBusiness Intelligence for FMCG Business
Business Intelligence for FMCG BusinessLi Ken Chong
 
Sales digital and direct marketing strategies presentation
Sales digital and direct marketing strategies presentationSales digital and direct marketing strategies presentation
Sales digital and direct marketing strategies presentationCGachuru
 
Strategic marketing session 3
Strategic marketing session 3Strategic marketing session 3
Strategic marketing session 3Anik Saha
 
Retail buying behaviour
Retail buying behaviourRetail buying behaviour
Retail buying behaviourSumit Malhotra
 
Mobile Crm
Mobile CrmMobile Crm
Mobile Crmsaurabh
 
retail management chapter 5
retail management   chapter 5retail management   chapter 5
retail management chapter 5AhMed Ŝĥãbÿ
 
Chp 9 Sales Preso Methods ppt
Chp 9 Sales Preso Methods pptChp 9 Sales Preso Methods ppt
Chp 9 Sales Preso Methods pptswhitman1
 
Segmentation / Targeting / Positioning
Segmentation / Targeting / PositioningSegmentation / Targeting / Positioning
Segmentation / Targeting / PositioningCris Anthony Hödar
 
Data preprocessing in Data Mining
Data preprocessing in Data MiningData preprocessing in Data Mining
Data preprocessing in Data MiningDHIVYADEVAKI
 
Business to business marketing ppt
Business to business marketing  pptBusiness to business marketing  ppt
Business to business marketing pptSukriti Mal
 
Customer Analytics & Segmentation
Customer Analytics & SegmentationCustomer Analytics & Segmentation
Customer Analytics & SegmentationGeorge Krasadakis
 
Strategic Customer Relationship Management(SCRM)
Strategic Customer Relationship Management(SCRM)Strategic Customer Relationship Management(SCRM)
Strategic Customer Relationship Management(SCRM)ISAAC Jayant
 
Big Data Predictive Analytics for Retail businesses
Big Data Predictive Analytics for Retail businessesBig Data Predictive Analytics for Retail businesses
Big Data Predictive Analytics for Retail businessesGopalakrishna Palem
 

What's hot (20)

Category Management
Category Management Category Management
Category Management
 
Sales Management- SALES TRAINING DESIGN
Sales Management- SALES TRAINING DESIGN Sales Management- SALES TRAINING DESIGN
Sales Management- SALES TRAINING DESIGN
 
Retail Management Glossary
Retail Management GlossaryRetail Management Glossary
Retail Management Glossary
 
Retail Store Management PowerPoint Presentation Slides
Retail Store Management PowerPoint Presentation SlidesRetail Store Management PowerPoint Presentation Slides
Retail Store Management PowerPoint Presentation Slides
 
Chapter 23 Marketing Research Malhotra
Chapter 23 Marketing Research MalhotraChapter 23 Marketing Research Malhotra
Chapter 23 Marketing Research Malhotra
 
Business Intelligence for FMCG Business
Business Intelligence for FMCG BusinessBusiness Intelligence for FMCG Business
Business Intelligence for FMCG Business
 
Sales digital and direct marketing strategies presentation
Sales digital and direct marketing strategies presentationSales digital and direct marketing strategies presentation
Sales digital and direct marketing strategies presentation
 
Strategic marketing session 3
Strategic marketing session 3Strategic marketing session 3
Strategic marketing session 3
 
Developing merchandising plan
Developing merchandising  planDeveloping merchandising  plan
Developing merchandising plan
 
Retail buying behaviour
Retail buying behaviourRetail buying behaviour
Retail buying behaviour
 
Mobile Crm
Mobile CrmMobile Crm
Mobile Crm
 
Sdm ch1
Sdm ch1Sdm ch1
Sdm ch1
 
retail management chapter 5
retail management   chapter 5retail management   chapter 5
retail management chapter 5
 
Chp 9 Sales Preso Methods ppt
Chp 9 Sales Preso Methods pptChp 9 Sales Preso Methods ppt
Chp 9 Sales Preso Methods ppt
 
Segmentation / Targeting / Positioning
Segmentation / Targeting / PositioningSegmentation / Targeting / Positioning
Segmentation / Targeting / Positioning
 
Data preprocessing in Data Mining
Data preprocessing in Data MiningData preprocessing in Data Mining
Data preprocessing in Data Mining
 
Business to business marketing ppt
Business to business marketing  pptBusiness to business marketing  ppt
Business to business marketing ppt
 
Customer Analytics & Segmentation
Customer Analytics & SegmentationCustomer Analytics & Segmentation
Customer Analytics & Segmentation
 
Strategic Customer Relationship Management(SCRM)
Strategic Customer Relationship Management(SCRM)Strategic Customer Relationship Management(SCRM)
Strategic Customer Relationship Management(SCRM)
 
Big Data Predictive Analytics for Retail businesses
Big Data Predictive Analytics for Retail businessesBig Data Predictive Analytics for Retail businesses
Big Data Predictive Analytics for Retail businesses
 

Viewers also liked

Customer relationship management_dwm_ankita_dubey
Customer relationship management_dwm_ankita_dubeyCustomer relationship management_dwm_ankita_dubey
Customer relationship management_dwm_ankita_dubeyAnkita Dubey
 
Ranking Related News Predictions
Ranking Related News PredictionsRanking Related News Predictions
Ranking Related News PredictionsNattiya Kanhabua
 
How to apply CRM using data mining techniques.
How to apply CRM using data mining techniques.How to apply CRM using data mining techniques.
How to apply CRM using data mining techniques.customersforever
 
Data mining and knowledge discovery
Data mining and knowledge discoveryData mining and knowledge discovery
Data mining and knowledge discoveryHoang Nguyen
 
Customer Relationship Management (CRM)
Customer Relationship Management (CRM)Customer Relationship Management (CRM)
Customer Relationship Management (CRM)Jaiser Abbas
 
Data Mining Concepts
Data Mining ConceptsData Mining Concepts
Data Mining ConceptsDung Nguyen
 
Practical Opinion Mining for Social Media
Practical Opinion Mining for Social MediaPractical Opinion Mining for Social Media
Practical Opinion Mining for Social MediaDiana Maynard
 
Using opinion mining techniques for early crisis detection
Using opinion mining techniques for early crisis detectionUsing opinion mining techniques for early crisis detection
Using opinion mining techniques for early crisis detectionFaculty of Computer Science
 
Text mining to correct missing CRM information: a practical data science project
Text mining to correct missing CRM information: a practical data science projectText mining to correct missing CRM information: a practical data science project
Text mining to correct missing CRM information: a practical data science projectJonathan Sedar
 
Text Mining to Correct Missing CRM Information by Jonathan Sedar
Text Mining to Correct Missing CRM Information by Jonathan SedarText Mining to Correct Missing CRM Information by Jonathan Sedar
Text Mining to Correct Missing CRM Information by Jonathan SedarPyData
 
Recommender Systems: Advances in Collaborative Filtering
Recommender Systems: Advances in Collaborative FilteringRecommender Systems: Advances in Collaborative Filtering
Recommender Systems: Advances in Collaborative FilteringChangsung Moon
 
Chapter II.6 (Book Part VI) Learning
Chapter II.6 (Book Part VI) LearningChapter II.6 (Book Part VI) Learning
Chapter II.6 (Book Part VI) Learningbutest
 
Preprocessing of Academic Data for Mining Association Rule, Presentation @WAD...
Preprocessing of Academic Data for Mining Association Rule, Presentation @WAD...Preprocessing of Academic Data for Mining Association Rule, Presentation @WAD...
Preprocessing of Academic Data for Mining Association Rule, Presentation @WAD...shibbirtanvin
 
Recommender Systems and Active Learning
Recommender Systems and Active LearningRecommender Systems and Active Learning
Recommender Systems and Active LearningDain Kaplan
 

Viewers also liked (20)

Data mining
Data miningData mining
Data mining
 
Customer relationship management_dwm_ankita_dubey
Customer relationship management_dwm_ankita_dubeyCustomer relationship management_dwm_ankita_dubey
Customer relationship management_dwm_ankita_dubey
 
Ranking Related News Predictions
Ranking Related News PredictionsRanking Related News Predictions
Ranking Related News Predictions
 
How to apply CRM using data mining techniques.
How to apply CRM using data mining techniques.How to apply CRM using data mining techniques.
How to apply CRM using data mining techniques.
 
Datamining for crm
Datamining for crmDatamining for crm
Datamining for crm
 
Data mining and knowledge discovery
Data mining and knowledge discoveryData mining and knowledge discovery
Data mining and knowledge discovery
 
Customer Relationship Management (CRM)
Customer Relationship Management (CRM)Customer Relationship Management (CRM)
Customer Relationship Management (CRM)
 
Data mining
Data miningData mining
Data mining
 
Data Mining Concepts
Data Mining ConceptsData Mining Concepts
Data Mining Concepts
 
DATA WAREHOUSING AND DATA MINING
DATA WAREHOUSING AND DATA MININGDATA WAREHOUSING AND DATA MINING
DATA WAREHOUSING AND DATA MINING
 
Neural networks
Neural networksNeural networks
Neural networks
 
Practical Opinion Mining for Social Media
Practical Opinion Mining for Social MediaPractical Opinion Mining for Social Media
Practical Opinion Mining for Social Media
 
Using opinion mining techniques for early crisis detection
Using opinion mining techniques for early crisis detectionUsing opinion mining techniques for early crisis detection
Using opinion mining techniques for early crisis detection
 
Text mining to correct missing CRM information: a practical data science project
Text mining to correct missing CRM information: a practical data science projectText mining to correct missing CRM information: a practical data science project
Text mining to correct missing CRM information: a practical data science project
 
Text Mining to Correct Missing CRM Information by Jonathan Sedar
Text Mining to Correct Missing CRM Information by Jonathan SedarText Mining to Correct Missing CRM Information by Jonathan Sedar
Text Mining to Correct Missing CRM Information by Jonathan Sedar
 
Recommender Systems: Advances in Collaborative Filtering
Recommender Systems: Advances in Collaborative FilteringRecommender Systems: Advances in Collaborative Filtering
Recommender Systems: Advances in Collaborative Filtering
 
Chapter II.6 (Book Part VI) Learning
Chapter II.6 (Book Part VI) LearningChapter II.6 (Book Part VI) Learning
Chapter II.6 (Book Part VI) Learning
 
C3.4.1
C3.4.1C3.4.1
C3.4.1
 
Preprocessing of Academic Data for Mining Association Rule, Presentation @WAD...
Preprocessing of Academic Data for Mining Association Rule, Presentation @WAD...Preprocessing of Academic Data for Mining Association Rule, Presentation @WAD...
Preprocessing of Academic Data for Mining Association Rule, Presentation @WAD...
 
Recommender Systems and Active Learning
Recommender Systems and Active LearningRecommender Systems and Active Learning
Recommender Systems and Active Learning
 

Similar to Data Mining Techniques for CRM

Cluster2
Cluster2Cluster2
Cluster2work
 
Customer Profiling using Data Mining
Customer Profiling using Data Mining Customer Profiling using Data Mining
Customer Profiling using Data Mining Suman Chatterjee
 
What is Data Science and How to Succeed in it
What is Data Science and How to Succeed in itWhat is Data Science and How to Succeed in it
What is Data Science and How to Succeed in itKhosrow Hassibi
 
Predictive Analytics for Customer Targeting: A Telemarketing Banking Example
Predictive Analytics for Customer Targeting: A Telemarketing Banking ExamplePredictive Analytics for Customer Targeting: A Telemarketing Banking Example
Predictive Analytics for Customer Targeting: A Telemarketing Banking ExamplePedro Ecija Serrano
 
Data analytics and visualization
Data analytics and visualizationData analytics and visualization
Data analytics and visualizationVini Vasundharan
 
Using Big Data & Analytics to Create Consumer Actionable Insights
Using Big Data & Analytics to Create Consumer Actionable InsightsUsing Big Data & Analytics to Create Consumer Actionable Insights
Using Big Data & Analytics to Create Consumer Actionable Insights莫利伟 Olivier Maugain
 
Datamining intro-iep
Datamining intro-iepDatamining intro-iep
Datamining intro-iepaaryarun1999
 
Customer analytics
Customer analyticsCustomer analytics
Customer analyticsKarl Melo
 
Retail lessons learned from the first data driven business and future direct...
Retail  lessons learned from the first data driven business and future direct...Retail  lessons learned from the first data driven business and future direct...
Retail lessons learned from the first data driven business and future direct...TUSHAR GARG
 
Data preparation and processing chapter 2
Data preparation and processing chapter  2Data preparation and processing chapter  2
Data preparation and processing chapter 2Mahmoud Alfarra
 
How to predict the future of shopping - Ulrich Kerzel @ PAPIs Connect
How to predict the future of shopping - Ulrich Kerzel @ PAPIs ConnectHow to predict the future of shopping - Ulrich Kerzel @ PAPIs Connect
How to predict the future of shopping - Ulrich Kerzel @ PAPIs ConnectPAPIs.io
 
BIDM Session 01.pdf
BIDM Session 01.pdfBIDM Session 01.pdf
BIDM Session 01.pdfROBIN964462
 
Introduction to Data Mining
Introduction to Data MiningIntroduction to Data Mining
Introduction to Data MiningNofel Elahi
 
Data Science Use cases in Banking
Data Science Use cases in BankingData Science Use cases in Banking
Data Science Use cases in BankingArul Bharathi
 
An introduction to data mining and its techniques
An introduction to data mining and its techniquesAn introduction to data mining and its techniques
An introduction to data mining and its techniquesSandhya Tarwani
 
Dwdm ppt for the btech student contain basis
Dwdm ppt for the btech student contain basisDwdm ppt for the btech student contain basis
Dwdm ppt for the btech student contain basisnivatripathy93
 
Data mining techniques and dss
Data mining techniques and dssData mining techniques and dss
Data mining techniques and dssNiyitegekabilly
 
Data MiningData MiningData MiningData Mining
Data MiningData MiningData MiningData MiningData MiningData MiningData MiningData Mining
Data MiningData MiningData MiningData Miningabdulraqeebalareqi1
 

Similar to Data Mining Techniques for CRM (20)

Chapter14 example2
Chapter14 example2Chapter14 example2
Chapter14 example2
 
Cluster2
Cluster2Cluster2
Cluster2
 
Customer Profiling using Data Mining
Customer Profiling using Data Mining Customer Profiling using Data Mining
Customer Profiling using Data Mining
 
What is Data Science and How to Succeed in it
What is Data Science and How to Succeed in itWhat is Data Science and How to Succeed in it
What is Data Science and How to Succeed in it
 
Predictive Analytics for Customer Targeting: A Telemarketing Banking Example
Predictive Analytics for Customer Targeting: A Telemarketing Banking ExamplePredictive Analytics for Customer Targeting: A Telemarketing Banking Example
Predictive Analytics for Customer Targeting: A Telemarketing Banking Example
 
Data analytics and visualization
Data analytics and visualizationData analytics and visualization
Data analytics and visualization
 
Using Big Data & Analytics to Create Consumer Actionable Insights
Using Big Data & Analytics to Create Consumer Actionable InsightsUsing Big Data & Analytics to Create Consumer Actionable Insights
Using Big Data & Analytics to Create Consumer Actionable Insights
 
Datamining intro-iep
Datamining intro-iepDatamining intro-iep
Datamining intro-iep
 
Dwd mdatamining intro-iep
Dwd mdatamining intro-iepDwd mdatamining intro-iep
Dwd mdatamining intro-iep
 
Customer analytics
Customer analyticsCustomer analytics
Customer analytics
 
Retail lessons learned from the first data driven business and future direct...
Retail  lessons learned from the first data driven business and future direct...Retail  lessons learned from the first data driven business and future direct...
Retail lessons learned from the first data driven business and future direct...
 
Data preparation and processing chapter 2
Data preparation and processing chapter  2Data preparation and processing chapter  2
Data preparation and processing chapter 2
 
How to predict the future of shopping - Ulrich Kerzel @ PAPIs Connect
How to predict the future of shopping - Ulrich Kerzel @ PAPIs ConnectHow to predict the future of shopping - Ulrich Kerzel @ PAPIs Connect
How to predict the future of shopping - Ulrich Kerzel @ PAPIs Connect
 
BIDM Session 01.pdf
BIDM Session 01.pdfBIDM Session 01.pdf
BIDM Session 01.pdf
 
Introduction to Data Mining
Introduction to Data MiningIntroduction to Data Mining
Introduction to Data Mining
 
Data Science Use cases in Banking
Data Science Use cases in BankingData Science Use cases in Banking
Data Science Use cases in Banking
 
An introduction to data mining and its techniques
An introduction to data mining and its techniquesAn introduction to data mining and its techniques
An introduction to data mining and its techniques
 
Dwdm ppt for the btech student contain basis
Dwdm ppt for the btech student contain basisDwdm ppt for the btech student contain basis
Dwdm ppt for the btech student contain basis
 
Data mining techniques and dss
Data mining techniques and dssData mining techniques and dss
Data mining techniques and dss
 
Data MiningData MiningData MiningData Mining
Data MiningData MiningData MiningData MiningData MiningData MiningData MiningData Mining
Data MiningData MiningData MiningData Mining
 

Recently uploaded

社内勉強会資料_LLM Agents                              .
社内勉強会資料_LLM Agents                              .社内勉強会資料_LLM Agents                              .
社内勉強会資料_LLM Agents                              .NABLAS株式会社
 
tapal brand analysis PPT slide for comptetive data
tapal brand analysis PPT slide for comptetive datatapal brand analysis PPT slide for comptetive data
tapal brand analysis PPT slide for comptetive datatheahmadsaood
 
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单ukgaet
 
Predicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project PresentationPredicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project PresentationBoston Institute of Analytics
 
Q1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year ReboundQ1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year ReboundOppotus
 
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单yhkoc
 
Computer Presentation.pptx ecommerce advantage s
Computer Presentation.pptx ecommerce advantage sComputer Presentation.pptx ecommerce advantage s
Computer Presentation.pptx ecommerce advantage sMAQIB18
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单ewymefz
 
Innovative Methods in Media and Communication Research by Sebastian Kubitschk...
Innovative Methods in Media and Communication Research by Sebastian Kubitschk...Innovative Methods in Media and Communication Research by Sebastian Kubitschk...
Innovative Methods in Media and Communication Research by Sebastian Kubitschk...correoyaya
 
Introduction-to-Cybersecurit57hhfcbbcxxx
Introduction-to-Cybersecurit57hhfcbbcxxxIntroduction-to-Cybersecurit57hhfcbbcxxx
Introduction-to-Cybersecurit57hhfcbbcxxxzahraomer517
 
一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单ocavb
 
一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单enxupq
 
一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单enxupq
 
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单vcaxypu
 
Uber Ride Supply Demand Gap Analysis Report
Uber Ride Supply Demand Gap Analysis ReportUber Ride Supply Demand Gap Analysis Report
Uber Ride Supply Demand Gap Analysis ReportSatyamNeelmani2
 
2024-05-14 - Tableau User Group - TC24 Hot Topics - Tableau Pulse and Einstei...
2024-05-14 - Tableau User Group - TC24 Hot Topics - Tableau Pulse and Einstei...2024-05-14 - Tableau User Group - TC24 Hot Topics - Tableau Pulse and Einstei...
2024-05-14 - Tableau User Group - TC24 Hot Topics - Tableau Pulse and Einstei...elinavihriala
 
Investigate & Recover / StarCompliance.io / Crypto_Crimes
Investigate & Recover / StarCompliance.io / Crypto_CrimesInvestigate & Recover / StarCompliance.io / Crypto_Crimes
Investigate & Recover / StarCompliance.io / Crypto_CrimesStarCompliance.io
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单vcaxypu
 
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单nscud
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单ewymefz
 

Recently uploaded (20)

社内勉強会資料_LLM Agents                              .
社内勉強会資料_LLM Agents                              .社内勉強会資料_LLM Agents                              .
社内勉強会資料_LLM Agents                              .
 
tapal brand analysis PPT slide for comptetive data
tapal brand analysis PPT slide for comptetive datatapal brand analysis PPT slide for comptetive data
tapal brand analysis PPT slide for comptetive data
 
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
 
Predicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project PresentationPredicting Product Ad Campaign Performance: A Data Analysis Project Presentation
Predicting Product Ad Campaign Performance: A Data Analysis Project Presentation
 
Q1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year ReboundQ1’2024 Update: MYCI’s Leap Year Rebound
Q1’2024 Update: MYCI’s Leap Year Rebound
 
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
一比一原版(CU毕业证)卡尔顿大学毕业证成绩单
 
Computer Presentation.pptx ecommerce advantage s
Computer Presentation.pptx ecommerce advantage sComputer Presentation.pptx ecommerce advantage s
Computer Presentation.pptx ecommerce advantage s
 
一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单一比一原版(NYU毕业证)纽约大学毕业证成绩单
一比一原版(NYU毕业证)纽约大学毕业证成绩单
 
Innovative Methods in Media and Communication Research by Sebastian Kubitschk...
Innovative Methods in Media and Communication Research by Sebastian Kubitschk...Innovative Methods in Media and Communication Research by Sebastian Kubitschk...
Innovative Methods in Media and Communication Research by Sebastian Kubitschk...
 
Introduction-to-Cybersecurit57hhfcbbcxxx
Introduction-to-Cybersecurit57hhfcbbcxxxIntroduction-to-Cybersecurit57hhfcbbcxxx
Introduction-to-Cybersecurit57hhfcbbcxxx
 
一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单一比一原版(TWU毕业证)西三一大学毕业证成绩单
一比一原版(TWU毕业证)西三一大学毕业证成绩单
 
一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单一比一原版(YU毕业证)约克大学毕业证成绩单
一比一原版(YU毕业证)约克大学毕业证成绩单
 
一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单一比一原版(QU毕业证)皇后大学毕业证成绩单
一比一原版(QU毕业证)皇后大学毕业证成绩单
 
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
 
Uber Ride Supply Demand Gap Analysis Report
Uber Ride Supply Demand Gap Analysis ReportUber Ride Supply Demand Gap Analysis Report
Uber Ride Supply Demand Gap Analysis Report
 
2024-05-14 - Tableau User Group - TC24 Hot Topics - Tableau Pulse and Einstei...
2024-05-14 - Tableau User Group - TC24 Hot Topics - Tableau Pulse and Einstei...2024-05-14 - Tableau User Group - TC24 Hot Topics - Tableau Pulse and Einstei...
2024-05-14 - Tableau User Group - TC24 Hot Topics - Tableau Pulse and Einstei...
 
Investigate & Recover / StarCompliance.io / Crypto_Crimes
Investigate & Recover / StarCompliance.io / Crypto_CrimesInvestigate & Recover / StarCompliance.io / Crypto_Crimes
Investigate & Recover / StarCompliance.io / Crypto_Crimes
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
 
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单
 

Data Mining Techniques for CRM

  • 1. Data Mining Techniques for CRM B.SHYAAMINI (11MCM043)
  • 2. 2 “The key in business is to know something that nobody else knows.” — Aristotle Onassis “To understand is to perceive patterns.” — Sir Isaiah Berlin Data Mining Motivation
  • 4. 4 Data Mining Applications: RETAIL:  Performing basket analysis  Sales forecasting  Database marketing  Merchandise planning and allocation BANKING:  Fraud detection  Card marketing TELECOMMUNICATION:  Call detail record analysis  Customer loyalty
  • 6. 6 Data Mining in CRM: Customer Life Cycle  Customer Life Cycle  The stages in the relationship between a customer and a business  Key stages in the customer lifecycle  Prospects: people who are not yet customers but are in the target market  Responders: prospects who show an interest in a product or service  Active Customers: people who are currently using the product or service  Former Customers: may be “bad” customers who did not pay their bills or who incurred high costs  It’s important to know life cycle events (e.g. retirement)
  • 7. 7 Data Mining in CRM: Customer Life Cycle  What marketers want: Increasing customer revenue and customer profitability  Up-sell  Cross-sell  Keeping the customers for a longer period of time  Solution: Applying data mining
  • 8. 8 Data Mining in CRM  Data Mining helps to  Determine the behavior surrounding a particular lifecycle event  Find other people in similar life stages and determine which customers are following similar behavior patterns
  • 9. 9 Data Mining in CRM (cont.) Data Warehouse Data Mining Campaign Management Customer Profile Customer Life Cycle Info.
  • 10. 10 Data Mining Techniques Data Mining Techniques Descriptive Predictive Clustering Association Classification Regression Sequential Analysis Decision Tree Rule Induction Neural Networks Nearest Neighbor Classification
  • 11. 11 Predictive Data Mining Tridas Vickie Mike Honest BarneyWaldoWally Crooked
  • 12. 12 Prediction Tridas Vickie Mike Honest = has round eyes and a smile
  • 13. 13 Decision Trees  Data height hair eyes class short blond blue A tall blond brown B tall red blue A short dark blue B tall dark blue B tall blond blue A tall dark brown B short blond brown B
  • 14. 14 Decision Trees (cont.) hair dark red blond short, blue = B tall, blue = B tall, brown= B {tall, blue = A} short, blue = A tall, brown = B tall, blue = A short, brown = B Completely classifies dark-haired and red-haired people Does not completely classify blonde-haired people. More work is required
  • 15. 15 Decision Trees (cont.) hair dark red blond short, blue = B tall, blue = B tall, brown= B {tall, blue = A} short, blue = A tall, brown = B tall, blue = A short, brown = B eye blue brown short = A tall = A tall = B short = B Decision tree is complete because 1. All 8 cases appear at nodes 2. At each node, all cases are in the same class (A or B)
  • 16. 16 Decision Trees: Learned Predictive Rules hair eyesB B A A dark red blond blue brown
  • 17. 17 Decision Trees: Another Example Total list 50% member 0-1 child 2-3 child 20% member 4+ children $50-75k income 15% member $75k+ income 70% member $50-75k income $20-50k income 85% member Age: 40-60 80% member Age: 20-40 45% member
  • 18. 18 Rule Induction  Try to find rules of the form IF <left-hand-side> THEN <right-hand-side>  This is the reverse of a rule-based agent, where the rules are given and the agent must act. Here the actions are given and we have to discover the rules!  Prevalence = probability that LHS and RHS occur together (sometimes called “support factor,” “leverage” or “lift”)  Predictability = probability of RHS given LHS (sometimes called “confidence” or “strength”)
  • 19. 19 Association Rules from Market Basket Analysis  <Dairy-Milk-Refrigerated> → <Soft Drinks Carbonated>  prevalence = 4.99%, predictability = 22.89%  <Dry Dinners - Pasta> → <Soup-Canned>  prevalence = 0.94%, predictability = 28.14%  <Dry Dinners - Pasta> → <Cereal - Ready to Eat>  prevalence = 1.36%, predictability = 41.02%  <Cheese Slices > → <Cereal - Ready to Eat>  prevalence = 1.16%, predictability = 38.01%
  • 20. 20 Use of Rule Associations  Coupons, discounts  Don’t give discounts on 2 items that are frequently bought together. Use the discount on 1 to “pull” the other  Product placement  Offer correlated products to the customer at the same time. Increases sales  Timing of cross-marketing  Send camcorder offer to VCR purchasers 2-3 months after VCR purchase  Discovery of patterns  People who bought X, Y and Z (but not any pair) bought W over half the time
  • 21. 21 Finding Rule Associations Algorithm  Example: grocery shopping  For each item, count # of occurrences (say out of 100,000)  apples 1891, caviar 3, ice cream 1088, …  Drop the ones that are below a minimum support level  apples 1891, ice cream 1088, pet food 2451, …  Make a table of each item against each other item:  Discard cells below support threshold. Now make a cube for triples, etc. Add 1 dimension for each product on LHS. apples ice cream pet food apples 1891 685 24 ice cream ----- 1088 322 pet food ----- ----- 2451
  • 22. 22 Clustering  The art of finding groups in data  Objective: gather items from a database into sets according to (unknown) common characteristics  Much more difficult than classification since the classes are not known in advance (no training)  Technique: unsupervised learning
  • 23. 23 The K-Means Clustering Method 0 1 2 3 4 5 6 7 8 9 10 0 1 2 3 4 5 6 7 8 9 10 0 1 2 3 4 5 6 7 8 9 10 0 1 2 3 4 5 6 7 8 9 10 0 1 2 3 4 5 6 7 8 9 10 0 1 2 3 4 5 6 7 8 9 10 0 1 2 3 4 5 6 7 8 9 10 0 1 2 3 4 5 6 7 8 9 10 0 1 2 3 4 5 6 7 8 9 10 0 1 2 3 4 5 6 7 8 9 10 K=2 Arbitrarily choose K objects as initial cluster center Assign each of the objects to most similar center Update the cluster means Update the cluster means reassignreassign
  • 24. Major Issues in Data Mining  Mining methodology and user interaction  Mining different kinds of knowledge in databases  Interactive mining of knowledge at multiple levels of abstraction  Incorporation of background knowledge  Expression and visualization of data mining results  Handling noise and incomplete data  Pattern evaluation: the interestingness problem  Performance and scalability  Efficiency and scalability of data mining algorithms  Parallel, distributed and incremental mining methods 24
  • 25. Major Issues in Data Mining  Issues relating to the diversity of data types  Handling relational and complex types of data  Mining information from heterogeneous databases and global information systems (WWW)  Issues related to applications and social impacts  Application of discovered knowledge  Domain-specific data mining tools  Intelligent query answering  Process control and decision making  Integration of the discovered knowledge with existing knowledge: A knowledge fusion problem  Protection of data security, integrity, and privacy 25