Difficulty: Easy
Correct Answer: Analyze and rank customers for segmentation and targeting.
Explanation:
Introduction / Context:RFM (Recency, Frequency, Monetary) is a lightweight but powerful technique for customer segmentation. By scoring how recently a customer purchased, how often they purchase, and how much they spend, marketers identify high-value groups for retention, cross-sell, and re-activation campaigns.
Given Data / Assumptions:
Concept / Approach:
RFM assigns each dimension a score (e.g., 1–5 buckets). Concatenated scores enable easy ranking: customers with high recency, high frequency, and high monetary are prime targets; those with low recency may need win-back campaigns. The method is descriptive ranking, not a specific predictive model like regression by itself.
Step-by-Step Solution:
1) Compute R, F, M metrics over a defined time window.2) Bin each metric into score buckets (e.g., quintiles).3) Combine scores to produce segments (e.g., 5-5-5 elite, 1-1-1 at-risk).4) Rank customers by segment for targeted actions.Verification / Alternative check:
CRM playbooks and analytics primers consistently present RFM as a segmentation and ranking tool used to improve campaign ROI, not as an OLTP or forecasting engine by itself.
Why Other Options Are Wrong:
Common Pitfalls:
Final Answer:
Analyze and rank customers for segmentation and targeting.
Discussion & Comments