Datasets:
docs: update dataset information
Browse files
README.md
CHANGED
@@ -1,3 +1,36 @@
|
|
1 |
-
---
|
2 |
-
license: ecl-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: ecl-2.0
|
3 |
+
task_categories:
|
4 |
+
- text-classification
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
tags:
|
8 |
+
- public
|
9 |
+
- text
|
10 |
+
- tabular
|
11 |
+
- customer-churn-analysis
|
12 |
+
- education
|
13 |
+
pretty_name: Teclo Churn 7k
|
14 |
+
size_categories:
|
15 |
+
- 1K<n<10K
|
16 |
+
---
|
17 |
+
|
18 |
+
# Telco Churn 7k
|
19 |
+
|
20 |
+
A 7,043-row customer-retention dataset drawn from a U.S. telecom provider. Each record profiles one account with 21 concise attributes and a **Churn** flag (*Yes* / *No*) indicating whether the customer left within the last month. The schema is:
|
21 |
+
|
22 |
+
- **customerID** – unique subscriber identifier
|
23 |
+
- **gender** – {Female, Male}
|
24 |
+
- **SeniorCitizen** – {0, 1}
|
25 |
+
- **Partner**, **Dependents** – {Yes, No}
|
26 |
+
- **tenure** – months of service (0–72)
|
27 |
+
- **PhoneService**, **MultipleLines** – {Yes, No, No phone service}
|
28 |
+
- **InternetService** – {DSL, Fiber optic, No}
|
29 |
+
- **OnlineSecurity**, **OnlineBackup**, **DeviceProtection**, **TechSupport**, **StreamingTV**, **StreamingMovies** – {Yes, No, No internet service}
|
30 |
+
- **Contract** – {Month-to-month, One year, Two year}
|
31 |
+
- **PaperlessBilling** – {Yes, No}
|
32 |
+
- **PaymentMethod** – {Electronic check, Mailed check, Bank transfer (automatic), Credit card (automatic)}
|
33 |
+
- **MonthlyCharges**, **TotalCharges** – numeric fees in USD
|
34 |
+
- **Churn** – target label for churn prediction
|
35 |
+
|
36 |
+
The dataset mixes categorical, numeric and missing-value patterns typical of real CRM exports, making it a standard benchmark for churn-modeling and customer-analytics pipelines.
|