Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Dataset Structure
|
2 |
+
Data Instances
|
3 |
+
|
4 |
+
An instance in the dataset represents a user's data with the following fields: msno (user id), is_churn (whether the user left the service), playtime_per_day (average daily playtime), city, bd (age), gender, registered_via (registration method), registration_init_time, payment_method_id, payment_plan_days, plan_list_price, actual_amount_paid, is_auto_renew, transaction_date, membership_expire_date, is_cancel (whether the user cancelled their membership).
|
5 |
+
Data Fields
|
6 |
+
|
7 |
+
- msno: a string identifier for the user.
|
8 |
+
- is_churn: a binary value indicating whether the user left the service (1) or not (0).
|
9 |
+
- playtime_per_day: a float value representing the average daily playtime of the user.
|
10 |
+
- city: an integer representing the city code.
|
11 |
+
- bd: an integer representing the age of the user.
|
12 |
+
- gender: a binary value indicating the gender of the user (0 for male, 1 for female, -1 for unknown).
|
13 |
+
- registered_via: an integer representing the registration method.
|
14 |
+
- registration_init_time: an integer representing the year of registration.
|
15 |
+
- payment_method_id: an integer representing the payment method.
|
16 |
+
- payment_plan_days: an integer representing the length of the payment plan in days.
|
17 |
+
- plan_list_price: an integer representing the listed price of the payment plan.
|
18 |
+
- actual_amount_paid: an integer representing the actual amount paid by the user.
|
19 |
+
- is_auto_renew: a binary value indicating whether the user's plan auto-renews (1) or not (0).
|
20 |
+
- transaction_date: an integer representing the year of the transaction.
|
21 |
+
- membership_expire_date: an integer representing the year when the membership expires.
|
22 |
+
- is_cancel: a binary value indicating whether the user cancelled their membership (1) or not (0).
|