案例研究:在 Power BI 中分析客戶流失
Iason Prassides
Content Developer, DataCamp
$$
先修課程:
- Introduction to Power BI
- Introduction to DAX in Power BI
- Data Visualization in Power BI







解決客戶流失
$$

Churn rate(流失率),又稱離職率或客戶流失率,指顧客停止與某實體往來的比率。

簡化公式
Churn rate = customers lost / total number of customersChurn rate = 10 / 10010 / 100 = 10%
計算流失有多種方式
$$
關鍵特性

維度
| Column name | Description |
|---|---|
| Customer_id | 識別客戶的唯一 ID |
| Churn Label | 以 'Yes' 或 'No' 標示客戶是否流失。 |
| Demographic fields | Age、Gender、State,… |
| Premium plans | Unlimited Data、International Plan,… |
| ... | ... |
度量
| Column name | Description |
|---|---|
| Total charges | 所有月費的總和 |
| Monthly charge | 向該客戶收取之所有月費的平均值 |
| Extra data charges | 超出方案流量的額外數據費用 |
| Extra international charges | 未含國際方案者的國際通話額外費用 |
| Customer service calls | 撥打客服的通話次數 |
| ... | ... |
案例研究:在 Power BI 中分析客戶流失