customeranalytics 0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- customeranalytics/__init__.py +319 -0
- customeranalytics/configs.py +480 -0
- customeranalytics/data_storage_configurations/__init__.py +245 -0
- customeranalytics/data_storage_configurations/data_access.py +165 -0
- customeranalytics/data_storage_configurations/data_works_pipeline.py +207 -0
- customeranalytics/data_storage_configurations/es_create_index.py +544 -0
- customeranalytics/data_storage_configurations/logger.py +36 -0
- customeranalytics/data_storage_configurations/query_es.py +157 -0
- customeranalytics/data_storage_configurations/reports.py +684 -0
- customeranalytics/data_storage_configurations/schedule_data_integration.py +355 -0
- customeranalytics/docs/queries.yaml +245 -0
- customeranalytics/docs/web_configs.yaml +2 -0
- customeranalytics/exploratory_analysis/__init__.py +109 -0
- customeranalytics/exploratory_analysis/churn.py +232 -0
- customeranalytics/exploratory_analysis/cohorts.py +535 -0
- customeranalytics/exploratory_analysis/descriptive_statistics.py +470 -0
- customeranalytics/exploratory_analysis/funnels.py +407 -0
- customeranalytics/exploratory_analysis/product_analytics.py +340 -0
- customeranalytics/exploratory_analysis/promotion_analytics.py +299 -0
- customeranalytics/exploratory_analysis/rfm.py +202 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_avg_order_count_per_promo_per_cust.csv +99 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_chart_1_search.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_chart_2_search.csv +46 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_chart_3_search.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_chart_4_search.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_churn.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_churn_weekly.csv +10 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_client_feature_predicted.csv +1590 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_client_kpis.csv +7060 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_clvrfm_anomaly.csv +561 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_clvsegments_amount.csv +8 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_customer_journey.csv +18 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_clv.csv +103 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_downloads.csv +68 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_1_to_2.csv +66 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_2_to_3.csv +64 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_cohort_from_3_to_4.csv +55 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_dimension_values.csv +199 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_funnel.csv +36 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_funnel_downloads.csv +68 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_inorganic_ratio.csv +6070 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_orders.csv +57 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_organic_orders.csv +64 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_products_of_sales.csv +12574 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_promotion_discount.csv +64 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_daily_promotion_revenue.csv +6070 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_dcohort_anomaly.csv +6 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_dcohort_anomaly_2.csv +118 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_deliver.csv +47 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_deliver_kpis.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_deliver_weekday_hour.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_dfunnel_anomaly.csv +118 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_dimension_kpis.csv +199 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_dorders_anomaly.csv +85 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_frequency_clusters.csv +6 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_frequency_recency.csv +3740 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_funnel.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_funnel_downloads.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_inorganic_ratio.csv +2353 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_orders.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_hourly_organic_orders.csv +2353 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_inorganic_orders_per_promotion_per_day.csv +6070 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_kpis.csv +2 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_monetary_clusters.csv +6 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_monetary_frequency.csv +3740 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_funnel.csv +5 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_funnel_downloads.csv +5 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_monthly_orders.csv +4 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_most_combined_products.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_most_ordered_categories.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_most_ordered_products.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_order_and_payment_amount_differences.csv +91 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_prepare.csv +101 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_prepare_weekday_hour.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_product_kpis.csv +201 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_amount_accept.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_amount_reject.csv +7 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_orders_accept.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_product_usage_before_after_orders_reject.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_comparison.csv +91 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_kpis.csv +99 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_number_of_customer.csv +99 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_amount_accept.csv +81 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_amount_reject.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_orders_accept.csv +55 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_promotion_usage_before_after_orders_reject.csv +37 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_purchase_amount_distribution.csv +22 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_recency_clusters.csv +6 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_recency_monetary.csv +3740 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_rfm.csv +2001 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_ride.csv +101 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_ride_weekday_hour.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segmentation.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_daily_before_after_amount.csv +10 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_daily_before_after_orders.csv +9 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_monthly_before_after_amount.csv +10 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_monthly_before_after_orders.csv +11 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_weekly_before_after_amount.csv +10 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_segments_change_weekly_before_after_orders.csv +10 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_user_counts_per_order_seq.csv +47 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_order_per_user.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_payment_amount.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_average_session_per_user.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_downloads.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_1_to_2.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_2_to_3.csv +13 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_cohort_from_3_to_4.csv +12 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_funnel.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_funnel_downloads.csv +25 -0
- customeranalytics/exploratory_analysis/sample_data/sample_data_weekly_orders.csv +10 -0
- customeranalytics/ml_process/__init__.py +64 -0
- customeranalytics/ml_process/ab_test.py +615 -0
- customeranalytics/ml_process/anomaly_detection.py +456 -0
- customeranalytics/ml_process/clv_prediction.py +301 -0
- customeranalytics/ml_process/customer_segmentation.py +354 -0
- customeranalytics/ml_process/delivery_analytics.py +754 -0
- customeranalytics/utils.py +186 -0
- customeranalytics/web/app/__init__.py +37 -0
- customeranalytics/web/app/base/__init__.py +9 -0
- customeranalytics/web/app/base/forms.py +16 -0
- customeranalytics/web/app/base/models.py +43 -0
- customeranalytics/web/app/base/routes.py +126 -0
- customeranalytics/web/app/base/static/assets/css/app.css +20 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Black.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Black.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-BlackItalic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-BlackItalic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Bold.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Bold.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-BoldItalic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-BoldItalic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBold.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBold.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBoldItalic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraBoldItalic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLight-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLight-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLightItalic-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ExtraLightItalic-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Italic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Italic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Light-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Light-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-LightItalic-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-LightItalic-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Medium.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Medium.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-MediumItalic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-MediumItalic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Regular.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Regular.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBold.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBold.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBoldItalic.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-SemiBoldItalic.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Thin-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-Thin-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ThinItalic-BETA.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-ThinItalic-BETA.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-italic.var.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter-upright.var.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/Inter.var.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.eot +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.svg +3570 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.ttf +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-brands-400.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.eot +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.svg +801 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.ttf +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-regular-400.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.eot +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.svg +5028 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.ttf +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.woff +0 -0
- customeranalytics/web/app/base/static/assets/fonts/fa-solid-900.woff2 +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/avatar-1.png +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/avatar-2.png +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/avatar-3.png +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/avatar-4.png +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/avatar-5.png +0 -0
- customeranalytics/web/app/base/static/assets/img/avatars/info.jpeg +0 -0
- customeranalytics/web/app/base/static/assets/img/icons/customanality.png +0 -0
- customeranalytics/web/app/base/static/assets/img/icons/icon-48x48.png +0 -0
- customeranalytics/web/app/base/static/assets/js/app.js +2 -0
- customeranalytics/web/app/base/static/assets/js/app.js.LICENSE +566 -0
- customeranalytics/web/app/base/static/assets/js/app.js.LICENSE.txt +556 -0
- customeranalytics/web/app/base/static/assets/js/modules/bootstrap.js +15 -0
- customeranalytics/web/app/base/static/assets/js/modules/chartjs.js +4 -0
- customeranalytics/web/app/base/static/assets/js/modules/feather.js +8 -0
- customeranalytics/web/app/base/static/assets/js/modules/flatpickr.js +4 -0
- customeranalytics/web/app/base/static/assets/js/modules/moment.js +4 -0
- customeranalytics/web/app/base/static/assets/js/modules/sidebar.js +23 -0
- customeranalytics/web/app/base/static/assets/js/modules/theme.js +16 -0
- customeranalytics/web/app/base/templates/accounts/login.html +81 -0
- customeranalytics/web/app/base/templates/accounts/register.html +80 -0
- customeranalytics/web/app/base/templates/includes/footer.html +28 -0
- customeranalytics/web/app/base/templates/includes/navigation.html +51 -0
- customeranalytics/web/app/base/templates/includes/scripts.html +3 -0
- customeranalytics/web/app/base/templates/includes/sidebar.html +146 -0
- customeranalytics/web/app/base/templates/layouts/base-fullscreen.html +36 -0
- customeranalytics/web/app/base/templates/layouts/base.html +84 -0
- customeranalytics/web/app/base/util.py +30 -0
- customeranalytics/web/app/home/__init__.py +9 -0
- customeranalytics/web/app/home/forms.py +1039 -0
- customeranalytics/web/app/home/models.py +438 -0
- customeranalytics/web/app/home/profiles.py +310 -0
- customeranalytics/web/app/home/routes.py +386 -0
- customeranalytics/web/app/home/search.py +288 -0
- customeranalytics/web/app/home/static/assets/img/avatars/avatar-1.png +0 -0
- customeranalytics/web/app/home/static/assets/img/avatars/avatar-2.png +0 -0
- customeranalytics/web/app/home/static/assets/img/avatars/avatar-3.png +0 -0
- customeranalytics/web/app/home/static/assets/img/avatars/avatar-4.png +0 -0
- customeranalytics/web/app/home/static/assets/img/avatars/avatar-5.png +0 -0
- customeranalytics/web/app/home/static/assets/img/icons/customanality.png +0 -0
- customeranalytics/web/app/home/static/assets/img/icons/icon-48x48.png +0 -0
- customeranalytics/web/app/home/templates/abtest-product.html +280 -0
- customeranalytics/web/app/home/templates/abtest-promotion.html +362 -0
- customeranalytics/web/app/home/templates/abtest-segments.html +298 -0
- customeranalytics/web/app/home/templates/add-data-delivery.html +184 -0
- customeranalytics/web/app/home/templates/add-data-product.html +177 -0
- customeranalytics/web/app/home/templates/add-data-purchase.html +392 -0
- customeranalytics/web/app/home/templates/anomaly.html +261 -0
- customeranalytics/web/app/home/templates/clv.html +211 -0
- customeranalytics/web/app/home/templates/cohorts.html +308 -0
- customeranalytics/web/app/home/templates/customer-segmentation.html +308 -0
- customeranalytics/web/app/home/templates/data-es.html +152 -0
- customeranalytics/web/app/home/templates/data-execute.html +397 -0
- customeranalytics/web/app/home/templates/delivery.html +404 -0
- customeranalytics/web/app/home/templates/funnel-customer.html +240 -0
- customeranalytics/web/app/home/templates/funnel-session.html +236 -0
- customeranalytics/web/app/home/templates/index.html +524 -0
- customeranalytics/web/app/home/templates/index2.html +515 -0
- customeranalytics/web/app/home/templates/page-403.html +46 -0
- customeranalytics/web/app/home/templates/page-404.html +45 -0
- customeranalytics/web/app/home/templates/page-500.html +45 -0
- customeranalytics/web/app/home/templates/pages-blank.html +33 -0
- customeranalytics/web/app/home/templates/pages-sign-in.html +67 -0
- customeranalytics/web/app/home/templates/pages-sign-up.html +61 -0
- customeranalytics/web/app/home/templates/product.html +203 -0
- customeranalytics/web/app/home/templates/profile.html +1009 -0
- customeranalytics/web/app/home/templates/rfm.html +254 -0
- customeranalytics/web/app/home/templates/search.html +167 -0
- customeranalytics/web/app/home/templates/settings.html +205 -0
- customeranalytics/web/app/home/templates/stats-desc.html +230 -0
- customeranalytics/web/app/home/templates/stats-purchase.html +221 -0
- customeranalytics/web/config.py +30 -0
- customeranalytics/web/db.sqlite3 +0 -0
- customeranalytics/web/run.py +30 -0
- customeranalytics-0.1.dist-info/METADATA +1102 -0
- customeranalytics-0.1.dist-info/RECORD +254 -0
- customeranalytics-0.1.dist-info/WHEEL +4 -0
- customeranalytics-0.1.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,2001 @@
|
|
|
1
|
+
,client,recency_segment,frequency_segment,monetary_segment,segments,segments_numeric,frequency,recency,monetary
|
|
2
|
+
0,u_100008,4,4,2,potential loyalist,2,421.0,326,34.55
|
|
3
|
+
1,u_100013,4,5,3,loyal customers,1,233.0,350,27.552500000000002
|
|
4
|
+
2,u_100015,1,5,3,lost,10,73.0,1852,30.962500000000002
|
|
5
|
+
3,u_100062,3,4,4,loyal customers,1,449.0,891,23.763333333333332
|
|
6
|
+
4,u_100077,2,4,4,at risk,7,549.0,988,25.805
|
|
7
|
+
5,u_100115,5,3,4,loyal customers,1,755.0,14,25.621666666666666
|
|
8
|
+
6,u_100116,4,3,2,potential loyalist,2,657.0,390,41.07333333333333
|
|
9
|
+
7,u_100123,3,4,3,loyal customers,1,343.6666666666667,704,28.3125
|
|
10
|
+
8,u_100127,3,3,2,potential loyalist,2,702.0,824,41.3475
|
|
11
|
+
9,u_100142,5,5,3,loyal customers,1,229.5,53,29.736666666666668
|
|
12
|
+
10,u_100145,5,1,5,new customers,3,1345.0,121,16.8975
|
|
13
|
+
11,u_100193,4,3,2,potential loyalist,2,884.0,292,42.47
|
|
14
|
+
12,u_10020,2,3,1,others,11,652.0,938,44.5625
|
|
15
|
+
13,u_10028,4,2,2,promising,4,1115.0,300,35.935
|
|
16
|
+
14,u_10031,4,3,4,loyal customers,1,819.0,515,23.39
|
|
17
|
+
15,u_10032,3,3,2,potential loyalist,2,855.0,876,37.1275
|
|
18
|
+
16,u_100320,5,2,1,new customers,3,992.0,197,44.04
|
|
19
|
+
17,u_100327,3,4,4,loyal customers,1,482.0,700,26.511666666666667
|
|
20
|
+
18,u_100330,1,5,2,lost,10,268.0,1664,35.205
|
|
21
|
+
19,u_100345,5,5,3,loyal customers,1,139.0,180,32.985
|
|
22
|
+
20,u_100358,1,5,2,lost,10,167.0,1687,40.7225
|
|
23
|
+
21,u_100376,4,3,4,loyal customers,1,721.0,480,26.4525
|
|
24
|
+
22,u_100377,3,4,3,loyal customers,1,329.0,851,29.3375
|
|
25
|
+
23,u_100393,2,4,3,at risk,7,292.0,1176,31.04
|
|
26
|
+
24,u_1004,5,2,5,new customers,3,1209.0,221,15.5325
|
|
27
|
+
25,u_100404,5,4,2,potential loyalist,2,285.5,269,36.585
|
|
28
|
+
26,u_100405,4,3,2,potential loyalist,2,601.0,484,36.692499999999995
|
|
29
|
+
27,u_100415,3,5,4,loyal customers,1,116.0,701,21.9725
|
|
30
|
+
28,u_100416,2,4,3,at risk,7,402.0,1017,32.57
|
|
31
|
+
29,u_100435,5,4,2,potential loyalist,2,417.0,122,36.045
|
|
32
|
+
30,u_100436,2,3,5,at risk,7,723.0,994,14.627500000000001
|
|
33
|
+
31,u_100444,4,1,1,promising,4,1345.0,432,43.915
|
|
34
|
+
32,u_100447,4,3,3,loyal customers,1,709.0,517,32.9025
|
|
35
|
+
33,u_100453,3,2,3,need attention,5,1047.0,615,31.020000000000003
|
|
36
|
+
34,u_100479,1,5,1,lost,10,23.0,1836,49.1275
|
|
37
|
+
35,u_100493,3,3,5,loyal customers,1,898.0,840,17.1
|
|
38
|
+
36,u_100506,5,4,4,loyal customers,1,296.0,164,23.995
|
|
39
|
+
37,u_100512,3,2,5,others,11,1103.0,603,13.3975
|
|
40
|
+
38,u_100518,5,1,2,new customers,3,1438.0,217,34.4225
|
|
41
|
+
39,u_100524,4,4,5,loyal customers,1,443.0,466,13.32
|
|
42
|
+
40,u_100530,4,1,3,others,11,1362.0,485,31.8425
|
|
43
|
+
41,u_100541,2,5,1,others,11,104.0,1187,43.925
|
|
44
|
+
42,u_100554,4,2,2,promising,4,1082.0,434,40.864999999999995
|
|
45
|
+
43,u_100565,3,3,2,potential loyalist,2,819.0,867,41.9925
|
|
46
|
+
44,u_100578,4,3,3,loyal customers,1,841.0,319,32.1425
|
|
47
|
+
45,u_100579,3,3,5,loyal customers,1,895.0,822,14.9325
|
|
48
|
+
46,u_100580,5,2,4,new customers,3,1090.0,87,21.2375
|
|
49
|
+
47,u_100639,5,5,3,loyal customers,1,172.0,216,31.1725
|
|
50
|
+
48,u_100664,3,4,5,loyal customers,1,524.0,893,20.3
|
|
51
|
+
49,u_100666,1,4,5,lost,10,357.0,1613,12.4825
|
|
52
|
+
50,u_100669,4,2,4,others,11,1087.0,581,23.662499999999998
|
|
53
|
+
51,u_100673,2,4,5,at risk,7,299.5,1298,18.105
|
|
54
|
+
52,u_100674,2,5,3,at risk,7,152.0,1204,32.75
|
|
55
|
+
53,u_100686,5,3,4,loyal customers,1,717.0,155,22.775
|
|
56
|
+
54,u_100695,4,5,1,others,11,261.0,586,47.412499999999994
|
|
57
|
+
55,u_100697,5,2,3,new customers,3,1142.0,154,34.1275
|
|
58
|
+
56,u_100700,3,3,2,potential loyalist,2,779.0,721,41.2
|
|
59
|
+
57,u_100725,4,2,2,promising,4,943.0,408,37.89
|
|
60
|
+
58,u_100734,5,5,4,loyal customers,1,215.0,124,24.9875
|
|
61
|
+
59,u_100751,3,4,3,loyal customers,1,453.0,842,31.302500000000002
|
|
62
|
+
60,u_10077,1,5,3,lost,10,222.0,1636,32.845
|
|
63
|
+
61,u_100770,2,4,1,others,11,338.0,1179,49.557500000000005
|
|
64
|
+
62,u_100771,5,1,3,new customers,3,1647.0,252,27.939999999999998
|
|
65
|
+
63,u_100780,2,5,3,at risk,7,106.0,1106,31.605
|
|
66
|
+
64,u_100781,4,1,2,promising,4,1386.0,538,37.7575
|
|
67
|
+
65,u_100782,3,3,4,loyal customers,1,670.0,847,27.369999999999997
|
|
68
|
+
66,u_100809,4,3,2,potential loyalist,2,808.0,296,39.85
|
|
69
|
+
67,u_100821,3,4,3,loyal customers,1,578.0,777,33.47
|
|
70
|
+
68,u_100839,2,5,2,others,11,198.0,1155,34.3375
|
|
71
|
+
69,u_100847,4,3,2,potential loyalist,2,815.0,361,36.4825
|
|
72
|
+
70,u_10085,1,5,4,lost,10,34.0,1326,25.575
|
|
73
|
+
71,u_100850,4,2,3,others,11,1125.0,561,28.745
|
|
74
|
+
72,u_100862,2,4,5,at risk,7,295.0,965,20.045
|
|
75
|
+
73,u_10087,5,3,2,potential loyalist,2,751.0,265,39.589999999999996
|
|
76
|
+
74,u_100872,2,5,3,at risk,7,175.66666666666666,1009,30.074999999999996
|
|
77
|
+
75,u_100878,4,4,2,potential loyalist,2,433.0,338,38.6575
|
|
78
|
+
76,u_100883,1,4,4,lost,10,297.0,1370,24.674999999999997
|
|
79
|
+
77,u_100892,3,4,3,loyal customers,1,305.0,915,28.921666666666667
|
|
80
|
+
78,u_100899,2,5,2,others,11,261.0,1183,41.125
|
|
81
|
+
79,u_10091,3,2,5,others,11,936.0,638,14.725
|
|
82
|
+
80,u_100921,2,5,3,at risk,7,183.0,1164,29.225
|
|
83
|
+
81,u_100936,4,3,1,others,11,816.0,533,48.985
|
|
84
|
+
82,u_100938,4,4,3,loyal customers,1,485.5,350,28.123333333333335
|
|
85
|
+
83,u_100958,2,4,2,others,11,295.5,1066,36.559999999999995
|
|
86
|
+
84,u_100966,5,5,2,potential loyalist,2,162.0,156,38.370000000000005
|
|
87
|
+
85,u_100987,3,3,3,loyal customers,1,842.0,852,28.259999999999998
|
|
88
|
+
86,u_100999,5,5,2,potential loyalist,2,34.0,188,34.6525
|
|
89
|
+
87,u_101026,1,4,5,lost,10,419.0,1502,17.71
|
|
90
|
+
88,u_101039,2,5,5,at risk,7,224.0,1130,20.2675
|
|
91
|
+
89,u_101078,5,2,1,new customers,3,986.0,24,47.412499999999994
|
|
92
|
+
90,u_101084,4,2,2,promising,4,1091.0,541,34.332499999999996
|
|
93
|
+
91,u_101088,3,2,5,others,11,970.0,820,13.935
|
|
94
|
+
92,u_101089,3,5,3,loyal customers,1,193.0,700,32.575
|
|
95
|
+
93,u_101097,5,2,1,new customers,3,1196.0,182,44.115
|
|
96
|
+
94,u_101101,5,5,3,loyal customers,1,98.0,76,32.6625
|
|
97
|
+
95,u_101110,4,3,3,loyal customers,1,909.0,350,32.25
|
|
98
|
+
96,u_101119,2,5,5,at risk,7,39.0,994,10.33
|
|
99
|
+
97,u_101137,3,4,2,potential loyalist,2,474.0,711,34.62
|
|
100
|
+
98,u_101147,5,4,5,loyal customers,1,292.0,72,20.14
|
|
101
|
+
99,u_101158,5,1,3,new customers,3,1901.0,8,33.230000000000004
|
|
102
|
+
100,u_101167,1,4,5,lost,10,360.0,1589,16.892500000000002
|
|
103
|
+
101,u_10120,5,2,2,new customers,3,1065.0,51,36.8575
|
|
104
|
+
102,u_101209,2,3,5,at risk,7,889.0,939,19.065
|
|
105
|
+
103,u_101216,1,4,4,lost,10,285.0,1524,27.285000000000004
|
|
106
|
+
104,u_101219,5,3,1,others,11,707.0,243,42.79
|
|
107
|
+
105,u_101224,3,3,1,others,11,638.0,862,42.88
|
|
108
|
+
106,u_101245,3,5,2,potential loyalist,2,44.0,824,35.001666666666665
|
|
109
|
+
107,u_101247,5,2,2,new customers,3,1201.0,157,35.1125
|
|
110
|
+
108,u_101248,2,3,3,need attention,5,669.0,1164,32.5925
|
|
111
|
+
109,u_10125,4,5,5,loyal customers,1,98.0,320,15.01
|
|
112
|
+
110,u_101278,1,5,3,lost,10,82.0,1357,31.8225
|
|
113
|
+
111,u_101298,5,3,3,loyal customers,1,792.0,48,28.045
|
|
114
|
+
112,u_101309,3,3,2,potential loyalist,2,708.0,817,39.7775
|
|
115
|
+
113,u_101318,5,3,5,loyal customers,1,910.0,11,16.651666666666667
|
|
116
|
+
114,u_101326,5,1,5,new customers,3,1508.0,100,15.1275
|
|
117
|
+
115,u_101337,1,5,2,lost,10,212.0,1497,40.650000000000006
|
|
118
|
+
116,u_101380,4,3,4,loyal customers,1,780.0,517,20.6425
|
|
119
|
+
117,u_101418,3,4,4,loyal customers,1,438.0,604,25.55
|
|
120
|
+
118,u_10145,2,3,1,others,11,696.0,992,43.5725
|
|
121
|
+
119,u_101465,5,1,2,new customers,3,1714.0,101,38.405
|
|
122
|
+
120,u_101492,4,3,5,loyal customers,1,782.0,346,16.445
|
|
123
|
+
121,u_101503,1,5,4,lost,10,144.0,1561,20.9375
|
|
124
|
+
122,u_101505,2,3,2,need attention,5,622.0,1277,37.92
|
|
125
|
+
123,u_101525,5,4,4,loyal customers,1,311.0,10,24.819999999999997
|
|
126
|
+
124,u_10153,4,5,4,loyal customers,1,196.0,320,26.2375
|
|
127
|
+
125,u_101532,2,4,2,others,11,352.0,1160,36.315
|
|
128
|
+
126,u_101546,3,4,3,loyal customers,1,364.0,797,32.3475
|
|
129
|
+
127,u_101559,4,3,3,loyal customers,1,840.0,513,29.924999999999997
|
|
130
|
+
128,u_101596,5,1,4,new customers,3,1748.0,172,21.75
|
|
131
|
+
129,u_101599,5,2,4,new customers,3,1118.0,11,23.01
|
|
132
|
+
130,u_1016,4,4,3,loyal customers,1,577.0,553,30.3025
|
|
133
|
+
131,u_101603,4,4,2,potential loyalist,2,576.0,316,35.985
|
|
134
|
+
132,u_101615,5,2,3,new customers,3,1257.0,2,28.160000000000004
|
|
135
|
+
133,u_101619,3,3,3,loyal customers,1,642.0,850,28.5075
|
|
136
|
+
134,u_101622,1,5,3,lost,10,116.0,1520,32.355000000000004
|
|
137
|
+
135,u_101639,4,2,4,others,11,1105.0,340,27.137500000000003
|
|
138
|
+
136,u_101644,4,4,1,others,11,360.0,554,46.815
|
|
139
|
+
137,u_101665,2,3,5,at risk,7,914.0,936,10.595
|
|
140
|
+
138,u_101668,3,4,3,loyal customers,1,562.0,840,32.91
|
|
141
|
+
139,u_101680,5,5,5,champions,0,218.66666666666666,193,15.807500000000001
|
|
142
|
+
140,u_101684,4,2,3,others,11,1250.0,457,31.085
|
|
143
|
+
141,u_101695,3,3,4,loyal customers,1,709.0,683,26.515
|
|
144
|
+
142,u_1017,3,2,2,promising,4,1151.0,779,36.692499999999995
|
|
145
|
+
143,u_101700,5,3,3,loyal customers,1,653.0,267,31.103333333333335
|
|
146
|
+
144,u_101711,3,4,4,loyal customers,1,574.0,724,21.6
|
|
147
|
+
145,u_101733,5,2,2,new customers,3,1150.0,241,39.652499999999996
|
|
148
|
+
146,u_101737,4,5,3,loyal customers,1,75.0,409,29.6625
|
|
149
|
+
147,u_101739,5,4,2,potential loyalist,2,407.0,122,36.708333333333336
|
|
150
|
+
148,u_101755,4,5,4,loyal customers,1,215.0,460,24.0975
|
|
151
|
+
149,u_101783,5,3,5,loyal customers,1,662.0,241,13.686666666666667
|
|
152
|
+
150,u_101797,2,3,4,at risk,7,861.0,998,26.7325
|
|
153
|
+
151,u_101798,5,3,2,potential loyalist,2,856.5,124,34.88666666666666
|
|
154
|
+
152,u_101818,5,3,3,loyal customers,1,647.0,35,32.215
|
|
155
|
+
153,u_101823,4,2,5,others,11,1010.0,554,18.905
|
|
156
|
+
154,u_101829,1,5,5,can`t lose them,8,147.0,1613,11.2625
|
|
157
|
+
155,u_101836,5,3,4,loyal customers,1,690.5,35,25.77
|
|
158
|
+
156,u_101842,4,3,3,loyal customers,1,746.5,338,29.96166666666667
|
|
159
|
+
157,u_101849,5,5,5,champions,0,111.0,8,19.990000000000002
|
|
160
|
+
158,u_101872,5,3,1,others,11,809.0,130,46.1725
|
|
161
|
+
159,u_101889,1,4,2,lost,10,379.0,1313,40.177499999999995
|
|
162
|
+
160,u_101896,3,3,2,potential loyalist,2,758.0,681,34.4925
|
|
163
|
+
161,u_101907,1,5,4,lost,10,265.0,1416,22.090000000000003
|
|
164
|
+
162,u_101927,5,4,3,loyal customers,1,577.0,13,30.567500000000003
|
|
165
|
+
163,u_101947,4,5,5,loyal customers,1,186.5,492,19.583333333333332
|
|
166
|
+
164,u_101951,5,3,3,loyal customers,1,892.0,27,32.605
|
|
167
|
+
165,u_101960,4,5,3,loyal customers,1,159.0,432,33.97
|
|
168
|
+
166,u_101972,4,1,3,others,11,1333.0,504,28.0925
|
|
169
|
+
167,u_101999,4,4,2,potential loyalist,2,416.0,504,39.705
|
|
170
|
+
168,u_10201,4,1,1,promising,4,1538.0,361,46.864999999999995
|
|
171
|
+
169,u_102010,4,4,3,loyal customers,1,371.0,560,33.20666666666667
|
|
172
|
+
170,u_10202,2,4,3,at risk,7,284.0,963,33.575
|
|
173
|
+
171,u_102049,3,4,2,potential loyalist,2,506.0,846,35.925
|
|
174
|
+
172,u_102052,3,3,5,loyal customers,1,607.0,723,18.0425
|
|
175
|
+
173,u_102061,5,2,4,new customers,3,1009.0,74,25.5575
|
|
176
|
+
174,u_102077,4,3,4,loyal customers,1,789.0,460,23.9975
|
|
177
|
+
175,u_102087,3,3,3,loyal customers,1,842.0,866,29.945
|
|
178
|
+
176,u_102099,5,3,5,loyal customers,1,628.0,240,15.48
|
|
179
|
+
177,u_102103,1,4,2,lost,10,408.0,1468,35.0075
|
|
180
|
+
178,u_102112,4,3,4,loyal customers,1,740.5,318,24.718333333333334
|
|
181
|
+
179,u_102115,4,1,3,others,11,1513.0,288,31.637500000000003
|
|
182
|
+
180,u_102118,1,4,2,lost,10,419.0,1512,34.8575
|
|
183
|
+
181,u_102128,1,4,4,lost,10,315.0,1515,20.5025
|
|
184
|
+
182,u_102129,5,2,4,new customers,3,1248.0,271,25.7875
|
|
185
|
+
183,u_102149,2,5,3,at risk,7,73.0,1008,28.7925
|
|
186
|
+
184,u_102155,4,5,4,loyal customers,1,197.5,576,24.635
|
|
187
|
+
185,u_102170,4,1,3,others,11,1366.0,317,30.7675
|
|
188
|
+
186,u_102171,4,1,2,promising,4,1392.0,336,38.447500000000005
|
|
189
|
+
187,u_102194,5,3,4,loyal customers,1,729.0,122,26.4925
|
|
190
|
+
188,u_102196,3,5,3,loyal customers,1,172.0,678,30.725
|
|
191
|
+
189,u_102204,1,4,1,lost,10,503.0,1398,56.7675
|
|
192
|
+
190,u_102208,3,4,1,others,11,505.0,820,49.28
|
|
193
|
+
191,u_102211,4,5,5,loyal customers,1,194.5,289,13.028333333333334
|
|
194
|
+
192,u_102236,5,4,3,loyal customers,1,334.0,270,33.705
|
|
195
|
+
193,u_102246,4,3,3,loyal customers,1,636.5,315,32.074999999999996
|
|
196
|
+
194,u_102255,4,5,5,loyal customers,1,41.0,324,15.017500000000002
|
|
197
|
+
195,u_102259,4,3,4,loyal customers,1,828.0,349,25.7575
|
|
198
|
+
196,u_102277,2,5,3,at risk,7,113.0,1068,33.5775
|
|
199
|
+
197,u_102291,1,5,3,lost,10,20.0,1662,33.47
|
|
200
|
+
198,u_102295,5,1,3,new customers,3,1521.0,145,32.5375
|
|
201
|
+
199,u_102302,5,5,2,potential loyalist,2,2.0,262,39.6425
|
|
202
|
+
200,u_102316,2,4,3,at risk,7,309.0,1083,31.259999999999998
|
|
203
|
+
201,u_102320,1,4,2,lost,10,354.0,1497,38.662499999999994
|
|
204
|
+
202,u_102326,5,3,4,loyal customers,1,860.0,220,27.177500000000002
|
|
205
|
+
203,u_102327,5,5,4,loyal customers,1,89.0,155,21.630000000000003
|
|
206
|
+
204,u_102333,5,4,5,loyal customers,1,383.0,74,17.695
|
|
207
|
+
205,u_102357,3,5,5,loyal customers,1,87.0,681,11.3625
|
|
208
|
+
206,u_102366,2,5,2,others,11,135.0,1186,35.28
|
|
209
|
+
207,u_102371,5,4,3,loyal customers,1,332.0,51,28.8575
|
|
210
|
+
208,u_102381,4,4,4,loyal customers,1,301.0,564,27.085
|
|
211
|
+
209,u_102416,1,5,4,lost,10,121.0,1832,21.814999999999998
|
|
212
|
+
210,u_102426,2,5,4,at risk,7,225.5,1108,24.461666666666662
|
|
213
|
+
211,u_102442,5,2,2,new customers,3,948.0,15,41.682500000000005
|
|
214
|
+
212,u_102446,2,4,4,at risk,7,405.0,1274,21.2775
|
|
215
|
+
213,u_102451,3,4,2,potential loyalist,2,414.0,739,41.0925
|
|
216
|
+
214,u_102456,4,5,4,loyal customers,1,62.0,480,24.865
|
|
217
|
+
215,u_102459,3,4,3,loyal customers,1,554.5,723,32.045
|
|
218
|
+
216,u_10248,4,5,5,loyal customers,1,192.0,385,13.1175
|
|
219
|
+
217,u_102482,5,4,5,loyal customers,1,291.0,221,20.265
|
|
220
|
+
218,u_102488,5,3,2,potential loyalist,2,619.5,225,39.23166666666667
|
|
221
|
+
219,u_102505,2,4,2,others,11,365.0,972,39.3575
|
|
222
|
+
220,u_102518,5,3,3,loyal customers,1,912.0,52,32.86166666666667
|
|
223
|
+
221,u_102522,4,3,2,potential loyalist,2,690.0,415,38.682500000000005
|
|
224
|
+
222,u_102533,5,3,3,loyal customers,1,867.0,72,30.3925
|
|
225
|
+
223,u_102535,1,3,2,lost,10,652.0,1320,39.2175
|
|
226
|
+
224,u_102548,4,4,3,loyal customers,1,358.0,493,31.5675
|
|
227
|
+
225,u_102549,3,5,5,loyal customers,1,68.0,865,16.325000000000003
|
|
228
|
+
226,u_102577,4,5,2,potential loyalist,2,138.0,580,34.9375
|
|
229
|
+
227,u_102589,4,3,2,potential loyalist,2,636.5,388,34.53
|
|
230
|
+
228,u_102605,4,5,2,potential loyalist,2,51.0,481,37.635000000000005
|
|
231
|
+
229,u_102616,5,5,1,others,11,110.0,158,49.712500000000006
|
|
232
|
+
230,u_102637,4,5,3,loyal customers,1,140.0,292,32.5475
|
|
233
|
+
231,u_102650,4,3,5,loyal customers,1,828.0,362,15.2375
|
|
234
|
+
232,u_102660,3,3,4,loyal customers,1,633.0,773,22.995
|
|
235
|
+
233,u_102661,4,2,2,promising,4,1111.0,439,35.2825
|
|
236
|
+
234,u_102662,5,1,2,new customers,3,1843.0,14,39.2475
|
|
237
|
+
235,u_102696,3,2,5,others,11,974.0,684,17.2575
|
|
238
|
+
236,u_10270,5,3,4,loyal customers,1,909.5,10,23.606666666666666
|
|
239
|
+
237,u_102703,3,4,2,potential loyalist,2,502.0,701,34.2775
|
|
240
|
+
238,u_102727,1,5,3,lost,10,239.0,1562,33.045
|
|
241
|
+
239,u_102733,2,3,5,at risk,7,681.0,1075,14.4
|
|
242
|
+
240,u_102752,5,3,4,loyal customers,1,810.5,156,22.385
|
|
243
|
+
241,u_102755,2,4,3,at risk,7,540.0,1295,29.752499999999998
|
|
244
|
+
242,u_102776,5,2,4,new customers,3,933.0,221,24.71
|
|
245
|
+
243,u_102781,2,2,2,need attention,5,935.0,1036,36.725
|
|
246
|
+
244,u_102790,5,4,5,loyal customers,1,332.0,174,14.6725
|
|
247
|
+
245,u_102796,2,4,3,at risk,7,311.0,1081,30.47
|
|
248
|
+
246,u_10280,5,4,3,loyal customers,1,521.0,269,29.7075
|
|
249
|
+
247,u_102809,5,4,4,loyal customers,1,386.0,153,24.97
|
|
250
|
+
248,u_10286,5,1,2,new customers,3,1763.0,14,37.8425
|
|
251
|
+
249,u_102862,5,3,3,loyal customers,1,851.0,269,33.94833333333333
|
|
252
|
+
250,u_102875,4,3,2,potential loyalist,2,688.0,579,34.294999999999995
|
|
253
|
+
251,u_10288,5,3,4,loyal customers,1,858.0,250,21.7725
|
|
254
|
+
252,u_102890,5,5,2,potential loyalist,2,69.0,269,40.33
|
|
255
|
+
253,u_102909,1,4,4,lost,10,356.0,1472,20.9025
|
|
256
|
+
254,u_102912,5,5,4,loyal customers,1,69.0,196,22.4175
|
|
257
|
+
255,u_102922,2,3,2,need attention,5,844.0,1059,36.9375
|
|
258
|
+
256,u_102946,2,4,2,others,11,430.0,1178,37.2975
|
|
259
|
+
257,u_102948,4,2,4,others,11,1117.0,323,26.939999999999998
|
|
260
|
+
258,u_102956,4,2,1,promising,4,1069.0,325,44.0375
|
|
261
|
+
259,u_102968,2,4,2,others,11,303.0,1185,35.3875
|
|
262
|
+
260,u_102979,5,4,4,loyal customers,1,495.0,4,24.316666666666666
|
|
263
|
+
261,u_102988,5,3,3,loyal customers,1,815.0,243,28.627499999999998
|
|
264
|
+
262,u_1030,1,5,1,lost,10,194.0,1489,46.205
|
|
265
|
+
263,u_10300,5,2,4,new customers,3,966.0,54,23.7125
|
|
266
|
+
264,u_103008,5,1,5,new customers,3,1367.0,244,18.48
|
|
267
|
+
265,u_103026,3,4,2,potential loyalist,2,377.0,755,38.0075
|
|
268
|
+
266,u_103041,4,3,4,loyal customers,1,636.0,481,22.341666666666665
|
|
269
|
+
267,u_103056,2,4,3,at risk,7,334.0,1085,32.60166666666667
|
|
270
|
+
268,u_103102,4,2,2,promising,4,958.0,521,36.879999999999995
|
|
271
|
+
269,u_103117,5,1,2,new customers,3,1753.0,194,41.0525
|
|
272
|
+
270,u_10313,5,2,3,new customers,3,984.0,100,31.795
|
|
273
|
+
271,u_103139,2,4,4,at risk,7,359.0,1155,26.7425
|
|
274
|
+
272,u_103142,3,4,2,potential loyalist,2,421.5,677,36.685
|
|
275
|
+
273,u_103143,5,4,3,loyal customers,1,387.0,218,29.485
|
|
276
|
+
274,u_103147,3,4,2,potential loyalist,2,550.0,747,38.8025
|
|
277
|
+
275,u_103149,2,3,5,at risk,7,615.0,1259,18.380000000000003
|
|
278
|
+
276,u_10318,2,4,4,at risk,7,465.0,1250,25.2775
|
|
279
|
+
277,u_103188,5,2,4,new customers,3,1078.0,29,26.9175
|
|
280
|
+
278,u_103195,1,5,3,lost,10,121.0,1738,27.872500000000002
|
|
281
|
+
279,u_103218,2,3,2,need attention,5,627.0,1059,38.3925
|
|
282
|
+
280,u_103223,4,5,4,loyal customers,1,238.0,318,20.455
|
|
283
|
+
281,u_103229,3,5,3,loyal customers,1,168.0,725,30.9525
|
|
284
|
+
282,u_103241,4,2,4,others,11,1278.0,577,26.417499999999997
|
|
285
|
+
283,u_10325,5,3,4,loyal customers,1,702.0,122,22.853333333333335
|
|
286
|
+
284,u_103264,3,3,3,loyal customers,1,651.0,827,29.54
|
|
287
|
+
285,u_103276,5,2,2,new customers,3,1021.0,155,35.25
|
|
288
|
+
286,u_103283,3,3,3,loyal customers,1,851.0,841,29.775000000000002
|
|
289
|
+
287,u_103289,4,4,4,loyal customers,1,375.5,412,23.754999999999995
|
|
290
|
+
288,u_103295,5,3,2,potential loyalist,2,781.0,111,35.415
|
|
291
|
+
289,u_103300,2,4,5,at risk,7,365.0,1179,15.690000000000001
|
|
292
|
+
290,u_103301,1,4,2,lost,10,480.0,1492,34.59
|
|
293
|
+
291,u_103304,4,4,2,potential loyalist,2,405.0,535,36.080000000000005
|
|
294
|
+
292,u_103308,4,3,3,loyal customers,1,825.0,408,28.322499999999998
|
|
295
|
+
293,u_103347,5,2,3,new customers,3,1134.0,216,33.1775
|
|
296
|
+
294,u_103409,4,3,3,loyal customers,1,590.0,344,27.87833333333333
|
|
297
|
+
295,u_103420,2,4,3,at risk,7,372.0,1130,28.024999999999995
|
|
298
|
+
296,u_103438,5,5,3,loyal customers,1,29.0,214,31.0925
|
|
299
|
+
297,u_103441,4,3,1,others,11,764.0,317,50.5225
|
|
300
|
+
298,u_103451,3,3,5,loyal customers,1,698.0,865,16.4375
|
|
301
|
+
299,u_103470,3,4,3,loyal customers,1,375.0,828,27.5425
|
|
302
|
+
300,u_103471,3,3,2,potential loyalist,2,617.0,846,35.339999999999996
|
|
303
|
+
301,u_103480,1,4,4,lost,10,291.0,1450,21.997500000000002
|
|
304
|
+
302,u_103505,3,4,4,loyal customers,1,376.0,932,26.7825
|
|
305
|
+
303,u_103517,3,4,3,loyal customers,1,530.0,828,28.4
|
|
306
|
+
304,u_103523,2,3,3,need attention,5,740.0,950,28.3575
|
|
307
|
+
305,u_103525,3,2,3,need attention,5,1107.0,697,31.5375
|
|
308
|
+
306,u_103542,2,3,4,at risk,7,587.0,937,23.04
|
|
309
|
+
307,u_103543,1,4,1,lost,10,390.0,1469,47.254999999999995
|
|
310
|
+
308,u_103565,4,4,4,loyal customers,1,328.0,276,20.8925
|
|
311
|
+
309,u_103566,2,3,3,need attention,5,701.0,1250,30.905
|
|
312
|
+
310,u_103567,4,4,1,others,11,528.0,504,42.785
|
|
313
|
+
311,u_103581,2,4,2,others,11,371.0,1129,42.0475
|
|
314
|
+
312,u_103592,1,4,1,lost,10,470.0,1479,43.5925
|
|
315
|
+
313,u_103601,3,2,4,others,11,955.0,700,24.4225
|
|
316
|
+
314,u_103611,1,5,2,lost,10,24.0,1332,35.68
|
|
317
|
+
315,u_103632,5,5,4,loyal customers,1,143.0,244,21.5225
|
|
318
|
+
316,u_103647,3,3,4,loyal customers,1,727.0,796,27.427500000000002
|
|
319
|
+
317,u_103679,5,4,2,potential loyalist,2,470.6666666666667,269,34.65625
|
|
320
|
+
318,u_103680,3,2,4,others,11,1106.0,843,26.54
|
|
321
|
+
319,u_103687,3,4,2,potential loyalist,2,583.0,770,36.89
|
|
322
|
+
320,u_103703,2,4,5,at risk,7,501.0,1068,19.62
|
|
323
|
+
321,u_103715,4,1,3,others,11,1442.0,299,32.2475
|
|
324
|
+
322,u_103731,4,2,4,others,11,1300.0,366,22.5075
|
|
325
|
+
323,u_103734,2,5,4,at risk,7,62.0,1190,25.32
|
|
326
|
+
324,u_103750,2,4,4,at risk,7,480.0,1034,24.71
|
|
327
|
+
325,u_103754,2,4,3,at risk,7,348.0,1177,31.531666666666666
|
|
328
|
+
326,u_103761,3,4,2,potential loyalist,2,489.0,769,37.18
|
|
329
|
+
327,u_103795,4,1,1,promising,4,1544.0,436,48.9825
|
|
330
|
+
328,u_103796,3,3,3,loyal customers,1,700.0,872,28.447499999999998
|
|
331
|
+
329,u_103821,5,4,5,loyal customers,1,559.0,243,20.4125
|
|
332
|
+
330,u_103836,2,5,2,others,11,128.0,1061,35.3125
|
|
333
|
+
331,u_103842,4,5,2,potential loyalist,2,16.0,537,38.6325
|
|
334
|
+
332,u_103860,3,2,3,need attention,5,1042.0,903,33.29
|
|
335
|
+
333,u_103863,4,5,1,others,11,8.0,544,42.629999999999995
|
|
336
|
+
334,u_103873,4,4,4,loyal customers,1,307.0,326,24.405
|
|
337
|
+
335,u_103885,2,4,2,others,11,489.0,1178,38.3875
|
|
338
|
+
336,u_10390,1,5,4,lost,10,144.0,1754,25.915
|
|
339
|
+
337,u_103914,4,2,3,others,11,1125.0,580,33.655
|
|
340
|
+
338,u_103916,3,2,5,others,11,1148.0,677,16.7225
|
|
341
|
+
339,u_103928,4,2,5,others,11,1276.0,429,14.219999999999999
|
|
342
|
+
340,u_10393,4,5,1,others,11,221.0,561,46.6775
|
|
343
|
+
341,u_103932,4,3,5,loyal customers,1,864.0,324,16.4275
|
|
344
|
+
342,u_103940,5,3,5,loyal customers,1,664.0,158,17.5075
|
|
345
|
+
343,u_103963,5,3,3,loyal customers,1,747.0,101,30.317500000000003
|
|
346
|
+
344,u_103966,5,3,4,loyal customers,1,818.0,266,23.52
|
|
347
|
+
345,u_103978,2,4,4,at risk,7,506.0,1203,24.362499999999997
|
|
348
|
+
346,u_103979,3,5,2,potential loyalist,2,28.0,823,41.2225
|
|
349
|
+
347,u_103986,3,5,3,loyal customers,1,199.0,793,28.4075
|
|
350
|
+
348,u_103988,5,4,2,potential loyalist,2,361.0,155,35.964999999999996
|
|
351
|
+
349,u_104,5,3,2,potential loyalist,2,599.0,3,40.3
|
|
352
|
+
350,u_104003,5,5,2,potential loyalist,2,112.0,179,36.93
|
|
353
|
+
351,u_104006,5,5,3,loyal customers,1,54.0,124,29.085
|
|
354
|
+
352,u_104011,3,4,3,loyal customers,1,502.0,699,32.288333333333334
|
|
355
|
+
353,u_104015,1,4,4,lost,10,334.0,1522,24.0075
|
|
356
|
+
354,u_104024,4,2,4,others,11,1056.0,484,25.7075
|
|
357
|
+
355,u_104043,5,2,5,new customers,3,1004.0,196,14.5225
|
|
358
|
+
356,u_104050,2,5,2,others,11,30.0,990,41.005
|
|
359
|
+
357,u_104057,5,2,3,new customers,3,1102.0,97,33.61
|
|
360
|
+
358,u_104095,2,4,4,at risk,7,316.0,1202,24.55
|
|
361
|
+
359,u_104114,3,2,5,others,11,1212.0,710,17.735
|
|
362
|
+
360,u_104117,4,1,4,others,11,1376.0,386,26.8425
|
|
363
|
+
361,u_104122,4,4,4,loyal customers,1,370.0,458,24.1075
|
|
364
|
+
362,u_104136,3,4,3,loyal customers,1,425.0,710,30.0475
|
|
365
|
+
363,u_104138,3,2,4,others,11,1010.0,605,27.3475
|
|
366
|
+
364,u_104149,2,5,4,at risk,7,13.0,1189,23.6625
|
|
367
|
+
365,u_104153,2,5,2,others,11,23.0,1178,35.3575
|
|
368
|
+
366,u_104167,5,5,3,loyal customers,1,146.0,122,31.19
|
|
369
|
+
367,u_104179,4,2,4,others,11,937.0,432,24.674999999999997
|
|
370
|
+
368,u_104191,3,2,2,promising,4,963.0,697,41.025
|
|
371
|
+
369,u_10420,2,4,2,others,11,504.0,1180,41.82
|
|
372
|
+
370,u_104222,3,2,3,need attention,5,1196.0,775,28.372500000000002
|
|
373
|
+
371,u_104231,2,3,1,others,11,737.0,1037,67.505
|
|
374
|
+
372,u_104234,3,4,5,loyal customers,1,503.0,629,17.01
|
|
375
|
+
373,u_104235,5,2,5,new customers,3,1082.0,221,18.19
|
|
376
|
+
374,u_104280,5,5,2,potential loyalist,2,172.0,264,39.6325
|
|
377
|
+
375,u_104291,4,3,2,potential loyalist,2,824.0,363,37.4375
|
|
378
|
+
376,u_104293,4,2,3,others,11,1219.0,512,31.2775
|
|
379
|
+
377,u_104311,2,4,4,at risk,7,535.0,1129,24.165
|
|
380
|
+
378,u_104337,2,3,4,at risk,7,715.0,1133,27.4025
|
|
381
|
+
379,u_104382,5,5,2,potential loyalist,2,213.0,50,35.485
|
|
382
|
+
380,u_104385,2,4,2,others,11,359.0,1084,36.269999999999996
|
|
383
|
+
381,u_104405,3,4,2,potential loyalist,2,517.0,722,42.205
|
|
384
|
+
382,u_10443,5,2,2,new customers,3,971.0,21,35.6475
|
|
385
|
+
383,u_104440,4,3,3,loyal customers,1,789.0,393,31.9925
|
|
386
|
+
384,u_104442,2,3,4,at risk,7,763.0,1069,23.0975
|
|
387
|
+
385,u_104448,4,3,5,loyal customers,1,696.0,579,15.760000000000002
|
|
388
|
+
386,u_104451,4,4,2,potential loyalist,2,369.0,490,39.85166666666667
|
|
389
|
+
387,u_104464,1,4,4,lost,10,337.0,1328,24.1175
|
|
390
|
+
388,u_104479,2,5,4,at risk,7,50.0,941,21.825
|
|
391
|
+
389,u_104484,1,5,2,lost,10,140.0,1669,38.5125
|
|
392
|
+
390,u_104504,2,3,4,at risk,7,747.0,941,25.862499999999997
|
|
393
|
+
391,u_104527,3,3,5,loyal customers,1,902.0,801,10.317499999999999
|
|
394
|
+
392,u_104542,4,2,4,others,11,1122.0,509,26.65
|
|
395
|
+
393,u_104550,5,3,3,loyal customers,1,852.5,6,34.13166666666667
|
|
396
|
+
394,u_104555,4,3,4,loyal customers,1,642.5,421,26.580000000000002
|
|
397
|
+
395,u_104557,5,1,2,new customers,3,1654.0,13,37.975
|
|
398
|
+
396,u_104561,1,5,4,lost,10,10.0,1850,25.55
|
|
399
|
+
397,u_104578,5,4,3,loyal customers,1,288.0,155,30.935000000000002
|
|
400
|
+
398,u_104581,3,2,2,promising,4,1033.0,768,40.72
|
|
401
|
+
399,u_104590,1,4,2,lost,10,470.0,1494,35.317499999999995
|
|
402
|
+
400,u_104591,1,5,4,lost,10,16.0,1522,20.72
|
|
403
|
+
401,u_104592,3,5,4,loyal customers,1,25.0,770,23.1025
|
|
404
|
+
402,u_104607,4,4,4,loyal customers,1,443.0,337,23.067500000000003
|
|
405
|
+
403,u_10461,1,5,4,lost,10,101.0,1368,20.7575
|
|
406
|
+
404,u_104611,5,2,1,new customers,3,1007.0,152,46.707499999999996
|
|
407
|
+
405,u_104612,5,4,4,loyal customers,1,292.0,49,24.14
|
|
408
|
+
406,u_104639,2,3,3,need attention,5,630.0,1201,33.8525
|
|
409
|
+
407,u_10465,1,5,3,lost,10,7.0,1347,27.9775
|
|
410
|
+
408,u_104657,5,3,2,potential loyalist,2,700.0,216,38.7125
|
|
411
|
+
409,u_104690,5,5,2,potential loyalist,2,59.0,220,36.4025
|
|
412
|
+
410,u_104719,5,1,3,new customers,3,1489.0,49,29.83
|
|
413
|
+
411,u_104736,4,3,4,loyal customers,1,877.0,532,25.6
|
|
414
|
+
412,u_104746,3,3,3,loyal customers,1,841.0,842,28.8775
|
|
415
|
+
413,u_104749,4,1,2,promising,4,1592.0,312,40.6025
|
|
416
|
+
414,u_10475,4,3,3,loyal customers,1,922.0,433,32.83
|
|
417
|
+
415,u_104768,1,5,1,lost,10,4.0,1348,58.8975
|
|
418
|
+
416,u_104778,4,2,3,others,11,1305.0,361,29.2525
|
|
419
|
+
417,u_104784,1,4,4,lost,10,302.0,1560,24.372500000000002
|
|
420
|
+
418,u_104795,5,2,4,new customers,3,1089.0,242,24.2
|
|
421
|
+
419,u_104801,4,2,4,others,11,1303.0,389,22.1825
|
|
422
|
+
420,u_104820,5,3,4,loyal customers,1,630.0,244,26.955000000000002
|
|
423
|
+
421,u_104826,1,5,3,lost,10,97.0,1632,33.29
|
|
424
|
+
422,u_104835,4,5,3,loyal customers,1,219.0,363,27.9
|
|
425
|
+
423,u_104836,2,5,3,at risk,7,155.5,937,28.111666666666665
|
|
426
|
+
424,u_104843,5,1,1,new customers,3,1409.0,180,47.17
|
|
427
|
+
425,u_104873,5,3,3,loyal customers,1,744.0,101,31.637500000000003
|
|
428
|
+
426,u_10489,4,4,3,loyal customers,1,552.0,508,32.34
|
|
429
|
+
427,u_104891,4,1,2,promising,4,1521.0,340,38.7275
|
|
430
|
+
428,u_104945,5,2,5,new customers,3,1181.0,6,16.45
|
|
431
|
+
429,u_104952,4,4,3,loyal customers,1,380.0,343,33.84
|
|
432
|
+
430,u_104953,2,3,5,at risk,7,785.0,1016,11.475000000000001
|
|
433
|
+
431,u_104985,3,3,3,loyal customers,1,651.0,914,34.205
|
|
434
|
+
432,u_104997,4,2,4,others,11,1129.0,437,25.8525
|
|
435
|
+
433,u_1050,4,2,4,others,11,1216.0,491,25.369999999999997
|
|
436
|
+
434,u_105014,5,5,4,loyal customers,1,151.0,271,22.6525
|
|
437
|
+
435,u_105015,3,4,1,others,11,484.0,913,43.605000000000004
|
|
438
|
+
436,u_105036,2,3,3,need attention,5,716.0,1162,27.7425
|
|
439
|
+
437,u_105041,4,1,2,promising,4,1458.0,368,38.19
|
|
440
|
+
438,u_10506,4,2,5,others,11,1166.0,541,17.200000000000003
|
|
441
|
+
439,u_105060,1,5,4,lost,10,23.0,1731,24.064999999999998
|
|
442
|
+
440,u_105061,3,4,5,loyal customers,1,573.0,611,20.1175
|
|
443
|
+
441,u_105068,2,3,2,need attention,5,729.0,948,35.59
|
|
444
|
+
442,u_10509,4,2,3,others,11,1109.0,579,33.4025
|
|
445
|
+
443,u_105106,3,4,2,potential loyalist,2,318.0,601,39.325
|
|
446
|
+
444,u_105118,5,3,4,loyal customers,1,753.0,73,25.0475
|
|
447
|
+
445,u_105157,4,2,4,others,11,1313.0,439,25.9575
|
|
448
|
+
446,u_105163,1,5,2,lost,10,109.0,1332,35.9825
|
|
449
|
+
447,u_10517,4,2,4,others,11,1008.0,460,27.3
|
|
450
|
+
448,u_105173,3,2,3,need attention,5,1009.0,828,33.08
|
|
451
|
+
449,u_105183,4,4,3,loyal customers,1,549.0,557,29.744999999999997
|
|
452
|
+
450,u_10519,4,2,2,promising,4,982.0,410,36.165
|
|
453
|
+
451,u_105198,5,1,4,new customers,3,1528.0,158,25.22
|
|
454
|
+
452,u_1052,3,5,4,loyal customers,1,14.0,852,27.237499999999997
|
|
455
|
+
453,u_105201,5,3,3,loyal customers,1,587.0,177,31.805000000000003
|
|
456
|
+
454,u_105203,4,4,3,loyal customers,1,549.0,483,30.520000000000003
|
|
457
|
+
455,u_105221,2,4,1,others,11,361.0,1201,46.3475
|
|
458
|
+
456,u_105235,2,3,5,at risk,7,697.0,1158,16.7825
|
|
459
|
+
457,u_105250,5,5,4,loyal customers,1,160.0,106,25.09
|
|
460
|
+
458,u_105258,5,1,4,new customers,3,1366.0,147,23.65
|
|
461
|
+
459,u_105261,3,4,3,loyal customers,1,366.0,841,30.92
|
|
462
|
+
460,u_105269,2,4,5,at risk,7,382.0,1160,17.4
|
|
463
|
+
461,u_105289,5,4,3,loyal customers,1,406.0,52,28.36
|
|
464
|
+
462,u_105291,3,3,4,loyal customers,1,735.0,876,26.612499999999997
|
|
465
|
+
463,u_105306,2,3,2,need attention,5,668.0,1155,37.055
|
|
466
|
+
464,u_105316,5,2,5,new customers,3,1000.0,12,18.515
|
|
467
|
+
465,u_105333,5,2,2,new customers,3,1249.0,27,38.0175
|
|
468
|
+
466,u_105335,1,5,3,lost,10,213.0,1395,29.490000000000002
|
|
469
|
+
467,u_105366,5,1,5,new customers,3,1589.0,104,20.057499999999997
|
|
470
|
+
468,u_105368,4,4,3,loyal customers,1,467.0,544,33.15
|
|
471
|
+
469,u_105371,3,4,4,loyal customers,1,573.0,701,27.270000000000003
|
|
472
|
+
470,u_105379,5,4,2,potential loyalist,2,437.3333333333333,182,39.7925
|
|
473
|
+
471,u_105386,5,4,2,potential loyalist,2,382.5,11,39.829
|
|
474
|
+
472,u_105390,3,3,4,loyal customers,1,740.0,823,20.965
|
|
475
|
+
473,u_105396,4,1,3,others,11,1459.0,365,27.8075
|
|
476
|
+
474,u_105402,5,1,3,new customers,3,1498.0,245,32.8925
|
|
477
|
+
475,u_105412,5,5,3,loyal customers,1,34.0,86,27.5875
|
|
478
|
+
476,u_10543,3,2,4,others,11,1097.0,634,25.185000000000002
|
|
479
|
+
477,u_105455,2,3,4,at risk,7,884.0,1061,25.125
|
|
480
|
+
478,u_105464,4,3,1,others,11,728.0,460,49.447500000000005
|
|
481
|
+
479,u_105474,1,4,2,lost,10,341.0,1536,42.435
|
|
482
|
+
480,u_105482,4,3,4,loyal customers,1,704.5,386,25.53
|
|
483
|
+
481,u_105484,3,2,3,need attention,5,1040.0,818,32.7625
|
|
484
|
+
482,u_105501,4,4,5,loyal customers,1,470.0,515,14.5625
|
|
485
|
+
483,u_105523,1,5,2,lost,10,152.0,1498,42.3825
|
|
486
|
+
484,u_105529,2,4,2,others,11,408.0,1056,35.5225
|
|
487
|
+
485,u_105534,3,2,4,others,11,1175.0,680,26.2575
|
|
488
|
+
486,u_105547,4,3,4,loyal customers,1,754.0,517,23.185
|
|
489
|
+
487,u_10555,5,2,5,new customers,3,1117.0,52,18.7075
|
|
490
|
+
488,u_105567,3,3,2,potential loyalist,2,664.0,686,34.6175
|
|
491
|
+
489,u_105579,5,5,3,loyal customers,1,151.0,3,27.56
|
|
492
|
+
490,u_105599,5,3,3,loyal customers,1,911.5,49,32.343333333333334
|
|
493
|
+
491,u_105600,3,5,2,potential loyalist,2,145.0,916,41.55
|
|
494
|
+
492,u_105613,2,5,4,at risk,7,83.0,1072,24.627499999999998
|
|
495
|
+
493,u_105617,3,5,1,others,11,254.0,874,44.375
|
|
496
|
+
494,u_105639,2,4,4,at risk,7,559.0,1108,24.83
|
|
497
|
+
495,u_105640,1,4,3,lost,10,466.0,1420,28.11
|
|
498
|
+
496,u_105679,5,5,4,loyal customers,1,68.0,221,25.2125
|
|
499
|
+
497,u_105683,2,3,3,need attention,5,608.0,1080,28.2125
|
|
500
|
+
498,u_105702,3,4,4,loyal customers,1,581.0,770,25.0275
|
|
501
|
+
499,u_105773,4,1,3,others,11,1366.0,316,27.705000000000002
|
|
502
|
+
500,u_105785,5,4,4,loyal customers,1,286.0,197,22.15
|
|
503
|
+
501,u_105787,1,3,4,lost,10,598.0,1346,23.115
|
|
504
|
+
502,u_105805,5,5,5,champions,0,111.0,100,8.682500000000001
|
|
505
|
+
503,u_105808,3,3,4,loyal customers,1,733.0,682,23.1025
|
|
506
|
+
504,u_10582,5,4,3,loyal customers,1,448.0,179,28.9375
|
|
507
|
+
505,u_105830,1,5,4,lost,10,40.0,1447,21.712500000000002
|
|
508
|
+
506,u_105832,4,5,5,loyal customers,1,47.0,555,19.2375
|
|
509
|
+
507,u_105838,5,1,1,new customers,3,1767.0,89,47.417500000000004
|
|
510
|
+
508,u_105845,5,1,2,new customers,3,1558.0,246,35.195
|
|
511
|
+
509,u_105853,5,2,4,new customers,3,1224.0,272,20.6375
|
|
512
|
+
510,u_105855,5,1,1,new customers,3,1428.0,11,49.957499999999996
|
|
513
|
+
511,u_10587,2,3,3,need attention,5,876.0,985,29.2575
|
|
514
|
+
512,u_105872,3,5,2,potential loyalist,2,59.0,793,38.453333333333326
|
|
515
|
+
513,u_105888,4,4,3,loyal customers,1,456.0,288,28.57
|
|
516
|
+
514,u_105889,5,1,2,new customers,3,1358.0,242,34.575
|
|
517
|
+
515,u_105901,3,3,3,loyal customers,1,808.0,607,33.802499999999995
|
|
518
|
+
516,u_105911,4,5,1,others,11,163.0,386,44.855
|
|
519
|
+
517,u_105931,4,2,4,others,11,986.0,367,27.09
|
|
520
|
+
518,u_105957,5,4,4,loyal customers,1,336.0,8,25.509999999999998
|
|
521
|
+
519,u_105966,3,4,5,loyal customers,1,504.0,825,16.9775
|
|
522
|
+
520,u_105981,5,1,2,new customers,3,1701.0,4,41.224999999999994
|
|
523
|
+
521,u_105996,5,2,2,new customers,3,1274.0,73,40.575
|
|
524
|
+
522,u_106028,2,3,3,need attention,5,818.0,986,33.667500000000004
|
|
525
|
+
523,u_106030,3,4,2,potential loyalist,2,343.0,840,41.6425
|
|
526
|
+
524,u_106078,2,5,2,others,11,87.0,995,36.71
|
|
527
|
+
525,u_106124,4,3,2,potential loyalist,2,744.0,456,39.96
|
|
528
|
+
526,u_106146,4,5,4,loyal customers,1,163.0,325,23.057499999999997
|
|
529
|
+
527,u_106160,4,2,1,promising,4,1265.0,487,57.33
|
|
530
|
+
528,u_106187,3,3,4,loyal customers,1,607.0,819,27.3175
|
|
531
|
+
529,u_106195,3,3,3,loyal customers,1,925.0,707,31.060000000000002
|
|
532
|
+
530,u_106204,3,2,5,others,11,1019.0,854,19.425
|
|
533
|
+
531,u_106211,5,3,4,loyal customers,1,645.0,10,26.015
|
|
534
|
+
532,u_106214,1,5,3,lost,10,231.5,1395,33.696666666666665
|
|
535
|
+
533,u_106220,3,4,4,loyal customers,1,561.0,830,23.895
|
|
536
|
+
534,u_106221,4,3,5,loyal customers,1,612.0,317,17.305
|
|
537
|
+
535,u_106251,4,1,4,others,11,1435.0,322,26.235
|
|
538
|
+
536,u_106274,5,2,1,new customers,3,1285.0,134,44.65
|
|
539
|
+
537,u_106275,3,4,2,potential loyalist,2,346.0,841,41.155
|
|
540
|
+
538,u_106284,5,3,5,loyal customers,1,789.0,245,14.0
|
|
541
|
+
539,u_106297,2,3,5,at risk,7,700.0,970,16.557499999999997
|
|
542
|
+
540,u_10630,4,4,5,loyal customers,1,378.0,581,16.315
|
|
543
|
+
541,u_106303,2,4,2,others,11,550.0,1022,35.192499999999995
|
|
544
|
+
542,u_106304,4,4,2,potential loyalist,2,282.0,346,36.682500000000005
|
|
545
|
+
543,u_106306,5,3,2,potential loyalist,2,812.0,8,41.3075
|
|
546
|
+
544,u_106308,3,3,3,loyal customers,1,605.0,801,29.775
|
|
547
|
+
545,u_106311,3,1,2,promising,4,1341.0,604,38.315
|
|
548
|
+
546,u_106337,3,5,2,potential loyalist,2,275.0,846,41.50666666666667
|
|
549
|
+
547,u_106346,2,5,1,others,11,248.5,1205,47.22666666666667
|
|
550
|
+
548,u_106348,2,4,2,others,11,289.0,940,38.6475
|
|
551
|
+
549,u_106351,2,5,2,others,11,262.5,1186,35.473333333333336
|
|
552
|
+
550,u_106354,4,2,4,others,11,1121.0,439,26.025
|
|
553
|
+
551,u_106358,1,5,4,lost,10,75.0,1708,26.650000000000002
|
|
554
|
+
552,u_106360,5,1,1,new customers,3,1718.0,225,48.9375
|
|
555
|
+
553,u_106364,3,5,4,loyal customers,1,73.0,770,21.770000000000003
|
|
556
|
+
554,u_106365,3,2,2,promising,4,1020.0,828,39.165000000000006
|
|
557
|
+
555,u_106367,4,3,4,loyal customers,1,836.0,462,26.270000000000003
|
|
558
|
+
556,u_106384,4,1,2,promising,4,1512.0,436,35.09
|
|
559
|
+
557,u_106397,4,1,3,others,11,1346.0,345,34.135000000000005
|
|
560
|
+
558,u_106426,2,4,4,at risk,7,322.0,1085,25.671666666666667
|
|
561
|
+
559,u_106434,4,3,3,loyal customers,1,919.0,531,32.9575
|
|
562
|
+
560,u_106440,5,2,3,new customers,3,1127.0,193,30.332500000000003
|
|
563
|
+
561,u_106451,1,5,2,lost,10,245.0,1610,39.16
|
|
564
|
+
562,u_106458,5,5,3,loyal customers,1,70.0,221,33.5875
|
|
565
|
+
563,u_106460,4,4,4,loyal customers,1,390.0,555,21.8425
|
|
566
|
+
564,u_106468,4,3,3,loyal customers,1,736.0,515,30.6325
|
|
567
|
+
565,u_106495,5,2,3,new customers,3,1178.0,11,29.7
|
|
568
|
+
566,u_106511,5,5,5,champions,0,158.0,157,16.5875
|
|
569
|
+
567,u_106527,4,2,2,promising,4,1120.0,541,36.1075
|
|
570
|
+
568,u_106531,5,3,2,potential loyalist,2,691.0,155,40.90833333333333
|
|
571
|
+
569,u_106541,5,1,4,new customers,3,1420.0,72,21.7725
|
|
572
|
+
570,u_106575,3,4,4,loyal customers,1,428.0,845,21.872500000000002
|
|
573
|
+
571,u_106605,1,4,4,lost,10,528.0,1421,22.0875
|
|
574
|
+
572,u_106608,5,4,4,loyal customers,1,514.5,267,24.203333333333333
|
|
575
|
+
573,u_106620,2,4,3,at risk,7,525.0,970,28.3575
|
|
576
|
+
574,u_106625,5,1,3,new customers,3,1702.0,270,32.9525
|
|
577
|
+
575,u_106626,3,2,5,others,11,939.0,840,15.9225
|
|
578
|
+
576,u_106650,3,5,2,potential loyalist,2,271.5,850,35.81999999999999
|
|
579
|
+
577,u_10668,1,5,1,lost,10,214.0,1538,49.54
|
|
580
|
+
578,u_106689,5,4,4,loyal customers,1,575.6666666666666,198,23.0075
|
|
581
|
+
579,u_106704,3,3,2,potential loyalist,2,627.0,601,39.4825
|
|
582
|
+
580,u_106722,4,3,5,loyal customers,1,655.0,346,19.441666666666666
|
|
583
|
+
581,u_106724,2,5,3,at risk,7,265.0,1152,27.927500000000002
|
|
584
|
+
582,u_106733,2,5,5,at risk,7,217.0,1225,19.44
|
|
585
|
+
583,u_106744,2,3,1,others,11,659.0,1142,43.415
|
|
586
|
+
584,u_106784,4,4,5,loyal customers,1,287.0,512,13.364999999999998
|
|
587
|
+
585,u_10679,2,5,4,at risk,7,253.0,1163,22.3925
|
|
588
|
+
586,u_106813,1,4,3,lost,10,336.0,1513,33.2575
|
|
589
|
+
587,u_106819,2,5,5,at risk,7,46.0,1060,17.8725
|
|
590
|
+
588,u_10682,1,5,2,lost,10,228.0,1694,35.099999999999994
|
|
591
|
+
589,u_106841,4,4,5,loyal customers,1,466.0,400,17.2775
|
|
592
|
+
590,u_106845,3,3,3,loyal customers,1,908.0,604,32.6425
|
|
593
|
+
591,u_106862,5,5,5,champions,0,43.0,6,18.747500000000002
|
|
594
|
+
592,u_106894,4,2,3,others,11,1103.0,538,32.1275
|
|
595
|
+
593,u_106898,4,2,2,promising,4,959.0,436,37.775
|
|
596
|
+
594,u_106920,1,5,3,lost,10,169.0,1707,30.67
|
|
597
|
+
595,u_106927,5,5,4,loyal customers,1,90.5,169,24.493333333333336
|
|
598
|
+
596,u_106938,2,3,3,need attention,5,785.0,1075,31.715
|
|
599
|
+
597,u_10694,3,5,3,loyal customers,1,171.0,915,28.445
|
|
600
|
+
598,u_106941,1,5,3,lost,10,232.5,1514,27.551666666666666
|
|
601
|
+
599,u_106945,4,3,4,loyal customers,1,676.5,529,20.481666666666666
|
|
602
|
+
600,u_106959,3,3,4,loyal customers,1,732.0,900,25.85
|
|
603
|
+
601,u_10696,3,2,3,need attention,5,1097.0,848,33.7425
|
|
604
|
+
602,u_106978,4,5,1,others,11,191.0,578,43.49
|
|
605
|
+
603,u_106991,4,2,4,others,11,1105.0,384,22.64
|
|
606
|
+
604,u_106992,4,4,3,loyal customers,1,444.5,291,32.14833333333333
|
|
607
|
+
605,u_107007,4,5,3,loyal customers,1,194.0,577,28.025
|
|
608
|
+
606,u_107008,3,3,3,loyal customers,1,925.0,865,29.3675
|
|
609
|
+
607,u_107020,1,5,2,lost,10,142.0,1569,34.2725
|
|
610
|
+
608,u_107021,1,4,1,lost,10,403.0,1314,43.455
|
|
611
|
+
609,u_107030,5,4,2,potential loyalist,2,324.0,183,34.5325
|
|
612
|
+
610,u_107038,4,4,4,loyal customers,1,480.0,533,26.7175
|
|
613
|
+
611,u_107039,4,5,2,potential loyalist,2,234.0,393,39.09
|
|
614
|
+
612,u_107042,1,5,5,can`t lose them,8,77.0,1680,17.9375
|
|
615
|
+
613,u_107064,5,1,5,new customers,3,1604.0,197,19.6325
|
|
616
|
+
614,u_107065,4,3,2,potential loyalist,2,749.0,288,39.2075
|
|
617
|
+
615,u_107068,2,3,1,others,11,720.0,1060,46.115
|
|
618
|
+
616,u_107073,5,3,1,others,11,829.0,86,53.3925
|
|
619
|
+
617,u_10709,2,3,5,at risk,7,888.0,1019,18.515
|
|
620
|
+
618,u_107093,3,5,2,potential loyalist,2,144.0,602,39.905
|
|
621
|
+
619,u_107099,1,5,3,lost,10,194.0,1467,30.549999999999997
|
|
622
|
+
620,u_107102,2,4,4,at risk,7,390.0,1106,22.4975
|
|
623
|
+
621,u_107135,2,4,3,at risk,7,523.0,1111,32.832499999999996
|
|
624
|
+
622,u_107151,5,4,3,loyal customers,1,407.25,121,31.709999999999997
|
|
625
|
+
623,u_107163,5,3,5,loyal customers,1,806.5,248,19.405
|
|
626
|
+
624,u_107176,5,2,3,new customers,3,1068.0,179,33.565
|
|
627
|
+
625,u_107181,3,4,4,loyal customers,1,427.0,852,21.05666666666667
|
|
628
|
+
626,u_107207,1,5,3,lost,10,241.0,1425,32.08
|
|
629
|
+
627,u_107228,2,4,1,others,11,380.0,939,45.6125
|
|
630
|
+
628,u_107242,5,5,3,loyal customers,1,175.0,160,29.79
|
|
631
|
+
629,u_107257,5,3,5,loyal customers,1,761.5,131,19.676666666666666
|
|
632
|
+
630,u_107288,3,2,3,need attention,5,1220.0,635,30.7675
|
|
633
|
+
631,u_107291,1,5,2,lost,10,222.0,1466,35.91
|
|
634
|
+
632,u_107300,1,4,4,lost,10,317.0,1537,26.6425
|
|
635
|
+
633,u_107315,5,1,2,new customers,3,1517.0,101,39.6925
|
|
636
|
+
634,u_107325,1,5,2,lost,10,20.0,1664,36.32
|
|
637
|
+
635,u_107384,3,4,3,loyal customers,1,407.0,893,32.295
|
|
638
|
+
636,u_107387,5,3,3,loyal customers,1,698.0,125,33.91833333333334
|
|
639
|
+
637,u_107394,3,5,5,loyal customers,1,194.0,841,14.162500000000001
|
|
640
|
+
638,u_107401,2,4,3,at risk,7,487.0,1201,29.9
|
|
641
|
+
639,u_107425,4,2,4,others,11,1281.0,411,22.775
|
|
642
|
+
640,u_107426,5,4,3,loyal customers,1,413.0,178,33.495
|
|
643
|
+
641,u_107432,3,3,4,loyal customers,1,634.0,866,21.995
|
|
644
|
+
642,u_107434,4,2,5,others,11,1256.0,484,17.8375
|
|
645
|
+
643,u_107442,2,4,5,at risk,7,301.0,1200,15.07
|
|
646
|
+
644,u_107467,4,4,5,loyal customers,1,461.0,552,19.6175
|
|
647
|
+
645,u_107480,4,3,4,loyal customers,1,623.0,578,26.385
|
|
648
|
+
646,u_1075,3,3,4,loyal customers,1,814.0,679,24.637500000000003
|
|
649
|
+
647,u_107523,5,2,3,new customers,3,1265.0,158,34.0375
|
|
650
|
+
648,u_107534,3,2,3,need attention,5,1037.0,796,31.0475
|
|
651
|
+
649,u_107549,3,3,4,loyal customers,1,885.0,820,24.46
|
|
652
|
+
650,u_10760,4,3,1,others,11,822.0,360,46.985
|
|
653
|
+
651,u_107601,5,4,4,loyal customers,1,397.75,243,22.881999999999998
|
|
654
|
+
652,u_10761,4,3,3,loyal customers,1,743.5,461,33.51666666666667
|
|
655
|
+
653,u_107610,5,3,3,loyal customers,1,605.0,177,34.0525
|
|
656
|
+
654,u_107618,1,5,3,lost,10,250.0,1396,32.36
|
|
657
|
+
655,u_107619,4,1,3,others,11,1344.0,292,33.567499999999995
|
|
658
|
+
656,u_107621,5,4,3,loyal customers,1,366.6666666666667,124,30.8375
|
|
659
|
+
657,u_107631,3,5,4,loyal customers,1,9.0,832,23.990000000000002
|
|
660
|
+
658,u_107632,5,3,2,potential loyalist,2,777.0,75,35.77
|
|
661
|
+
659,u_107673,1,4,2,lost,10,406.0,1565,35.49
|
|
662
|
+
660,u_107689,5,4,3,loyal customers,1,553.5,72,29.87166666666667
|
|
663
|
+
661,u_107695,4,3,4,loyal customers,1,629.0,388,22.0425
|
|
664
|
+
662,u_107720,4,4,2,potential loyalist,2,430.0,362,39.927499999999995
|
|
665
|
+
663,u_107726,1,3,2,lost,10,667.0,1315,40.769999999999996
|
|
666
|
+
664,u_107740,5,3,3,loyal customers,1,635.6666666666666,73,32.67875
|
|
667
|
+
665,u_107777,3,2,2,promising,4,1256.0,716,39.269999999999996
|
|
668
|
+
666,u_107778,2,4,1,others,11,306.5,1243,44.31333333333333
|
|
669
|
+
667,u_10778,4,4,2,potential loyalist,2,319.0,506,35.33
|
|
670
|
+
668,u_107780,3,1,4,others,11,1375.0,596,23.947499999999998
|
|
671
|
+
669,u_107785,4,5,4,loyal customers,1,107.0,408,23.08
|
|
672
|
+
670,u_107790,1,5,1,lost,10,217.0,1404,50.7125
|
|
673
|
+
671,u_107791,2,4,4,at risk,7,336.0,964,26.192500000000003
|
|
674
|
+
672,u_107811,4,3,4,loyal customers,1,717.0,390,26.91
|
|
675
|
+
673,u_107813,5,2,4,new customers,3,1158.0,243,21.3075
|
|
676
|
+
674,u_107814,4,1,2,promising,4,1459.0,484,39.695
|
|
677
|
+
675,u_107816,5,1,5,new customers,3,1408.0,76,13.515
|
|
678
|
+
676,u_107823,5,4,2,potential loyalist,2,382.5,249,34.735
|
|
679
|
+
677,u_107840,2,5,4,at risk,7,95.5,1304,22.391666666666666
|
|
680
|
+
678,u_107855,4,4,2,potential loyalist,2,438.0,439,39.5
|
|
681
|
+
679,u_107859,4,2,2,promising,4,1281.0,388,40.042500000000004
|
|
682
|
+
680,u_107865,5,1,4,new customers,3,1488.0,9,22.1125
|
|
683
|
+
681,u_107869,4,2,1,promising,4,1256.0,487,44.01
|
|
684
|
+
682,u_107875,3,3,2,potential loyalist,2,608.0,916,38.2875
|
|
685
|
+
683,u_10788,2,3,4,at risk,7,769.0,1201,24.62
|
|
686
|
+
684,u_107892,3,3,4,loyal customers,1,916.0,772,20.582500000000003
|
|
687
|
+
685,u_107909,5,5,1,others,11,95.0,267,44.307500000000005
|
|
688
|
+
686,u_107912,4,4,3,loyal customers,1,344.0,590,33.818333333333335
|
|
689
|
+
687,u_107917,5,1,2,new customers,3,1461.0,270,39.9275
|
|
690
|
+
688,u_107923,4,3,2,potential loyalist,2,836.0,321,34.4825
|
|
691
|
+
689,u_107929,3,4,4,loyal customers,1,475.0,706,22.755000000000003
|
|
692
|
+
690,u_107944,1,5,2,lost,10,96.0,1323,36.0225
|
|
693
|
+
691,u_107945,5,3,3,loyal customers,1,747.0,240,33.2225
|
|
694
|
+
692,u_107957,3,4,2,potential loyalist,2,415.0,605,39.785000000000004
|
|
695
|
+
693,u_107962,5,3,2,potential loyalist,2,677.0,3,39.46333333333333
|
|
696
|
+
694,u_107974,5,5,3,loyal customers,1,183.5,148,33.26499999999999
|
|
697
|
+
695,u_107975,5,1,2,new customers,3,1849.0,48,39.825
|
|
698
|
+
696,u_10799,4,5,2,potential loyalist,2,143.0,340,38.9975
|
|
699
|
+
697,u_107997,3,4,4,loyal customers,1,478.0,699,24.862499999999997
|
|
700
|
+
698,u_108017,3,5,4,loyal customers,1,197.0,626,21.17
|
|
701
|
+
699,u_108038,5,1,3,new customers,3,1555.0,127,31.5675
|
|
702
|
+
700,u_108060,3,2,4,others,11,1034.0,917,25.415
|
|
703
|
+
701,u_108065,4,1,4,others,11,1377.0,458,25.7075
|
|
704
|
+
702,u_108078,5,4,5,loyal customers,1,305.0,13,8.809999999999999
|
|
705
|
+
703,u_108090,3,4,1,others,11,313.5,890,49.805
|
|
706
|
+
704,u_108096,4,4,2,potential loyalist,2,378.0,447,39.3975
|
|
707
|
+
705,u_108101,5,1,5,new customers,3,1417.0,105,12.31
|
|
708
|
+
706,u_108107,5,1,4,new customers,3,1391.0,181,26.665
|
|
709
|
+
707,u_108111,2,4,2,others,11,505.0,995,35.792500000000004
|
|
710
|
+
708,u_108115,3,4,4,loyal customers,1,362.0,824,27.3525
|
|
711
|
+
709,u_108130,5,3,3,loyal customers,1,718.5,74,32.30833333333333
|
|
712
|
+
710,u_10814,1,5,1,lost,10,164.0,1613,49.89
|
|
713
|
+
711,u_108151,2,5,4,at risk,7,48.0,1132,20.9975
|
|
714
|
+
712,u_108154,3,5,5,loyal customers,1,163.0,917,11.6375
|
|
715
|
+
713,u_108159,5,5,4,loyal customers,1,272.5,8,27.30333333333333
|
|
716
|
+
714,u_108178,2,3,5,at risk,7,801.0,1130,10.09
|
|
717
|
+
715,u_108247,4,4,5,loyal customers,1,315.0,530,15.268333333333333
|
|
718
|
+
716,u_108250,3,5,4,loyal customers,1,222.0,794,25.0575
|
|
719
|
+
717,u_108253,2,5,2,others,11,63.0,1020,35.9825
|
|
720
|
+
718,u_108257,3,5,4,loyal customers,1,91.0,772,24.064999999999998
|
|
721
|
+
719,u_108258,4,4,2,potential loyalist,2,418.0,534,41.63833333333333
|
|
722
|
+
720,u_108285,1,5,1,lost,10,17.0,1544,45.682500000000005
|
|
723
|
+
721,u_108296,5,3,1,others,11,739.0,177,44.220000000000006
|
|
724
|
+
722,u_108321,5,1,2,new customers,3,1379.0,230,40.3125
|
|
725
|
+
723,u_108345,5,4,2,potential loyalist,2,569.0,220,34.785000000000004
|
|
726
|
+
724,u_108348,3,2,5,others,11,959.0,602,19.1025
|
|
727
|
+
725,u_108353,1,4,2,lost,10,524.0,1424,41.785
|
|
728
|
+
726,u_10836,3,2,3,need attention,5,1059.0,698,31.28
|
|
729
|
+
727,u_108368,5,3,3,loyal customers,1,698.0,195,30.87
|
|
730
|
+
728,u_108423,4,3,3,loyal customers,1,841.0,578,30.285
|
|
731
|
+
729,u_108447,3,4,1,others,11,381.0,821,53.192499999999995
|
|
732
|
+
730,u_108454,3,5,1,others,11,9.0,849,46.2675
|
|
733
|
+
731,u_108473,5,5,3,loyal customers,1,58.0,6,28.735
|
|
734
|
+
732,u_108488,5,3,4,loyal customers,1,855.0,153,26.62
|
|
735
|
+
733,u_10850,3,4,4,loyal customers,1,506.0,845,26.869999999999997
|
|
736
|
+
734,u_108509,3,3,5,loyal customers,1,718.0,807,13.43
|
|
737
|
+
735,u_108557,5,1,5,new customers,3,1504.0,155,13.489999999999998
|
|
738
|
+
736,u_108572,5,4,4,loyal customers,1,415.0,75,26.990000000000002
|
|
739
|
+
737,u_108578,1,4,4,lost,10,410.0,1562,21.2225
|
|
740
|
+
738,u_108582,2,3,1,others,11,855.0,941,43.7475
|
|
741
|
+
739,u_108592,5,3,2,potential loyalist,2,627.0,73,39.388333333333335
|
|
742
|
+
740,u_108594,5,3,4,loyal customers,1,586.0,158,24.015
|
|
743
|
+
741,u_108620,4,5,3,loyal customers,1,72.0,535,31.502499999999998
|
|
744
|
+
742,u_108663,5,1,3,new customers,3,1659.0,10,27.915
|
|
745
|
+
743,u_10867,5,1,4,new customers,3,1578.0,270,23.02
|
|
746
|
+
744,u_10868,3,2,1,promising,4,1154.0,771,45.22
|
|
747
|
+
745,u_108696,4,3,5,loyal customers,1,734.0,518,18.1625
|
|
748
|
+
746,u_108699,5,5,3,loyal customers,1,51.0,53,34.1175
|
|
749
|
+
747,u_1087,2,4,3,at risk,7,408.0,1178,29.195
|
|
750
|
+
748,u_108702,4,1,4,others,11,1380.0,349,23.237499999999997
|
|
751
|
+
749,u_108716,1,5,5,can`t lose them,8,62.0,1694,10.295000000000002
|
|
752
|
+
750,u_108721,3,3,4,loyal customers,1,871.0,864,23.475
|
|
753
|
+
751,u_10874,3,2,1,promising,4,1008.0,698,44.4175
|
|
754
|
+
752,u_108768,1,5,2,lost,10,82.0,1514,35.225
|
|
755
|
+
753,u_108786,2,5,3,at risk,7,226.0,1059,31.02
|
|
756
|
+
754,u_108797,1,5,2,lost,10,64.0,1352,40.099999999999994
|
|
757
|
+
755,u_108803,4,3,4,loyal customers,1,637.0,300,27.06
|
|
758
|
+
756,u_108835,1,5,2,lost,10,272.0,1584,38.375
|
|
759
|
+
757,u_108861,4,5,3,loyal customers,1,33.0,326,28.725
|
|
760
|
+
758,u_108865,2,4,1,others,11,536.0,1082,53.057500000000005
|
|
761
|
+
759,u_108899,3,4,3,loyal customers,1,433.0,820,29.1175
|
|
762
|
+
760,u_1089,2,5,4,at risk,7,27.0,1130,21.5325
|
|
763
|
+
761,u_10891,3,4,5,loyal customers,1,404.0,777,10.532499999999999
|
|
764
|
+
762,u_10892,4,4,4,loyal customers,1,415.0,412,23.877499999999998
|
|
765
|
+
763,u_108925,5,2,3,new customers,3,966.0,51,28.7625
|
|
766
|
+
764,u_108927,2,4,4,at risk,7,336.0,998,20.79
|
|
767
|
+
765,u_108929,2,4,2,others,11,393.0,1275,38.3575
|
|
768
|
+
766,u_108955,4,2,4,others,11,1131.0,418,26.6
|
|
769
|
+
767,u_108959,3,3,2,potential loyalist,2,876.0,818,36.03
|
|
770
|
+
768,u_108980,2,5,5,at risk,7,40.0,1164,15.2975
|
|
771
|
+
769,u_108987,4,2,5,others,11,1201.0,552,9.365
|
|
772
|
+
770,u_108990,5,4,1,others,11,356.5,157,44.580000000000005
|
|
773
|
+
771,u_108999,3,2,1,promising,4,953.0,676,48.817499999999995
|
|
774
|
+
772,u_109011,3,4,4,loyal customers,1,314.0,720,21.605
|
|
775
|
+
773,u_109021,5,4,4,loyal customers,1,396.0,50,23.903333333333336
|
|
776
|
+
774,u_109022,3,2,3,need attention,5,1245.0,607,27.79
|
|
777
|
+
775,u_109046,3,5,5,loyal customers,1,172.5,819,12.843333333333334
|
|
778
|
+
776,u_10905,2,3,3,need attention,5,776.0,1205,33.7475
|
|
779
|
+
777,u_109094,5,5,5,champions,0,172.0,4,8.145
|
|
780
|
+
778,u_109106,5,5,2,potential loyalist,2,241.0,29,40.55
|
|
781
|
+
779,u_109138,3,3,4,loyal customers,1,601.0,924,25.725
|
|
782
|
+
780,u_109142,2,4,2,others,11,299.0,1200,35.3975
|
|
783
|
+
781,u_109152,3,4,1,others,11,292.0,673,43.815
|
|
784
|
+
782,u_109172,4,5,5,loyal customers,1,154.0,303,17.8275
|
|
785
|
+
783,u_109180,5,3,4,loyal customers,1,663.0,179,21.285
|
|
786
|
+
784,u_109184,2,4,2,others,11,546.0,1161,41.0925
|
|
787
|
+
785,u_109187,4,1,4,others,11,1415.0,343,25.485
|
|
788
|
+
786,u_1092,5,1,3,new customers,3,1760.0,100,31.5925
|
|
789
|
+
787,u_109205,4,5,4,loyal customers,1,200.0,480,26.042499999999997
|
|
790
|
+
788,u_109226,4,3,4,loyal customers,1,713.0,469,23.6575
|
|
791
|
+
789,u_109230,4,4,4,loyal customers,1,578.0,456,26.3975
|
|
792
|
+
790,u_109233,2,3,2,need attention,5,819.0,1038,35.235
|
|
793
|
+
791,u_109242,4,4,3,loyal customers,1,571.0,344,33.84
|
|
794
|
+
792,u_109244,5,3,3,loyal customers,1,718.5,268,29.116666666666664
|
|
795
|
+
793,u_109250,3,4,3,loyal customers,1,410.0,842,28.075
|
|
796
|
+
794,u_109274,4,1,4,others,11,1452.0,494,26.549999999999997
|
|
797
|
+
795,u_109277,5,4,4,loyal customers,1,568.0,34,25.3075
|
|
798
|
+
796,u_109280,5,2,4,new customers,3,1212.0,11,25.425
|
|
799
|
+
797,u_10930,2,5,5,at risk,7,235.0,990,16.235
|
|
800
|
+
798,u_109313,2,4,3,at risk,7,297.0,1200,32.6925
|
|
801
|
+
799,u_109329,3,2,4,others,11,1083.0,605,25.91
|
|
802
|
+
800,u_109346,1,5,4,lost,10,240.0,1321,22.165
|
|
803
|
+
801,u_109359,5,1,5,new customers,3,1571.0,170,10.752500000000001
|
|
804
|
+
802,u_109383,4,1,3,others,11,1416.0,555,30.0775
|
|
805
|
+
803,u_109384,3,2,1,promising,4,1131.0,700,48.9925
|
|
806
|
+
804,u_109386,1,4,1,lost,10,388.0,1498,48.065
|
|
807
|
+
805,u_109389,5,3,5,loyal customers,1,689.0,155,18.515
|
|
808
|
+
806,u_109419,4,2,4,others,11,941.0,586,24.515
|
|
809
|
+
807,u_109424,4,5,4,loyal customers,1,158.0,529,21.64
|
|
810
|
+
808,u_109438,5,1,5,new customers,3,1496.0,176,15.7625
|
|
811
|
+
809,u_109447,5,4,2,potential loyalist,2,456.6666666666667,218,36.07625
|
|
812
|
+
810,u_10945,3,2,5,others,11,1125.0,751,14.4625
|
|
813
|
+
811,u_109451,3,5,1,others,11,97.0,672,46.3025
|
|
814
|
+
812,u_109480,5,3,5,loyal customers,1,664.0,176,10.9925
|
|
815
|
+
813,u_109485,2,4,4,at risk,7,360.0,1181,22.5175
|
|
816
|
+
814,u_109498,3,3,4,loyal customers,1,758.0,801,26.67
|
|
817
|
+
815,u_109508,2,5,2,others,11,142.0,1227,36.415
|
|
818
|
+
816,u_109534,1,4,1,lost,10,300.0,1524,44.33
|
|
819
|
+
817,u_109539,2,5,4,at risk,7,222.5,1067,25.396666666666665
|
|
820
|
+
818,u_109547,5,1,5,new customers,3,1635.0,26,19.9
|
|
821
|
+
819,u_10955,1,4,2,lost,10,403.0,1348,36.5625
|
|
822
|
+
820,u_109550,2,4,4,at risk,7,307.0,1184,25.1575
|
|
823
|
+
821,u_109564,3,5,3,loyal customers,1,191.0,806,28.8725
|
|
824
|
+
822,u_109567,2,5,2,others,11,272.0,1081,36.58
|
|
825
|
+
823,u_109568,1,5,5,can`t lose them,8,190.0,1666,7.1175
|
|
826
|
+
824,u_109570,2,4,2,others,11,445.0,1018,38.945
|
|
827
|
+
825,u_109580,1,5,1,lost,10,105.0,1395,45.6625
|
|
828
|
+
826,u_109608,5,4,2,potential loyalist,2,503.5,29,39.875
|
|
829
|
+
827,u_109613,4,3,3,loyal customers,1,864.0,292,34.1575
|
|
830
|
+
828,u_109616,5,3,5,loyal customers,1,637.0,240,16.296666666666667
|
|
831
|
+
829,u_109650,5,4,3,loyal customers,1,444.0,60,33.7775
|
|
832
|
+
830,u_109652,3,3,2,potential loyalist,2,837.0,827,36.129999999999995
|
|
833
|
+
831,u_109655,4,2,3,others,11,1146.0,489,32.6325
|
|
834
|
+
832,u_109656,5,1,4,new customers,3,1691.0,134,23.947499999999998
|
|
835
|
+
833,u_109670,2,4,4,at risk,7,338.5,1015,24.506666666666664
|
|
836
|
+
834,u_109684,3,4,3,loyal customers,1,365.0,820,30.155
|
|
837
|
+
835,u_10970,4,2,5,others,11,1256.0,409,19.0175
|
|
838
|
+
836,u_109707,5,4,5,loyal customers,1,469.0,254,11.485000000000001
|
|
839
|
+
837,u_109717,1,4,2,lost,10,503.0,1394,38.7
|
|
840
|
+
838,u_10973,2,4,5,at risk,7,357.0,1159,17.43
|
|
841
|
+
839,u_109733,5,2,3,new customers,3,939.0,101,29.6475
|
|
842
|
+
840,u_109743,1,4,3,lost,10,281.0,1666,32.9875
|
|
843
|
+
841,u_109755,2,4,2,others,11,325.0,1066,36.692499999999995
|
|
844
|
+
842,u_109766,5,4,5,loyal customers,1,408.5,197,14.476666666666667
|
|
845
|
+
843,u_109801,5,1,3,new customers,3,1422.0,218,30.3075
|
|
846
|
+
844,u_109864,3,4,4,loyal customers,1,438.0,836,24.9525
|
|
847
|
+
845,u_109872,2,5,2,others,11,124.0,1272,34.825
|
|
848
|
+
846,u_109907,4,4,2,potential loyalist,2,507.0,508,37.275000000000006
|
|
849
|
+
847,u_109917,5,3,3,loyal customers,1,789.0,8,28.118333333333336
|
|
850
|
+
848,u_109931,5,3,3,loyal customers,1,707.0,133,29.2425
|
|
851
|
+
849,u_109935,4,5,5,loyal customers,1,269.0,555,19.7425
|
|
852
|
+
850,u_109938,1,5,2,lost,10,72.5,1729,36.29666666666667
|
|
853
|
+
851,u_109952,5,1,3,new customers,3,1493.0,212,33.95
|
|
854
|
+
852,u_109959,5,2,5,new customers,3,1248.0,196,14.115
|
|
855
|
+
853,u_109963,1,5,1,lost,10,170.0,1756,53.475
|
|
856
|
+
854,u_10997,5,3,3,loyal customers,1,693.0,172,30.630000000000003
|
|
857
|
+
855,u_109983,1,5,1,lost,10,163.0,1421,46.415
|
|
858
|
+
856,u_109997,2,5,1,others,11,122.0,1154,46.9325
|
|
859
|
+
857,u_110020,4,4,4,loyal customers,1,519.0,420,21.545
|
|
860
|
+
858,u_110021,4,4,2,potential loyalist,2,527.0,291,38.845
|
|
861
|
+
859,u_110043,2,2,3,need attention,5,986.0,988,29.16
|
|
862
|
+
860,u_110082,2,3,3,need attention,5,696.0,1130,29.207500000000003
|
|
863
|
+
861,u_110101,4,3,2,potential loyalist,2,720.0,460,34.8425
|
|
864
|
+
862,u_110145,1,5,4,lost,10,74.0,1419,26.427500000000002
|
|
865
|
+
863,u_110153,5,5,2,potential loyalist,2,239.0,9,35.7175
|
|
866
|
+
864,u_110190,5,2,3,new customers,3,1055.0,193,29.0975
|
|
867
|
+
865,u_110199,4,3,5,loyal customers,1,785.0,490,10.875
|
|
868
|
+
866,u_110225,3,4,5,loyal customers,1,280.0,709,19.6225
|
|
869
|
+
867,u_110230,3,3,4,loyal customers,1,826.0,865,20.8375
|
|
870
|
+
868,u_110239,4,5,2,potential loyalist,2,158.5,361,40.01
|
|
871
|
+
869,u_11024,3,4,3,loyal customers,1,512.0,915,27.5875
|
|
872
|
+
870,u_110285,4,5,4,loyal customers,1,145.0,534,23.5075
|
|
873
|
+
871,u_110308,4,4,3,loyal customers,1,583.0,490,27.473333333333333
|
|
874
|
+
872,u_110312,5,4,2,potential loyalist,2,395.0,14,38.6525
|
|
875
|
+
873,u_110315,5,3,2,potential loyalist,2,689.0,13,39.25
|
|
876
|
+
874,u_11034,2,5,3,at risk,7,189.0,1137,33.968333333333334
|
|
877
|
+
875,u_110365,5,2,5,new customers,3,1230.0,122,16.475
|
|
878
|
+
876,u_110376,5,4,3,loyal customers,1,365.0,4,33.535
|
|
879
|
+
877,u_110378,2,5,4,at risk,7,31.0,961,26.15
|
|
880
|
+
878,u_110379,1,4,5,lost,10,278.0,1523,19.049999999999997
|
|
881
|
+
879,u_110413,5,5,2,potential loyalist,2,249.0,243,38.677499999999995
|
|
882
|
+
880,u_110431,3,5,4,loyal customers,1,197.0,794,23.182499999999997
|
|
883
|
+
881,u_110455,5,4,3,loyal customers,1,425.0,178,32.31
|
|
884
|
+
882,u_110470,3,5,5,loyal customers,1,147.0,934,14.1925
|
|
885
|
+
883,u_110496,2,5,3,at risk,7,119.0,936,33.212500000000006
|
|
886
|
+
884,u_110516,3,4,3,loyal customers,1,283.0,701,28.8125
|
|
887
|
+
885,u_110525,3,4,3,loyal customers,1,513.0,701,33.74
|
|
888
|
+
886,u_110526,5,3,5,loyal customers,1,887.0,148,17.675
|
|
889
|
+
887,u_110532,2,2,1,others,11,938.0,987,43.947500000000005
|
|
890
|
+
888,u_110533,3,4,3,loyal customers,1,481.0,726,31.927500000000002
|
|
891
|
+
889,u_110554,5,3,2,potential loyalist,2,664.0,63,35.7025
|
|
892
|
+
890,u_110557,1,3,1,lost,10,605.0,1329,44.285
|
|
893
|
+
891,u_11058,4,2,5,others,11,1140.0,278,20.3725
|
|
894
|
+
892,u_110591,4,5,3,loyal customers,1,199.0,339,28.07
|
|
895
|
+
893,u_110600,4,4,3,loyal customers,1,389.75,363,30.724
|
|
896
|
+
894,u_110614,3,4,2,potential loyalist,2,340.0,849,35.6
|
|
897
|
+
895,u_110633,3,4,4,loyal customers,1,382.0,795,21.145
|
|
898
|
+
896,u_110643,2,5,4,at risk,7,141.0,1184,24.4175
|
|
899
|
+
897,u_110666,4,4,3,loyal customers,1,439.6666666666667,442,27.49375
|
|
900
|
+
898,u_110667,5,4,3,loyal customers,1,525.3333333333334,151,28.91375
|
|
901
|
+
899,u_110721,2,5,4,at risk,7,262.0,987,24.2075
|
|
902
|
+
900,u_110736,1,5,1,lost,10,262.0,1612,43.230000000000004
|
|
903
|
+
901,u_110739,2,5,3,at risk,7,182.0,1307,28.497500000000002
|
|
904
|
+
902,u_110746,2,4,5,at risk,7,391.0,965,19.439999999999998
|
|
905
|
+
903,u_110762,2,4,4,at risk,7,311.0,1185,22.8975
|
|
906
|
+
904,u_110765,3,3,4,loyal customers,1,729.0,817,27.46
|
|
907
|
+
905,u_110766,1,5,3,lost,10,94.0,1396,33.525
|
|
908
|
+
906,u_110784,4,3,3,loyal customers,1,887.0,361,29.8425
|
|
909
|
+
907,u_110785,5,2,4,new customers,3,1319.0,123,26.285
|
|
910
|
+
908,u_110790,1,5,4,lost,10,199.0,1728,25.7525
|
|
911
|
+
909,u_110803,3,3,4,loyal customers,1,670.0,893,26.655
|
|
912
|
+
910,u_110814,5,5,2,potential loyalist,2,136.0,106,38.7525
|
|
913
|
+
911,u_110821,2,5,4,at risk,7,164.0,1182,21.673333333333336
|
|
914
|
+
912,u_110824,4,1,4,others,11,1395.0,461,25.775
|
|
915
|
+
913,u_110826,4,3,2,potential loyalist,2,717.5,319,35.6
|
|
916
|
+
914,u_110844,2,4,3,at risk,7,354.0,990,28.875
|
|
917
|
+
915,u_110848,3,4,1,others,11,426.0,794,45.70666666666667
|
|
918
|
+
916,u_110912,4,3,4,loyal customers,1,776.5,321,25.036666666666665
|
|
919
|
+
917,u_110915,5,2,3,new customers,3,981.0,221,33.95
|
|
920
|
+
918,u_110934,5,3,5,loyal customers,1,829.0,10,19.235000000000003
|
|
921
|
+
919,u_110947,5,5,3,loyal customers,1,239.0,49,31.599999999999998
|
|
922
|
+
920,u_110969,2,4,3,at risk,7,433.0,1200,28.84
|
|
923
|
+
921,u_110986,5,1,2,new customers,3,1719.0,181,39.9825
|
|
924
|
+
922,u_1110,5,2,4,new customers,3,1083.0,144,20.4775
|
|
925
|
+
923,u_111001,5,1,3,new customers,3,1606.0,194,31.25
|
|
926
|
+
924,u_11101,1,4,5,lost,10,286.0,1448,11.46
|
|
927
|
+
925,u_111013,4,5,2,potential loyalist,2,146.0,397,38.5325
|
|
928
|
+
926,u_111041,1,3,2,lost,10,624.0,1324,38.46
|
|
929
|
+
927,u_111050,3,4,2,potential loyalist,2,301.0,611,34.355000000000004
|
|
930
|
+
928,u_111056,5,5,2,potential loyalist,2,272.0,13,37.28333333333333
|
|
931
|
+
929,u_111067,2,5,4,at risk,7,212.5,1112,23.708333333333332
|
|
932
|
+
930,u_111073,3,4,1,others,11,313.0,844,44.8275
|
|
933
|
+
931,u_111092,4,5,3,loyal customers,1,275.0,329,28.235
|
|
934
|
+
932,u_111095,3,3,2,potential loyalist,2,650.0,746,34.34
|
|
935
|
+
933,u_111099,2,4,5,at risk,7,375.0,1083,20.168333333333333
|
|
936
|
+
934,u_111115,3,5,2,potential loyalist,2,231.0,854,35.8475
|
|
937
|
+
935,u_111133,2,2,5,others,11,977.0,992,19.17
|
|
938
|
+
936,u_111140,1,5,4,lost,10,42.0,1389,21.2725
|
|
939
|
+
937,u_111150,2,5,3,at risk,7,188.0,995,30.252499999999998
|
|
940
|
+
938,u_111163,3,3,2,potential loyalist,2,674.0,894,35.88
|
|
941
|
+
939,u_11117,2,4,1,others,11,508.0,1277,49.1825
|
|
942
|
+
940,u_11118,4,4,3,loyal customers,1,550.0,485,34.125
|
|
943
|
+
941,u_111180,2,4,5,at risk,7,309.0,1179,17.375
|
|
944
|
+
942,u_111189,5,3,4,loyal customers,1,904.0,133,26.43
|
|
945
|
+
943,u_111200,4,3,4,loyal customers,1,675.0,510,27.375
|
|
946
|
+
944,u_111230,3,4,5,loyal customers,1,487.0,677,6.8774999999999995
|
|
947
|
+
945,u_111245,4,4,3,loyal customers,1,434.0,338,28.815
|
|
948
|
+
946,u_111252,4,3,5,loyal customers,1,707.0,314,19.323333333333334
|
|
949
|
+
947,u_111258,5,5,5,champions,0,237.5,267,20.115
|
|
950
|
+
948,u_111260,5,2,3,new customers,3,1109.0,26,31.1025
|
|
951
|
+
949,u_111269,5,5,2,potential loyalist,2,91.0,33,35.832499999999996
|
|
952
|
+
950,u_111277,1,4,2,lost,10,366.0,1609,37.055
|
|
953
|
+
951,u_111278,5,4,4,loyal customers,1,550.0,132,27.2
|
|
954
|
+
952,u_111281,4,3,3,loyal customers,1,685.0,495,28.345000000000002
|
|
955
|
+
953,u_111316,4,2,1,promising,4,1036.0,293,61.925
|
|
956
|
+
954,u_111319,5,4,4,loyal customers,1,515.5,168,23.38
|
|
957
|
+
955,u_111344,4,3,5,loyal customers,1,781.0,275,15.195
|
|
958
|
+
956,u_111386,2,5,2,others,11,74.0,1111,39.4075
|
|
959
|
+
957,u_11141,3,5,2,potential loyalist,2,184.0,684,36.557500000000005
|
|
960
|
+
958,u_111428,2,4,4,at risk,7,338.0,1107,25.932499999999997
|
|
961
|
+
959,u_111474,1,4,1,lost,10,531.0,1327,44.2525
|
|
962
|
+
960,u_111478,3,2,4,others,11,1168.0,680,20.4375
|
|
963
|
+
961,u_111496,4,1,4,others,11,1375.0,289,22.1625
|
|
964
|
+
962,u_111509,3,4,4,loyal customers,1,432.0,864,23.498333333333335
|
|
965
|
+
963,u_111519,2,5,5,at risk,7,153.0,1225,19.4325
|
|
966
|
+
964,u_111523,2,3,4,at risk,7,782.0,1070,24.135
|
|
967
|
+
965,u_111539,4,4,4,loyal customers,1,317.0,346,26.7175
|
|
968
|
+
966,u_111543,2,3,5,at risk,7,643.0,1014,16.9025
|
|
969
|
+
967,u_111555,4,2,4,others,11,1025.0,494,25.0175
|
|
970
|
+
968,u_11156,3,3,2,potential loyalist,2,745.0,775,40.1725
|
|
971
|
+
969,u_111576,3,2,4,others,11,1146.0,607,27.377499999999998
|
|
972
|
+
970,u_11159,1,5,3,lost,10,184.0,1425,33.0175
|
|
973
|
+
971,u_1116,5,1,3,new customers,3,1446.0,76,31.177500000000002
|
|
974
|
+
972,u_111625,4,2,3,others,11,931.0,562,28.472499999999997
|
|
975
|
+
973,u_111635,2,3,5,at risk,7,918.0,941,17.28
|
|
976
|
+
974,u_111651,3,4,4,loyal customers,1,568.5,806,25.14333333333333
|
|
977
|
+
975,u_111659,4,2,1,promising,4,1172.0,513,49.3875
|
|
978
|
+
976,u_111668,2,4,4,at risk,7,284.0,1252,23.3375
|
|
979
|
+
977,u_111715,4,2,5,others,11,1054.0,510,20.0025
|
|
980
|
+
978,u_111723,4,3,5,loyal customers,1,669.0,363,15.122499999999999
|
|
981
|
+
979,u_111725,3,2,3,need attention,5,1111.0,746,30.515
|
|
982
|
+
980,u_111739,4,3,3,loyal customers,1,602.0,577,29.1725
|
|
983
|
+
981,u_111749,1,4,4,lost,10,337.0,1332,24.315
|
|
984
|
+
982,u_111774,2,3,3,need attention,5,594.0,1062,30.5825
|
|
985
|
+
983,u_111790,3,2,5,others,11,1133.0,722,17.387500000000003
|
|
986
|
+
984,u_111820,5,2,4,new customers,3,1234.0,3,22.385
|
|
987
|
+
985,u_111824,5,3,3,loyal customers,1,884.0,220,29.770000000000003
|
|
988
|
+
986,u_111834,3,4,4,loyal customers,1,577.5,680,26.060000000000002
|
|
989
|
+
987,u_11185,3,2,1,promising,4,961.0,603,46.735
|
|
990
|
+
988,u_11187,1,5,4,lost,10,119.0,1849,21.4175
|
|
991
|
+
989,u_111912,4,2,4,others,11,1024.0,346,23.1675
|
|
992
|
+
990,u_111913,1,3,4,lost,10,597.0,1349,26.927500000000002
|
|
993
|
+
991,u_11193,2,3,2,need attention,5,877.0,947,42.035
|
|
994
|
+
992,u_111935,1,4,4,lost,10,557.0,1349,24.884999999999998
|
|
995
|
+
993,u_11195,3,3,4,loyal customers,1,908.0,678,22.715
|
|
996
|
+
994,u_111955,2,4,3,at risk,7,311.0,1225,30.0175
|
|
997
|
+
995,u_11198,4,2,4,others,11,1241.0,537,21.810000000000002
|
|
998
|
+
996,u_111998,5,4,5,loyal customers,1,290.0,96,16.8475
|
|
999
|
+
997,u_112002,2,4,3,at risk,7,461.0,1061,33.230000000000004
|
|
1000
|
+
998,u_112040,2,4,5,at risk,7,359.0,1083,18.25
|
|
1001
|
+
999,u_112048,2,3,2,need attention,5,749.0,1088,38.11
|
|
1002
|
+
1000,u_112053,2,4,3,at risk,7,424.5,1009,28.625
|
|
1003
|
+
1001,u_112056,3,3,5,loyal customers,1,646.0,722,16.2075
|
|
1004
|
+
1002,u_112081,2,4,1,others,11,288.0,1084,46.81
|
|
1005
|
+
1003,u_11211,1,4,5,lost,10,542.0,1440,13.6125
|
|
1006
|
+
1004,u_112122,5,5,2,potential loyalist,2,144.0,182,36.455
|
|
1007
|
+
1005,u_112143,5,1,3,new customers,3,1352.0,22,30.45
|
|
1008
|
+
1006,u_112172,5,3,4,loyal customers,1,848.0,156,23.275000000000002
|
|
1009
|
+
1007,u_112211,4,2,2,promising,4,932.0,460,40.9875
|
|
1010
|
+
1008,u_112241,3,5,4,loyal customers,1,9.0,843,23.3
|
|
1011
|
+
1009,u_112247,2,4,5,at risk,7,310.0,1132,19.58
|
|
1012
|
+
1010,u_112259,4,3,5,loyal customers,1,877.0,350,19.7625
|
|
1013
|
+
1011,u_112261,3,5,5,loyal customers,1,89.0,827,17.9525
|
|
1014
|
+
1012,u_112263,4,2,4,others,11,1147.0,486,21.25
|
|
1015
|
+
1013,u_112271,3,4,3,loyal customers,1,436.0,630,32.38
|
|
1016
|
+
1014,u_112275,3,3,4,loyal customers,1,803.0,733,27.2925
|
|
1017
|
+
1015,u_112277,3,5,3,loyal customers,1,64.0,637,30.05
|
|
1018
|
+
1016,u_112283,5,1,1,new customers,3,1461.0,195,45.04
|
|
1019
|
+
1017,u_112296,5,2,5,new customers,3,1128.0,267,16.825000000000003
|
|
1020
|
+
1018,u_112324,2,3,2,need attention,5,893.0,964,35.3725
|
|
1021
|
+
1019,u_112353,5,4,3,loyal customers,1,569.3333333333334,51,34.12875
|
|
1022
|
+
1020,u_112362,5,5,3,loyal customers,1,194.0,48,31.590000000000003
|
|
1023
|
+
1021,u_112375,3,2,5,others,11,1055.0,772,19.872500000000002
|
|
1024
|
+
1022,u_1124,3,3,3,loyal customers,1,597.0,916,31.8475
|
|
1025
|
+
1023,u_112420,4,4,3,loyal customers,1,302.0,375,33.57
|
|
1026
|
+
1024,u_112422,3,3,4,loyal customers,1,793.0,873,23.272499999999997
|
|
1027
|
+
1025,u_112427,4,3,3,loyal customers,1,812.0,587,34.019999999999996
|
|
1028
|
+
1026,u_112450,4,2,4,others,11,991.0,484,22.3275
|
|
1029
|
+
1027,u_112469,5,5,4,loyal customers,1,156.0,59,23.0575
|
|
1030
|
+
1028,u_112525,3,3,4,loyal customers,1,831.0,926,26.759999999999998
|
|
1031
|
+
1029,u_112530,2,4,3,at risk,7,461.0,1298,29.3275
|
|
1032
|
+
1030,u_112538,4,2,1,promising,4,1022.0,394,42.8875
|
|
1033
|
+
1031,u_112550,3,2,3,need attention,5,999.0,848,28.9175
|
|
1034
|
+
1032,u_112552,3,3,3,loyal customers,1,748.0,889,29.215
|
|
1035
|
+
1033,u_112553,4,3,3,loyal customers,1,732.0,365,28.438333333333333
|
|
1036
|
+
1034,u_112556,2,5,4,at risk,7,276.0,1056,23.072499999999998
|
|
1037
|
+
1035,u_112557,3,4,4,loyal customers,1,514.5,678,24.291666666666668
|
|
1038
|
+
1036,u_11256,5,3,3,loyal customers,1,787.0,39,28.045
|
|
1039
|
+
1037,u_112574,5,1,5,new customers,3,1892.0,7,19.6475
|
|
1040
|
+
1038,u_112604,1,4,3,lost,10,568.0,1333,31.655
|
|
1041
|
+
1039,u_112627,2,3,3,need attention,5,865.0,1032,32.1525
|
|
1042
|
+
1040,u_112638,1,5,5,can`t lose them,8,62.0,1861,16.615000000000002
|
|
1043
|
+
1041,u_112678,5,3,3,loyal customers,1,847.0,158,27.549999999999997
|
|
1044
|
+
1042,u_112691,1,4,2,lost,10,319.0,1370,40.16
|
|
1045
|
+
1043,u_11270,5,1,4,new customers,3,1439.0,124,20.48
|
|
1046
|
+
1044,u_11272,5,1,2,new customers,3,1504.0,269,41.9925
|
|
1047
|
+
1045,u_112726,5,2,4,new customers,3,1127.0,60,22.247500000000002
|
|
1048
|
+
1046,u_112737,3,5,4,loyal customers,1,197.0,678,20.92
|
|
1049
|
+
1047,u_11274,4,4,2,potential loyalist,2,384.0,291,37.7775
|
|
1050
|
+
1048,u_112776,4,2,4,others,11,1282.0,386,21.994999999999997
|
|
1051
|
+
1049,u_112778,2,3,5,at risk,7,641.0,1016,12.440000000000001
|
|
1052
|
+
1050,u_112790,5,4,3,loyal customers,1,384.0,247,33.78
|
|
1053
|
+
1051,u_112792,5,3,2,potential loyalist,2,661.0,110,41.845
|
|
1054
|
+
1052,u_112820,5,5,3,loyal customers,1,113.0,177,31.0325
|
|
1055
|
+
1053,u_11283,5,4,3,loyal customers,1,353.0,193,33.928333333333335
|
|
1056
|
+
1054,u_112851,2,5,3,at risk,7,151.0,1107,33.615
|
|
1057
|
+
1055,u_11286,2,5,4,at risk,7,84.0,1203,25.6075
|
|
1058
|
+
1056,u_112860,2,3,4,at risk,7,591.0,1262,23.355
|
|
1059
|
+
1057,u_112870,5,4,4,loyal customers,1,459.0,50,25.935000000000002
|
|
1060
|
+
1058,u_112884,5,1,4,new customers,3,1483.0,53,25.634999999999998
|
|
1061
|
+
1059,u_112891,5,3,2,potential loyalist,2,853.5,145,41.74
|
|
1062
|
+
1060,u_112892,2,5,4,at risk,7,67.0,1117,21.41
|
|
1063
|
+
1061,u_112894,1,5,5,can`t lose them,8,131.0,1705,15.192499999999999
|
|
1064
|
+
1062,u_112895,3,4,4,loyal customers,1,474.0,682,25.1325
|
|
1065
|
+
1063,u_112908,2,4,2,others,11,420.0,1240,34.3625
|
|
1066
|
+
1064,u_112953,4,1,4,others,11,1366.0,579,23.015
|
|
1067
|
+
1065,u_112959,4,4,3,loyal customers,1,331.0,442,30.59
|
|
1068
|
+
1066,u_112966,4,3,3,loyal customers,1,768.5,313,32.495
|
|
1069
|
+
1067,u_112968,5,1,1,new customers,3,1674.0,178,46.900000000000006
|
|
1070
|
+
1068,u_112974,2,5,5,at risk,7,114.0,992,19.58
|
|
1071
|
+
1069,u_112989,5,2,3,new customers,3,1037.0,125,28.735
|
|
1072
|
+
1070,u_112997,5,2,3,new customers,3,1127.0,240,33.5275
|
|
1073
|
+
1071,u_113,5,3,5,loyal customers,1,913.0,24,18.83
|
|
1074
|
+
1072,u_113022,4,1,3,others,11,1405.0,336,31.0225
|
|
1075
|
+
1073,u_113050,4,5,4,loyal customers,1,10.0,589,26.015
|
|
1076
|
+
1074,u_113064,1,5,3,lost,10,44.0,1573,32.2625
|
|
1077
|
+
1075,u_113071,5,2,3,new customers,3,1007.0,122,30.86
|
|
1078
|
+
1076,u_113088,1,4,4,lost,10,479.0,1371,26.925
|
|
1079
|
+
1077,u_113093,4,1,4,others,11,1448.0,365,21.41
|
|
1080
|
+
1078,u_11311,5,3,2,potential loyalist,2,587.0,3,35.96333333333333
|
|
1081
|
+
1079,u_113117,4,5,5,loyal customers,1,266.5,289,18.383333333333333
|
|
1082
|
+
1080,u_113131,3,3,4,loyal customers,1,716.0,846,20.495
|
|
1083
|
+
1081,u_113141,2,5,2,others,11,250.0,1269,35.379999999999995
|
|
1084
|
+
1082,u_113152,4,3,5,loyal customers,1,825.0,385,19.66
|
|
1085
|
+
1083,u_113163,2,5,4,at risk,7,149.0,1131,23.2975
|
|
1086
|
+
1084,u_113187,5,4,3,loyal customers,1,337.0,122,32.4
|
|
1087
|
+
1085,u_113192,4,4,2,potential loyalist,2,416.5,349,37.105
|
|
1088
|
+
1086,u_113205,2,3,2,need attention,5,618.0,1253,35.682500000000005
|
|
1089
|
+
1087,u_113209,3,4,4,loyal customers,1,409.0,625,22.875
|
|
1090
|
+
1088,u_113222,5,2,2,new customers,3,1111.0,222,34.805
|
|
1091
|
+
1089,u_113240,3,4,2,potential loyalist,2,551.0,891,37.347500000000004
|
|
1092
|
+
1090,u_113249,5,3,3,loyal customers,1,838.0,147,29.75
|
|
1093
|
+
1091,u_113253,4,1,3,others,11,1563.0,408,30.025
|
|
1094
|
+
1092,u_113255,3,4,4,loyal customers,1,466.0,868,26.182499999999997
|
|
1095
|
+
1093,u_113263,5,4,2,potential loyalist,2,321.0,193,35.495
|
|
1096
|
+
1094,u_113289,1,5,4,lost,10,121.0,1392,26.1925
|
|
1097
|
+
1095,u_113311,1,5,3,lost,10,91.0,1400,27.482499999999998
|
|
1098
|
+
1096,u_113314,1,5,3,lost,10,106.0,1849,29.1175
|
|
1099
|
+
1097,u_113345,4,3,3,loyal customers,1,669.0,530,31.005000000000003
|
|
1100
|
+
1098,u_113353,5,1,3,new customers,3,1459.0,246,33.495000000000005
|
|
1101
|
+
1099,u_113363,4,3,3,loyal customers,1,672.0,579,33.2025
|
|
1102
|
+
1100,u_113379,2,4,5,at risk,7,384.0,1108,12.700000000000001
|
|
1103
|
+
1101,u_113387,5,5,3,loyal customers,1,210.0,62,28.34
|
|
1104
|
+
1102,u_113436,3,3,4,loyal customers,1,717.0,818,23.2875
|
|
1105
|
+
1103,u_113440,4,3,2,potential loyalist,2,670.0,577,34.8125
|
|
1106
|
+
1104,u_113473,4,4,3,loyal customers,1,423.6666666666667,581,33.3675
|
|
1107
|
+
1105,u_113475,5,5,4,loyal customers,1,153.0,160,20.7825
|
|
1108
|
+
1106,u_113486,4,1,1,promising,4,1375.0,460,46.46
|
|
1109
|
+
1107,u_113512,3,2,4,others,11,1007.0,913,24.6075
|
|
1110
|
+
1108,u_113518,3,2,2,promising,4,1051.0,848,34.3975
|
|
1111
|
+
1109,u_113532,1,5,2,lost,10,188.0,1613,37.275
|
|
1112
|
+
1110,u_113534,3,4,2,potential loyalist,2,538.0,680,34.8075
|
|
1113
|
+
1111,u_113550,4,5,4,loyal customers,1,271.5,346,24.42
|
|
1114
|
+
1112,u_11356,4,1,4,others,11,1411.0,319,24.784999999999997
|
|
1115
|
+
1113,u_113565,4,2,2,promising,4,1176.0,322,38.8675
|
|
1116
|
+
1114,u_113597,5,2,4,new customers,3,1221.0,174,26.5525
|
|
1117
|
+
1115,u_113625,4,2,2,promising,4,947.0,350,35.85
|
|
1118
|
+
1116,u_113628,5,5,3,loyal customers,1,252.0,135,28.3575
|
|
1119
|
+
1117,u_113653,5,1,2,new customers,3,1737.0,241,42.05
|
|
1120
|
+
1118,u_113660,3,2,4,others,11,1032.0,824,24.485
|
|
1121
|
+
1119,u_113664,2,4,4,at risk,7,405.0,963,26.9525
|
|
1122
|
+
1120,u_113667,5,3,1,others,11,825.0,160,48.2625
|
|
1123
|
+
1121,u_113670,3,4,4,loyal customers,1,368.0,624,25.7975
|
|
1124
|
+
1122,u_113677,3,3,5,loyal customers,1,597.0,830,17.525
|
|
1125
|
+
1123,u_113703,4,1,2,promising,4,1387.0,586,36.9175
|
|
1126
|
+
1124,u_113713,3,4,5,loyal customers,1,534.0,794,17.155
|
|
1127
|
+
1125,u_113715,5,2,4,new customers,3,987.0,176,26.325
|
|
1128
|
+
1126,u_113718,2,3,2,need attention,5,695.0,1251,35.792500000000004
|
|
1129
|
+
1127,u_113737,2,4,5,at risk,7,449.0,1024,19.6075
|
|
1130
|
+
1128,u_113748,4,5,4,loyal customers,1,220.0,365,23.36
|
|
1131
|
+
1129,u_113765,4,1,2,promising,4,1459.0,461,41.04
|
|
1132
|
+
1130,u_113785,2,4,1,others,11,441.0,1058,46.192499999999995
|
|
1133
|
+
1131,u_113792,3,2,2,promising,4,1059.0,798,34.7575
|
|
1134
|
+
1132,u_113807,5,3,4,loyal customers,1,867.5,125,26.135
|
|
1135
|
+
1133,u_113815,5,5,4,loyal customers,1,157.5,4,25.451666666666668
|
|
1136
|
+
1134,u_11383,3,5,2,potential loyalist,2,115.5,752,38.24333333333333
|
|
1137
|
+
1135,u_113849,1,3,3,lost,10,603.0,1331,32.275
|
|
1138
|
+
1136,u_113853,1,5,1,lost,10,230.0,1334,55.405
|
|
1139
|
+
1137,u_113868,3,4,4,loyal customers,1,362.0,625,22.9575
|
|
1140
|
+
1138,u_113883,5,3,4,loyal customers,1,867.5,193,25.78
|
|
1141
|
+
1139,u_113902,3,3,4,loyal customers,1,771.0,914,21.14
|
|
1142
|
+
1140,u_113910,1,5,4,lost,10,143.0,1468,22.902499999999996
|
|
1143
|
+
1141,u_113914,5,2,4,new customers,3,973.0,8,21.4075
|
|
1144
|
+
1142,u_113921,5,1,4,new customers,3,1515.0,9,23.63
|
|
1145
|
+
1143,u_113967,5,3,1,others,11,884.0,149,43.8025
|
|
1146
|
+
1144,u_113976,4,5,3,loyal customers,1,76.0,441,27.927500000000002
|
|
1147
|
+
1145,u_113981,5,4,4,loyal customers,1,449.0,175,24.042499999999997
|
|
1148
|
+
1146,u_113983,4,1,3,others,11,1536.0,323,28.475
|
|
1149
|
+
1147,u_113996,4,4,5,loyal customers,1,335.0,494,12.53
|
|
1150
|
+
1148,u_114025,5,4,2,potential loyalist,2,573.0,179,38.38166666666667
|
|
1151
|
+
1149,u_11403,4,4,2,potential loyalist,2,509.0,547,35.52
|
|
1152
|
+
1150,u_114031,4,2,2,promising,4,1237.0,432,34.925
|
|
1153
|
+
1151,u_114056,4,5,3,loyal customers,1,15.0,326,30.4875
|
|
1154
|
+
1152,u_114066,3,3,2,potential loyalist,2,757.0,924,34.3925
|
|
1155
|
+
1153,u_114088,2,5,3,at risk,7,117.0,1059,27.65
|
|
1156
|
+
1154,u_114093,1,5,3,lost,10,123.0,1708,31.855000000000004
|
|
1157
|
+
1155,u_114098,2,5,1,others,11,6.0,1107,43.5775
|
|
1158
|
+
1156,u_114110,1,5,4,lost,10,131.0,1706,26.6575
|
|
1159
|
+
1157,u_114119,1,4,3,lost,10,536.0,1374,27.6325
|
|
1160
|
+
1158,u_114122,4,3,3,loyal customers,1,863.0,461,32.795
|
|
1161
|
+
1159,u_114128,2,5,4,at risk,7,9.0,1121,21.1875
|
|
1162
|
+
1160,u_114159,3,5,4,loyal customers,1,58.0,853,25.9625
|
|
1163
|
+
1161,u_114161,3,4,1,others,11,338.0,840,46.2825
|
|
1164
|
+
1162,u_114172,5,2,4,new customers,3,1249.0,49,26.33
|
|
1165
|
+
1163,u_114174,3,4,3,loyal customers,1,517.0,749,33.115
|
|
1166
|
+
1164,u_114176,3,3,3,loyal customers,1,817.0,674,28.7875
|
|
1167
|
+
1165,u_114182,5,3,3,loyal customers,1,905.0,245,28.9025
|
|
1168
|
+
1166,u_114189,4,3,2,potential loyalist,2,767.0,341,39.8875
|
|
1169
|
+
1167,u_11419,5,2,4,new customers,3,1038.0,102,26.294999999999998
|
|
1170
|
+
1168,u_114215,4,4,4,loyal customers,1,317.0,420,22.9775
|
|
1171
|
+
1169,u_114248,2,4,1,others,11,441.0,1087,43.6275
|
|
1172
|
+
1170,u_114253,1,5,4,lost,10,186.0,1691,23.23
|
|
1173
|
+
1171,u_114279,4,3,4,loyal customers,1,856.0,517,25.735
|
|
1174
|
+
1172,u_114287,1,5,4,lost,10,179.0,1776,25.02
|
|
1175
|
+
1173,u_114291,5,3,4,loyal customers,1,880.0,110,22.174999999999997
|
|
1176
|
+
1174,u_114294,2,3,2,need attention,5,718.0,1227,37.8475
|
|
1177
|
+
1175,u_114332,2,4,4,at risk,7,279.0,1269,26.67
|
|
1178
|
+
1176,u_114337,4,1,2,promising,4,1327.0,560,38.3775
|
|
1179
|
+
1177,u_114416,3,4,3,loyal customers,1,405.0,778,31.11
|
|
1180
|
+
1178,u_114446,5,3,2,potential loyalist,2,858.0,10,40.465
|
|
1181
|
+
1179,u_114517,4,5,3,loyal customers,1,12.0,540,32.5625
|
|
1182
|
+
1180,u_114519,4,5,3,loyal customers,1,171.0,345,30.695
|
|
1183
|
+
1181,u_114544,5,3,3,loyal customers,1,799.0,195,30.67
|
|
1184
|
+
1182,u_114556,5,5,3,loyal customers,1,108.0,72,28.85
|
|
1185
|
+
1183,u_114558,3,5,2,potential loyalist,2,82.0,696,34.83
|
|
1186
|
+
1184,u_114567,3,3,2,potential loyalist,2,692.0,748,38.4825
|
|
1187
|
+
1185,u_114574,2,4,3,at risk,7,468.0,1020,28.7075
|
|
1188
|
+
1186,u_114577,5,3,4,loyal customers,1,864.0,122,27.386666666666667
|
|
1189
|
+
1187,u_114592,3,4,2,potential loyalist,2,571.5,755,34.82333333333333
|
|
1190
|
+
1188,u_11460,4,5,2,potential loyalist,2,25.0,481,40.585
|
|
1191
|
+
1189,u_114603,5,3,4,loyal customers,1,877.0,257,26.125
|
|
1192
|
+
1190,u_114606,2,5,3,at risk,7,45.0,1180,33.7525
|
|
1193
|
+
1191,u_114607,2,3,5,at risk,7,645.0,1085,12.3875
|
|
1194
|
+
1192,u_114609,5,4,2,potential loyalist,2,453.0,196,35.52333333333333
|
|
1195
|
+
1193,u_114613,3,5,4,loyal customers,1,87.0,747,22.795
|
|
1196
|
+
1194,u_114616,2,4,2,others,11,382.0,1177,41.9925
|
|
1197
|
+
1195,u_114651,3,3,1,others,11,796.0,842,48.959999999999994
|
|
1198
|
+
1196,u_114691,1,5,4,lost,10,20.0,1661,21.8075
|
|
1199
|
+
1197,u_114710,4,3,3,loyal customers,1,636.0,281,33.089999999999996
|
|
1200
|
+
1198,u_114716,2,5,4,at risk,7,123.0,1274,20.5275
|
|
1201
|
+
1199,u_114730,1,5,3,lost,10,226.0,1517,29.415
|
|
1202
|
+
1200,u_114732,5,3,2,potential loyalist,2,623.0,225,38.915
|
|
1203
|
+
1201,u_114762,5,2,4,new customers,3,1308.0,108,20.5
|
|
1204
|
+
1202,u_114774,2,3,4,at risk,7,646.0,1190,21.762500000000003
|
|
1205
|
+
1203,u_114792,4,3,5,loyal customers,1,710.0,347,18.025
|
|
1206
|
+
1204,u_114797,1,5,2,lost,10,259.0,1351,35.6575
|
|
1207
|
+
1205,u_114818,1,5,3,lost,10,82.0,1853,34.1825
|
|
1208
|
+
1206,u_114825,2,4,5,at risk,7,292.0,1152,20.3775
|
|
1209
|
+
1207,u_114828,2,4,3,at risk,7,524.0,1111,32.3275
|
|
1210
|
+
1208,u_114840,5,1,2,new customers,3,1498.0,195,41.53
|
|
1211
|
+
1209,u_114853,1,5,2,lost,10,103.0,1395,37.08
|
|
1212
|
+
1210,u_114869,4,1,5,others,11,1454.0,422,20.384999999999998
|
|
1213
|
+
1211,u_114882,5,4,5,loyal customers,1,514.6666666666666,124,19.68125
|
|
1214
|
+
1212,u_114891,2,4,3,at risk,7,282.0,1158,33.255
|
|
1215
|
+
1213,u_114899,2,4,2,others,11,300.0,1202,37.7725
|
|
1216
|
+
1214,u_114918,1,5,4,lost,10,168.0,1708,24.1875
|
|
1217
|
+
1215,u_11493,5,5,2,potential loyalist,2,265.0,96,35.870000000000005
|
|
1218
|
+
1216,u_114931,3,4,5,loyal customers,1,449.0,683,16.119999999999997
|
|
1219
|
+
1217,u_114933,4,4,4,loyal customers,1,576.0,437,22.661666666666665
|
|
1220
|
+
1218,u_114942,2,3,2,need attention,5,764.0,990,38.42
|
|
1221
|
+
1219,u_114958,3,4,2,potential loyalist,2,429.0,603,36.974999999999994
|
|
1222
|
+
1220,u_114976,2,5,3,at risk,7,93.0,1111,32.7875
|
|
1223
|
+
1221,u_114978,4,4,4,loyal customers,1,284.0,323,25.61
|
|
1224
|
+
1222,u_114980,1,3,4,lost,10,621.0,1349,24.1925
|
|
1225
|
+
1223,u_114985,4,2,2,promising,4,1009.0,513,40.9175
|
|
1226
|
+
1224,u_115006,2,5,2,others,11,198.0,1160,35.6575
|
|
1227
|
+
1225,u_115016,2,4,5,at risk,7,410.0,1158,10.364999999999998
|
|
1228
|
+
1226,u_11503,5,1,3,new customers,3,1699.0,7,32.13
|
|
1229
|
+
1227,u_11504,4,4,2,potential loyalist,2,455.0,293,37.2225
|
|
1230
|
+
1228,u_115051,2,4,4,at risk,7,459.0,1127,27.0775
|
|
1231
|
+
1229,u_115061,3,2,4,others,11,1116.0,674,23.2775
|
|
1232
|
+
1230,u_115100,1,5,5,can`t lose them,8,96.0,1442,19.0175
|
|
1233
|
+
1231,u_115101,4,2,5,others,11,1203.0,528,14.370000000000001
|
|
1234
|
+
1232,u_115107,4,5,5,loyal customers,1,16.0,515,20.4075
|
|
1235
|
+
1233,u_115109,3,5,5,loyal customers,1,228.0,672,13.3375
|
|
1236
|
+
1234,u_11511,4,2,4,others,11,1220.0,302,26.045
|
|
1237
|
+
1235,u_115112,3,3,4,loyal customers,1,822.0,689,23.7825
|
|
1238
|
+
1236,u_115114,2,3,2,need attention,5,604.0,1229,42.0025
|
|
1239
|
+
1237,u_115173,5,2,2,new customers,3,1151.0,72,35.03
|
|
1240
|
+
1238,u_115180,4,3,3,loyal customers,1,631.5,489,29.10666666666667
|
|
1241
|
+
1239,u_115195,5,2,4,new customers,3,1139.0,48,22.44
|
|
1242
|
+
1240,u_115206,3,5,3,loyal customers,1,117.0,704,27.53
|
|
1243
|
+
1241,u_115207,2,5,2,others,11,46.0,1055,37.5725
|
|
1244
|
+
1242,u_115209,4,3,3,loyal customers,1,668.0,585,31.9825
|
|
1245
|
+
1243,u_115215,2,4,4,at risk,7,551.0,948,25.0775
|
|
1246
|
+
1244,u_115247,2,5,2,others,11,168.0,1009,34.93
|
|
1247
|
+
1245,u_115294,2,3,5,at risk,7,642.0,1159,17.4075
|
|
1248
|
+
1246,u_115295,2,3,4,at risk,7,628.0,1150,24.3975
|
|
1249
|
+
1247,u_115300,5,3,2,potential loyalist,2,749.5,171,35.96
|
|
1250
|
+
1248,u_115305,5,4,4,loyal customers,1,414.3333333333333,76,21.427500000000002
|
|
1251
|
+
1249,u_115313,5,3,3,loyal customers,1,757.0,179,28.807499999999997
|
|
1252
|
+
1250,u_115316,4,4,4,loyal customers,1,367.0,484,24.2975
|
|
1253
|
+
1251,u_115320,5,4,5,loyal customers,1,335.0,154,12.185
|
|
1254
|
+
1252,u_115327,5,1,2,new customers,3,1557.0,52,36.2625
|
|
1255
|
+
1253,u_115333,4,4,3,loyal customers,1,434.0,290,33.870000000000005
|
|
1256
|
+
1254,u_115368,5,4,5,loyal customers,1,581.0,42,16.165
|
|
1257
|
+
1255,u_115380,3,3,1,others,11,677.0,915,44.2475
|
|
1258
|
+
1256,u_115384,5,4,3,loyal customers,1,503.5,151,27.51
|
|
1259
|
+
1257,u_115395,3,5,4,loyal customers,1,274.0,913,25.43
|
|
1260
|
+
1258,u_115403,4,5,3,loyal customers,1,205.0,375,28.862500000000004
|
|
1261
|
+
1259,u_115405,5,2,1,new customers,3,1283.0,253,43.0075
|
|
1262
|
+
1260,u_115412,2,5,1,others,11,33.0,1252,43.875
|
|
1263
|
+
1261,u_115440,1,5,3,lost,10,72.0,1443,28.630000000000003
|
|
1264
|
+
1262,u_115446,5,2,3,new customers,3,1252.0,74,28.270000000000003
|
|
1265
|
+
1263,u_115447,3,5,3,loyal customers,1,239.5,700,31.05
|
|
1266
|
+
1264,u_115448,4,4,3,loyal customers,1,477.0,554,28.322499999999998
|
|
1267
|
+
1265,u_115472,4,1,2,promising,4,1486.0,323,34.7475
|
|
1268
|
+
1266,u_115482,5,2,3,new customers,3,1257.0,5,27.69
|
|
1269
|
+
1267,u_115486,5,3,2,potential loyalist,2,786.0,147,37.08
|
|
1270
|
+
1268,u_115503,1,4,4,lost,10,505.0,1446,22.335
|
|
1271
|
+
1269,u_115520,2,3,3,need attention,5,628.0,1152,28.845
|
|
1272
|
+
1270,u_115535,3,3,4,loyal customers,1,784.0,925,20.9175
|
|
1273
|
+
1271,u_115545,3,5,3,loyal customers,1,242.0,890,28.345
|
|
1274
|
+
1272,u_11555,3,4,1,others,11,406.0,701,49.832499999999996
|
|
1275
|
+
1273,u_115558,1,4,4,lost,10,422.0,1500,23.93
|
|
1276
|
+
1274,u_115559,3,4,3,loyal customers,1,310.5,700,31.715
|
|
1277
|
+
1275,u_115560,2,2,3,need attention,5,926.0,1022,27.995
|
|
1278
|
+
1276,u_115561,3,5,3,loyal customers,1,199.5,727,27.54666666666667
|
|
1279
|
+
1277,u_115562,5,3,2,potential loyalist,2,644.0,75,41.585
|
|
1280
|
+
1278,u_115581,5,3,1,others,11,840.0,9,43.239999999999995
|
|
1281
|
+
1279,u_115582,3,4,3,loyal customers,1,433.0,746,32.6825
|
|
1282
|
+
1280,u_115590,5,2,5,new customers,3,942.0,222,16.385
|
|
1283
|
+
1281,u_115601,2,4,4,at risk,7,504.0,1033,21.825000000000003
|
|
1284
|
+
1282,u_115608,5,3,1,others,11,771.0,243,46.9225
|
|
1285
|
+
1283,u_115634,5,2,1,new customers,3,1296.0,266,51.537499999999994
|
|
1286
|
+
1284,u_115639,4,3,3,loyal customers,1,861.0,291,32.4825
|
|
1287
|
+
1285,u_115640,3,2,4,others,11,1243.0,606,27.2425
|
|
1288
|
+
1286,u_115653,4,1,3,others,11,1342.0,582,30.7975
|
|
1289
|
+
1287,u_115680,5,4,5,loyal customers,1,323.0,48,16.02
|
|
1290
|
+
1288,u_115686,3,5,3,loyal customers,1,151.0,700,28.487500000000004
|
|
1291
|
+
1289,u_115700,1,4,1,lost,10,457.0,1404,52.095
|
|
1292
|
+
1290,u_115710,5,5,3,loyal customers,1,7.0,122,28.660000000000004
|
|
1293
|
+
1291,u_115714,5,3,4,loyal customers,1,908.0,154,22.265
|
|
1294
|
+
1292,u_115727,3,4,4,loyal customers,1,389.0,864,23.810000000000002
|
|
1295
|
+
1293,u_115730,5,4,2,potential loyalist,2,575.5,174,36.41833333333333
|
|
1296
|
+
1294,u_11574,3,5,2,potential loyalist,2,155.5,675,37.78666666666667
|
|
1297
|
+
1295,u_115745,4,1,2,promising,4,1490.0,343,42.455
|
|
1298
|
+
1296,u_115775,1,4,3,lost,10,337.0,1643,31.785
|
|
1299
|
+
1297,u_115776,5,3,5,loyal customers,1,599.0,230,14.155000000000001
|
|
1300
|
+
1298,u_115780,3,5,2,potential loyalist,2,249.0,746,36.3625
|
|
1301
|
+
1299,u_115781,4,1,3,others,11,1370.0,293,33.8675
|
|
1302
|
+
1300,u_115817,2,2,2,need attention,5,1010.0,937,37.8175
|
|
1303
|
+
1301,u_115827,2,3,3,need attention,5,673.0,1035,31.055
|
|
1304
|
+
1302,u_115842,3,3,3,loyal customers,1,760.0,848,28.1875
|
|
1305
|
+
1303,u_115845,5,5,4,loyal customers,1,218.0,8,25.46
|
|
1306
|
+
1304,u_115868,2,5,1,others,11,219.0,1133,51.239999999999995
|
|
1307
|
+
1305,u_115875,3,3,4,loyal customers,1,829.0,851,20.759999999999998
|
|
1308
|
+
1306,u_11588,2,4,3,at risk,7,546.0,1277,28.1575
|
|
1309
|
+
1307,u_115882,1,4,4,lost,10,428.0,1474,24.265
|
|
1310
|
+
1308,u_115938,4,2,4,others,11,947.0,349,26.6725
|
|
1311
|
+
1309,u_115955,2,4,3,at risk,7,577.0,1234,28.285
|
|
1312
|
+
1310,u_115985,5,5,3,loyal customers,1,119.0,150,33.900000000000006
|
|
1313
|
+
1311,u_115990,4,5,3,loyal customers,1,34.0,437,30.2
|
|
1314
|
+
1312,u_115992,3,3,3,loyal customers,1,718.0,806,30.4825
|
|
1315
|
+
1313,u_116013,3,3,3,loyal customers,1,863.0,794,32.3025
|
|
1316
|
+
1314,u_116017,2,3,2,need attention,5,839.0,995,42.03
|
|
1317
|
+
1315,u_116051,3,2,2,promising,4,1222.0,747,40.33
|
|
1318
|
+
1316,u_116058,4,2,4,others,11,1081.0,515,23.39
|
|
1319
|
+
1317,u_116065,5,1,5,new customers,3,1568.0,48,19.595
|
|
1320
|
+
1318,u_116082,3,2,4,others,11,947.0,723,26.2125
|
|
1321
|
+
1319,u_116095,2,3,2,need attention,5,597.0,1301,37.21
|
|
1322
|
+
1320,u_116122,4,1,1,promising,4,1487.0,365,47.1325
|
|
1323
|
+
1321,u_116139,3,4,3,loyal customers,1,337.0,848,33.6625
|
|
1324
|
+
1322,u_116152,4,4,3,loyal customers,1,480.0,489,30.439999999999998
|
|
1325
|
+
1323,u_11616,2,4,1,others,11,428.0,1061,44.1075
|
|
1326
|
+
1324,u_116198,4,4,2,potential loyalist,2,483.0,506,36.435
|
|
1327
|
+
1325,u_116203,1,5,4,lost,10,142.0,1322,22.785
|
|
1328
|
+
1326,u_116221,5,4,5,loyal customers,1,375.5,98,12.618333333333332
|
|
1329
|
+
1327,u_116257,4,4,4,loyal customers,1,437.0,429,21.935
|
|
1330
|
+
1328,u_116268,5,2,3,new customers,3,1167.0,221,33.5125
|
|
1331
|
+
1329,u_116277,5,1,5,new customers,3,1636.0,68,20.115000000000002
|
|
1332
|
+
1330,u_116294,2,3,4,at risk,7,818.0,1080,25.695
|
|
1333
|
+
1331,u_116308,1,4,4,lost,10,281.0,1663,26.567500000000003
|
|
1334
|
+
1332,u_116330,3,3,3,loyal customers,1,667.0,684,28.04
|
|
1335
|
+
1333,u_116383,4,3,1,others,11,611.0,530,45.099999999999994
|
|
1336
|
+
1334,u_116402,4,1,4,others,11,1440.0,484,26.6575
|
|
1337
|
+
1335,u_116416,4,1,4,others,11,1632.0,322,25.57
|
|
1338
|
+
1336,u_116427,2,3,3,need attention,5,603.0,1229,29.265
|
|
1339
|
+
1337,u_116430,1,5,2,lost,10,212.0,1444,36.8625
|
|
1340
|
+
1338,u_116453,3,4,3,loyal customers,1,462.0,699,27.75
|
|
1341
|
+
1339,u_116486,5,1,5,new customers,3,1482.0,6,19.322499999999998
|
|
1342
|
+
1340,u_116488,3,3,5,loyal customers,1,698.0,682,14.0075
|
|
1343
|
+
1341,u_116497,3,5,4,loyal customers,1,193.0,780,23.2725
|
|
1344
|
+
1342,u_116500,3,3,4,loyal customers,1,652.0,753,26.6075
|
|
1345
|
+
1343,u_116507,2,5,3,at risk,7,242.0,985,29.354999999999997
|
|
1346
|
+
1344,u_116520,2,3,4,at risk,7,815.0,1021,23.235
|
|
1347
|
+
1345,u_116524,5,1,2,new customers,3,1499.0,11,34.379999999999995
|
|
1348
|
+
1346,u_116536,3,3,4,loyal customers,1,831.0,852,20.7675
|
|
1349
|
+
1347,u_116558,5,2,5,new customers,3,1227.0,97,13.4425
|
|
1350
|
+
1348,u_116604,5,3,4,loyal customers,1,808.5,265,27.458333333333332
|
|
1351
|
+
1349,u_116608,5,3,1,others,11,886.0,31,44.7575
|
|
1352
|
+
1350,u_116612,4,4,3,loyal customers,1,487.0,317,30.015
|
|
1353
|
+
1351,u_116624,1,4,4,lost,10,279.0,1498,22.145
|
|
1354
|
+
1352,u_116627,5,2,5,new customers,3,1060.0,146,8.58
|
|
1355
|
+
1353,u_11664,4,3,2,potential loyalist,2,718.0,289,35.45
|
|
1356
|
+
1354,u_11665,3,2,3,need attention,5,1152.0,795,33.695
|
|
1357
|
+
1355,u_116659,5,2,2,new customers,3,1211.0,181,37.7
|
|
1358
|
+
1356,u_116680,5,3,3,loyal customers,1,902.0,145,32.946666666666665
|
|
1359
|
+
1357,u_116682,4,4,1,others,11,506.0,489,42.8875
|
|
1360
|
+
1358,u_116683,1,5,5,can`t lose them,8,171.0,1515,16.9925
|
|
1361
|
+
1359,u_116693,3,5,2,potential loyalist,2,246.0,845,38.207499999999996
|
|
1362
|
+
1360,u_116713,2,4,4,at risk,7,473.0,1234,26.6875
|
|
1363
|
+
1361,u_116720,5,2,2,new customers,3,931.0,9,38.5075
|
|
1364
|
+
1362,u_116725,1,5,1,lost,10,138.0,1689,56.9275
|
|
1365
|
+
1363,u_116726,1,5,5,can`t lose them,8,31.0,1831,16.567500000000003
|
|
1366
|
+
1364,u_116727,4,5,4,loyal customers,1,104.0,340,24.105
|
|
1367
|
+
1365,u_116732,5,4,1,others,11,379.0,223,49.0625
|
|
1368
|
+
1366,u_116738,3,2,4,others,11,938.0,744,22.92
|
|
1369
|
+
1367,u_11675,4,5,3,loyal customers,1,138.0,389,27.737499999999997
|
|
1370
|
+
1368,u_116761,4,4,2,potential loyalist,2,377.0,541,35.685
|
|
1371
|
+
1369,u_116778,3,2,3,need attention,5,1062.0,769,27.972499999999997
|
|
1372
|
+
1370,u_116787,2,4,3,at risk,7,494.0,1283,33.275000000000006
|
|
1373
|
+
1371,u_116803,4,4,4,loyal customers,1,334.0,516,22.9125
|
|
1374
|
+
1372,u_116835,3,2,2,promising,4,932.0,678,38.692499999999995
|
|
1375
|
+
1373,u_116837,4,3,4,loyal customers,1,612.0,483,25.64833333333333
|
|
1376
|
+
1374,u_116851,1,5,3,lost,10,264.0,1489,33.885000000000005
|
|
1377
|
+
1375,u_116868,4,4,3,loyal customers,1,357.0,326,28.485
|
|
1378
|
+
1376,u_1169,4,1,3,others,11,1537.0,364,33.0
|
|
1379
|
+
1377,u_116900,1,4,5,lost,10,437.0,1469,18.245
|
|
1380
|
+
1378,u_116906,5,3,3,loyal customers,1,739.0,149,32.087500000000006
|
|
1381
|
+
1379,u_116911,2,3,2,need attention,5,797.0,973,42.417500000000004
|
|
1382
|
+
1380,u_116912,1,4,3,lost,10,404.0,1520,28.2625
|
|
1383
|
+
1381,u_11692,3,3,4,loyal customers,1,690.0,704,23.747500000000002
|
|
1384
|
+
1382,u_116929,2,3,1,others,11,678.0,942,43.495000000000005
|
|
1385
|
+
1383,u_116932,5,1,4,new customers,3,1869.0,84,26.8075
|
|
1386
|
+
1384,u_116937,1,5,3,lost,10,178.0,1565,30.55666666666667
|
|
1387
|
+
1385,u_116953,3,3,4,loyal customers,1,659.0,674,26.265
|
|
1388
|
+
1386,u_11696,3,3,3,loyal customers,1,814.0,680,30.707500000000003
|
|
1389
|
+
1387,u_116977,5,3,4,loyal customers,1,767.0,244,26.0075
|
|
1390
|
+
1388,u_116990,2,4,4,at risk,7,324.0,1082,25.918333333333333
|
|
1391
|
+
1389,u_116991,1,5,5,can`t lose them,8,239.0,1540,18.5575
|
|
1392
|
+
1390,u_116999,3,2,5,others,11,1310.0,638,20.0175
|
|
1393
|
+
1391,u_117012,5,3,1,others,11,632.0,194,53.197500000000005
|
|
1394
|
+
1392,u_117026,3,3,2,potential loyalist,2,819.0,681,36.95
|
|
1395
|
+
1393,u_117031,5,1,3,new customers,3,1360.0,229,29.68
|
|
1396
|
+
1394,u_117038,5,5,4,loyal customers,1,101.0,74,26.6425
|
|
1397
|
+
1395,u_117039,2,3,4,at risk,7,887.0,1084,24.67
|
|
1398
|
+
1396,u_11704,4,3,3,loyal customers,1,598.0,290,27.6925
|
|
1399
|
+
1397,u_117044,3,2,2,promising,4,1155.0,794,40.655
|
|
1400
|
+
1398,u_117046,4,4,4,loyal customers,1,349.0,350,27.417499999999997
|
|
1401
|
+
1399,u_117084,5,2,4,new customers,3,939.0,220,24.7625
|
|
1402
|
+
1400,u_11710,5,4,4,loyal customers,1,413.0,266,21.9925
|
|
1403
|
+
1401,u_117109,4,2,1,promising,4,947.0,518,44.095
|
|
1404
|
+
1402,u_117136,4,3,4,loyal customers,1,719.0,511,22.16
|
|
1405
|
+
1403,u_117178,4,2,3,others,11,1285.0,325,30.905
|
|
1406
|
+
1404,u_117182,3,4,3,loyal customers,1,303.5,888,30.473333333333333
|
|
1407
|
+
1405,u_117187,3,2,3,need attention,5,1057.0,698,32.8475
|
|
1408
|
+
1406,u_117193,3,3,4,loyal customers,1,802.0,627,21.0325
|
|
1409
|
+
1407,u_117203,5,2,3,new customers,3,1056.0,11,32.5575
|
|
1410
|
+
1408,u_11722,3,2,4,others,11,994.0,913,23.1875
|
|
1411
|
+
1409,u_117226,3,4,4,loyal customers,1,383.0,673,20.515
|
|
1412
|
+
1410,u_117229,5,3,4,loyal customers,1,878.0,47,24.08
|
|
1413
|
+
1411,u_117230,5,1,4,new customers,3,1628.0,29,27.287499999999998
|
|
1414
|
+
1412,u_117232,2,4,4,at risk,7,335.0,998,25.3575
|
|
1415
|
+
1413,u_117237,2,4,4,at risk,7,282.0,1161,25.125
|
|
1416
|
+
1414,u_117238,3,3,3,loyal customers,1,780.0,913,28.497500000000002
|
|
1417
|
+
1415,u_117247,4,2,3,others,11,1250.0,588,32.317499999999995
|
|
1418
|
+
1416,u_117261,4,4,4,loyal customers,1,553.0,506,20.645
|
|
1419
|
+
1417,u_117262,3,5,3,loyal customers,1,99.0,888,32.9475
|
|
1420
|
+
1418,u_117266,3,4,1,others,11,501.0,794,46.325
|
|
1421
|
+
1419,u_117281,4,3,2,potential loyalist,2,795.0,556,36.8475
|
|
1422
|
+
1420,u_1173,1,5,4,lost,10,136.0,1669,23.87
|
|
1423
|
+
1421,u_117303,5,3,4,loyal customers,1,735.0,52,25.813333333333333
|
|
1424
|
+
1422,u_117305,5,5,5,champions,0,147.0,31,17.252499999999998
|
|
1425
|
+
1423,u_117321,4,2,4,others,11,1005.0,484,26.7975
|
|
1426
|
+
1424,u_117350,2,4,4,at risk,7,413.0,1277,24.89
|
|
1427
|
+
1425,u_117368,2,3,4,at risk,7,677.0,1202,21.0975
|
|
1428
|
+
1426,u_117383,3,5,4,loyal customers,1,202.0,853,23.635
|
|
1429
|
+
1427,u_117414,2,3,5,at risk,7,714.0,1071,9.7725
|
|
1430
|
+
1428,u_117417,2,5,5,at risk,7,18.0,1183,19.4
|
|
1431
|
+
1429,u_117431,3,4,3,loyal customers,1,355.0,734,30.323333333333334
|
|
1432
|
+
1430,u_117443,1,5,2,lost,10,264.0,1330,38.20166666666666
|
|
1433
|
+
1431,u_117458,4,3,4,loyal customers,1,683.0,505,24.55
|
|
1434
|
+
1432,u_117461,5,5,5,champions,0,48.0,0,19.2925
|
|
1435
|
+
1433,u_117491,4,4,4,loyal customers,1,505.0,293,22.3275
|
|
1436
|
+
1434,u_117499,5,4,3,loyal customers,1,402.0,224,33.8375
|
|
1437
|
+
1435,u_117511,4,5,5,loyal customers,1,109.0,564,15.2725
|
|
1438
|
+
1436,u_117557,2,2,2,need attention,5,937.0,1012,37.3675
|
|
1439
|
+
1437,u_117561,1,5,3,lost,10,143.0,1357,30.545
|
|
1440
|
+
1438,u_117563,5,3,4,loyal customers,1,919.0,104,23.405
|
|
1441
|
+
1439,u_117566,1,4,4,lost,10,333.0,1522,23.802500000000002
|
|
1442
|
+
1440,u_117589,5,2,2,new customers,3,1229.0,241,37.3125
|
|
1443
|
+
1441,u_117593,1,4,4,lost,10,316.0,1368,21.935000000000002
|
|
1444
|
+
1442,u_117599,3,3,5,loyal customers,1,638.0,827,18.325
|
|
1445
|
+
1443,u_117620,4,4,5,loyal customers,1,320.0,532,17.5125
|
|
1446
|
+
1444,u_117630,4,3,5,loyal customers,1,815.0,362,17.48
|
|
1447
|
+
1445,u_117651,4,1,5,others,11,1429.0,518,18.450000000000003
|
|
1448
|
+
1446,u_117652,5,3,2,potential loyalist,2,696.0,96,39.795
|
|
1449
|
+
1447,u_117658,4,5,4,loyal customers,1,45.0,486,22.332500000000003
|
|
1450
|
+
1448,u_117681,1,5,4,lost,10,100.0,1455,25.224999999999998
|
|
1451
|
+
1449,u_117697,4,3,5,loyal customers,1,880.0,538,14.79
|
|
1452
|
+
1450,u_1177,5,1,2,new customers,3,1402.0,99,37.160000000000004
|
|
1453
|
+
1451,u_117727,3,3,3,loyal customers,1,863.0,847,29.2725
|
|
1454
|
+
1452,u_117728,3,4,2,potential loyalist,2,311.0,697,37.957499999999996
|
|
1455
|
+
1453,u_117731,5,4,5,loyal customers,1,358.0,182,18.442500000000003
|
|
1456
|
+
1454,u_117742,2,4,3,at risk,7,499.0,1021,33.6025
|
|
1457
|
+
1455,u_117751,4,1,1,promising,4,1393.0,436,55.0975
|
|
1458
|
+
1456,u_117758,5,1,2,new customers,3,1677.0,53,39.712500000000006
|
|
1459
|
+
1457,u_117782,4,2,3,others,11,934.0,437,29.14
|
|
1460
|
+
1458,u_117784,5,2,5,new customers,3,1293.0,266,19.34
|
|
1461
|
+
1459,u_117792,2,5,2,others,11,8.0,1037,39.49250000000001
|
|
1462
|
+
1460,u_117808,5,2,2,new customers,3,1311.0,154,36.3625
|
|
1463
|
+
1461,u_11781,4,3,2,potential loyalist,2,649.0,369,36.065
|
|
1464
|
+
1462,u_117825,1,5,3,lost,10,183.0,1334,29.67
|
|
1465
|
+
1463,u_117846,5,3,5,loyal customers,1,679.0,57,18.523333333333333
|
|
1466
|
+
1464,u_117865,4,1,5,others,11,1562.0,288,17.3575
|
|
1467
|
+
1465,u_117870,1,5,1,lost,10,113.0,1694,48.9525
|
|
1468
|
+
1466,u_117875,3,2,2,promising,4,1139.0,696,40.1425
|
|
1469
|
+
1467,u_117881,2,3,3,need attention,5,612.0,1261,31.86
|
|
1470
|
+
1468,u_117908,4,2,5,others,11,1321.0,491,10.09
|
|
1471
|
+
1469,u_11792,5,3,1,others,11,804.0,181,50.815
|
|
1472
|
+
1470,u_117920,5,1,4,new customers,3,1577.0,174,24.6475
|
|
1473
|
+
1471,u_117922,2,4,4,at risk,7,476.0,1161,24.9325
|
|
1474
|
+
1472,u_117925,5,3,5,loyal customers,1,645.0,252,19.810000000000002
|
|
1475
|
+
1473,u_117931,3,4,2,potential loyalist,2,409.0,914,40.1375
|
|
1476
|
+
1474,u_117943,3,3,1,others,11,884.0,772,44.4625
|
|
1477
|
+
1475,u_117955,4,2,4,others,11,992.0,312,23.8575
|
|
1478
|
+
1476,u_117960,2,3,2,need attention,5,765.0,1037,38.165
|
|
1479
|
+
1477,u_117962,4,4,2,potential loyalist,2,404.0,320,42.2775
|
|
1480
|
+
1478,u_117963,5,2,3,new customers,3,1219.0,173,28.939999999999998
|
|
1481
|
+
1479,u_117976,3,2,3,need attention,5,1297.0,601,28.737499999999997
|
|
1482
|
+
1480,u_117982,4,2,4,others,11,1193.0,513,26.950000000000003
|
|
1483
|
+
1481,u_118003,3,3,5,loyal customers,1,619.0,773,17.3625
|
|
1484
|
+
1482,u_118029,4,3,3,loyal customers,1,659.0,507,28.635
|
|
1485
|
+
1483,u_118034,4,2,5,others,11,1178.0,337,17.615000000000002
|
|
1486
|
+
1484,u_118042,5,1,5,new customers,3,1458.0,96,17.6825
|
|
1487
|
+
1485,u_118058,4,3,5,loyal customers,1,883.0,466,20.075
|
|
1488
|
+
1486,u_118065,4,5,4,loyal customers,1,151.0,456,26.012500000000003
|
|
1489
|
+
1487,u_118066,5,5,4,loyal customers,1,146.0,144,24.957500000000003
|
|
1490
|
+
1488,u_118071,4,3,5,loyal customers,1,677.5,589,18.911666666666665
|
|
1491
|
+
1489,u_118097,2,5,5,at risk,7,270.0,1098,11.985
|
|
1492
|
+
1490,u_118100,3,4,3,loyal customers,1,297.0,781,28.886666666666667
|
|
1493
|
+
1491,u_118122,2,4,5,at risk,7,321.0,978,16.7
|
|
1494
|
+
1492,u_118135,2,4,4,at risk,7,476.0,1254,25.310000000000002
|
|
1495
|
+
1493,u_118140,3,3,3,loyal customers,1,888.0,700,32.19
|
|
1496
|
+
1494,u_118148,1,5,3,lost,10,170.0,1466,30.68
|
|
1497
|
+
1495,u_118163,3,4,2,potential loyalist,2,385.0,722,36.295
|
|
1498
|
+
1496,u_11819,2,3,1,others,11,803.0,1056,62.760000000000005
|
|
1499
|
+
1497,u_118209,4,4,1,others,11,287.0,581,43.815
|
|
1500
|
+
1498,u_118236,5,3,4,loyal customers,1,692.0,245,26.575
|
|
1501
|
+
1499,u_118239,4,3,4,loyal customers,1,782.0,408,26.1875
|
|
1502
|
+
1500,u_118241,3,2,2,promising,4,1156.0,676,37.0525
|
|
1503
|
+
1501,u_118266,4,2,2,promising,4,1286.0,325,39.7475
|
|
1504
|
+
1502,u_118300,4,5,2,potential loyalist,2,200.5,510,34.72666666666667
|
|
1505
|
+
1503,u_118323,5,1,4,new customers,3,1627.0,130,24.7775
|
|
1506
|
+
1504,u_118326,4,4,3,loyal customers,1,317.5,517,28.123333333333335
|
|
1507
|
+
1505,u_118331,3,2,1,promising,4,978.0,681,43.765
|
|
1508
|
+
1506,u_118335,4,1,4,others,11,1355.0,290,26.802500000000002
|
|
1509
|
+
1507,u_11835,5,5,5,champions,0,74.0,168,18.9125
|
|
1510
|
+
1508,u_118366,1,5,1,lost,10,73.0,1522,43.8
|
|
1511
|
+
1509,u_11840,4,5,1,others,11,139.0,489,42.6875
|
|
1512
|
+
1510,u_118408,3,4,3,loyal customers,1,284.0,633,28.43
|
|
1513
|
+
1511,u_118418,1,4,4,lost,10,353.0,1476,24.6575
|
|
1514
|
+
1512,u_118422,5,1,4,new customers,3,1634.0,219,21.84
|
|
1515
|
+
1513,u_11844,5,1,3,new customers,3,1701.0,171,29.28
|
|
1516
|
+
1514,u_118441,2,3,1,others,11,696.0,968,43.31
|
|
1517
|
+
1515,u_118444,2,5,4,at risk,7,158.0,1310,24.1225
|
|
1518
|
+
1516,u_118471,4,2,4,others,11,1032.0,362,26.9525
|
|
1519
|
+
1517,u_118501,5,2,4,new customers,3,1199.0,170,25.3925
|
|
1520
|
+
1518,u_118528,4,5,3,loyal customers,1,116.0,293,30.25
|
|
1521
|
+
1519,u_118534,2,4,1,others,11,278.0,1163,51.485
|
|
1522
|
+
1520,u_118543,3,5,4,loyal customers,1,99.0,609,25.07
|
|
1523
|
+
1521,u_118556,2,4,4,at risk,7,357.0,1203,24.345
|
|
1524
|
+
1522,u_118567,2,3,1,others,11,727.0,962,43.315
|
|
1525
|
+
1523,u_118589,4,2,4,others,11,972.0,362,24.8525
|
|
1526
|
+
1524,u_118597,5,2,5,new customers,3,983.0,27,9.8725
|
|
1527
|
+
1525,u_118605,2,5,2,others,11,161.0,1162,34.5225
|
|
1528
|
+
1526,u_118607,1,5,4,lost,10,189.0,1526,26.472499999999997
|
|
1529
|
+
1527,u_118612,3,3,5,loyal customers,1,614.0,925,16.3725
|
|
1530
|
+
1528,u_118630,5,4,1,others,11,495.0,224,50.7
|
|
1531
|
+
1529,u_118657,4,4,4,loyal customers,1,384.0,484,21.52
|
|
1532
|
+
1530,u_118667,4,2,3,others,11,1296.0,579,32.585
|
|
1533
|
+
1531,u_118683,5,1,3,new customers,3,1686.0,7,28.525
|
|
1534
|
+
1532,u_118687,2,3,3,need attention,5,744.0,969,30.0175
|
|
1535
|
+
1533,u_11869,5,2,2,new customers,3,941.0,240,37.620000000000005
|
|
1536
|
+
1534,u_118696,1,5,4,lost,10,210.0,1665,23.7275
|
|
1537
|
+
1535,u_118721,5,2,3,new customers,3,1010.0,168,31.9525
|
|
1538
|
+
1536,u_118727,3,2,4,others,11,1130.0,817,26.005000000000003
|
|
1539
|
+
1537,u_118754,5,2,3,new customers,3,1288.0,249,28.087500000000002
|
|
1540
|
+
1538,u_118756,5,1,1,new customers,3,1707.0,2,51.582499999999996
|
|
1541
|
+
1539,u_118767,5,1,3,new customers,3,1494.0,270,28.455
|
|
1542
|
+
1540,u_118775,5,3,1,others,11,735.0,115,53.3525
|
|
1543
|
+
1541,u_118801,4,3,3,loyal customers,1,747.0,289,28.76
|
|
1544
|
+
1542,u_118820,4,2,3,others,11,1290.0,566,33.015
|
|
1545
|
+
1543,u_118865,3,5,5,loyal customers,1,139.0,797,18.835
|
|
1546
|
+
1544,u_118870,2,5,1,others,11,225.0,975,48.54
|
|
1547
|
+
1545,u_118884,5,3,2,potential loyalist,2,803.0,10,34.278333333333336
|
|
1548
|
+
1546,u_118887,4,4,1,others,11,495.0,346,43.0275
|
|
1549
|
+
1547,u_118890,3,3,3,loyal customers,1,897.0,770,34.1075
|
|
1550
|
+
1548,u_118894,2,4,4,at risk,7,405.0,1228,22.6925
|
|
1551
|
+
1549,u_118895,1,5,2,lost,10,127.0,1394,40.3675
|
|
1552
|
+
1550,u_1189,5,4,4,loyal customers,1,467.0,218,26.747500000000002
|
|
1553
|
+
1551,u_11892,5,3,4,loyal customers,1,881.0,153,20.93
|
|
1554
|
+
1552,u_11895,4,2,2,promising,4,1124.0,471,35.545
|
|
1555
|
+
1553,u_118959,5,1,2,new customers,3,1710.0,241,38.8475
|
|
1556
|
+
1554,u_118965,4,5,2,potential loyalist,2,73.0,542,35.004999999999995
|
|
1557
|
+
1555,u_118971,4,4,5,loyal customers,1,484.0,316,15.79
|
|
1558
|
+
1556,u_118974,2,4,2,others,11,381.0,1035,38.894999999999996
|
|
1559
|
+
1557,u_118983,2,5,2,others,11,165.0,1204,40.92
|
|
1560
|
+
1558,u_118993,3,4,5,loyal customers,1,380.0,606,18.675
|
|
1561
|
+
1559,u_119033,5,4,3,loyal customers,1,387.0,129,28.8475
|
|
1562
|
+
1560,u_119061,4,2,4,others,11,968.0,360,23.09
|
|
1563
|
+
1561,u_119064,4,3,4,loyal customers,1,813.0,580,26.2875
|
|
1564
|
+
1562,u_119070,3,5,5,loyal customers,1,261.0,613,18.3525
|
|
1565
|
+
1563,u_119111,3,2,2,promising,4,1244.0,611,36.3375
|
|
1566
|
+
1564,u_119118,4,2,3,others,11,984.0,483,28.37
|
|
1567
|
+
1565,u_119182,3,4,3,loyal customers,1,291.0,748,29.804999999999996
|
|
1568
|
+
1566,u_119221,5,3,4,loyal customers,1,805.0,108,27.22
|
|
1569
|
+
1567,u_119224,1,5,3,lost,10,159.0,1332,33.9825
|
|
1570
|
+
1568,u_119229,4,3,5,loyal customers,1,768.0,577,9.395
|
|
1571
|
+
1569,u_119238,3,5,3,loyal customers,1,83.0,913,29.9375
|
|
1572
|
+
1570,u_119243,2,5,5,at risk,7,195.0,1032,14.447500000000002
|
|
1573
|
+
1571,u_119248,3,4,4,loyal customers,1,306.0,681,20.6825
|
|
1574
|
+
1572,u_11926,5,3,4,loyal customers,1,622.0,13,26.335
|
|
1575
|
+
1573,u_119263,2,4,3,at risk,7,380.0,1036,30.4375
|
|
1576
|
+
1574,u_119273,5,3,4,loyal customers,1,880.0,13,23.049999999999997
|
|
1577
|
+
1575,u_119280,2,4,2,others,11,350.0,1210,36.0125
|
|
1578
|
+
1576,u_119283,5,2,1,new customers,3,1230.0,236,44.417500000000004
|
|
1579
|
+
1577,u_119309,5,4,3,loyal customers,1,419.5,194,27.80666666666666
|
|
1580
|
+
1578,u_119312,2,5,4,at risk,7,196.5,1084,22.305
|
|
1581
|
+
1579,u_119319,5,1,2,new customers,3,1343.0,194,34.59
|
|
1582
|
+
1580,u_119333,1,5,2,lost,10,165.0,1641,40.8125
|
|
1583
|
+
1581,u_119360,5,1,3,new customers,3,1490.0,74,31.877499999999998
|
|
1584
|
+
1582,u_119363,2,4,3,at risk,7,570.0,1043,30.1675
|
|
1585
|
+
1583,u_119364,5,3,3,loyal customers,1,623.0,194,29.365000000000002
|
|
1586
|
+
1584,u_119377,4,1,3,others,11,1435.0,364,32.03
|
|
1587
|
+
1585,u_119397,1,4,3,lost,10,483.0,1370,30.552500000000002
|
|
1588
|
+
1586,u_119401,1,5,4,lost,10,109.0,1370,27.2125
|
|
1589
|
+
1587,u_119403,4,3,4,loyal customers,1,651.0,337,21.1475
|
|
1590
|
+
1588,u_119407,5,3,4,loyal customers,1,616.0,219,21.8625
|
|
1591
|
+
1589,u_119487,2,3,3,need attention,5,647.0,987,32.6525
|
|
1592
|
+
1590,u_119490,5,1,4,new customers,3,1608.0,145,20.84
|
|
1593
|
+
1591,u_119496,1,5,1,lost,10,86.0,1445,53.0975
|
|
1594
|
+
1592,u_119500,3,3,3,loyal customers,1,641.0,827,34.1675
|
|
1595
|
+
1593,u_119512,3,4,4,loyal customers,1,424.0,727,26.28833333333333
|
|
1596
|
+
1594,u_11952,2,3,3,need attention,5,695.0,997,32.83
|
|
1597
|
+
1595,u_119527,4,4,5,loyal customers,1,289.0,550,13.505
|
|
1598
|
+
1596,u_119543,4,5,4,loyal customers,1,239.0,289,25.795
|
|
1599
|
+
1597,u_119558,5,3,3,loyal customers,1,755.0,147,33.56
|
|
1600
|
+
1598,u_119562,3,3,4,loyal customers,1,795.0,701,25.3175
|
|
1601
|
+
1599,u_119570,3,5,2,potential loyalist,2,252.0,683,34.8125
|
|
1602
|
+
1600,u_119589,4,2,3,others,11,1071.0,444,31.2
|
|
1603
|
+
1601,u_119596,2,5,1,others,11,157.0,1107,43.028333333333336
|
|
1604
|
+
1602,u_119599,5,1,4,new customers,3,1417.0,194,22.9525
|
|
1605
|
+
1603,u_119602,5,4,5,loyal customers,1,390.0,9,20.134999999999998
|
|
1606
|
+
1604,u_119604,2,3,2,need attention,5,587.0,1058,34.635
|
|
1607
|
+
1605,u_119632,1,5,3,lost,10,101.0,1565,29.197499999999998
|
|
1608
|
+
1606,u_119643,2,4,3,at risk,7,507.0,1178,31.667499999999997
|
|
1609
|
+
1607,u_119655,4,4,4,loyal customers,1,455.0,459,21.01
|
|
1610
|
+
1608,u_119681,3,2,3,need attention,5,1042.0,879,33.2625
|
|
1611
|
+
1609,u_119686,5,4,5,loyal customers,1,380.0,219,16.927500000000002
|
|
1612
|
+
1610,u_119707,4,3,1,others,11,653.0,480,45.315
|
|
1613
|
+
1611,u_119723,4,2,5,others,11,1219.0,488,16.285
|
|
1614
|
+
1612,u_119729,4,2,3,others,11,1036.0,510,31.55
|
|
1615
|
+
1613,u_11973,4,4,5,loyal customers,1,529.0,434,15.905000000000001
|
|
1616
|
+
1614,u_119773,3,3,4,loyal customers,1,746.0,779,21.575
|
|
1617
|
+
1615,u_119781,5,3,4,loyal customers,1,873.0,267,25.075
|
|
1618
|
+
1616,u_119784,2,3,4,at risk,7,916.0,1017,27.0775
|
|
1619
|
+
1617,u_119802,1,4,1,lost,10,385.0,1562,45.935
|
|
1620
|
+
1618,u_119843,4,3,2,potential loyalist,2,617.0,561,37.805
|
|
1621
|
+
1619,u_119853,1,5,3,lost,10,12.0,1539,28.119999999999997
|
|
1622
|
+
1620,u_119860,5,5,5,champions,0,167.0,153,16.105
|
|
1623
|
+
1621,u_119904,2,3,3,need attention,5,782.0,1152,27.555
|
|
1624
|
+
1622,u_119919,5,3,3,loyal customers,1,887.0,63,29.68
|
|
1625
|
+
1623,u_119951,3,2,5,others,11,953.0,803,18.152500000000003
|
|
1626
|
+
1624,u_119988,4,5,3,loyal customers,1,12.0,348,32.0225
|
|
1627
|
+
1625,u_119989,5,1,3,new customers,3,1436.0,27,32.9925
|
|
1628
|
+
1626,u_119993,4,2,4,others,11,1041.0,291,26.72
|
|
1629
|
+
1627,u_12000,1,5,4,lost,10,254.0,1357,21.09
|
|
1630
|
+
1628,u_120004,4,5,2,potential loyalist,2,118.0,459,36.315
|
|
1631
|
+
1629,u_12001,5,5,5,champions,0,180.0,51,13.806666666666665
|
|
1632
|
+
1630,u_120053,3,3,3,loyal customers,1,598.0,891,30.9225
|
|
1633
|
+
1631,u_120105,3,3,4,loyal customers,1,752.0,770,23.28
|
|
1634
|
+
1632,u_120120,4,4,3,loyal customers,1,314.0,360,28.625
|
|
1635
|
+
1633,u_12013,5,3,1,others,11,746.5,168,45.37166666666667
|
|
1636
|
+
1634,u_120138,5,2,3,new customers,3,1125.0,77,31.089999999999996
|
|
1637
|
+
1635,u_120148,4,5,4,loyal customers,1,215.0,531,26.052500000000002
|
|
1638
|
+
1636,u_120149,2,4,4,at risk,7,583.0,1085,26.425
|
|
1639
|
+
1637,u_120156,5,1,3,new customers,3,1589.0,206,32.17
|
|
1640
|
+
1638,u_120176,1,4,2,lost,10,293.0,1394,41.3
|
|
1641
|
+
1639,u_120185,3,4,4,loyal customers,1,335.0,723,25.98
|
|
1642
|
+
1640,u_120186,5,3,5,loyal customers,1,741.5,182,15.959999999999999
|
|
1643
|
+
1641,u_120205,5,5,3,loyal customers,1,272.0,269,33.615
|
|
1644
|
+
1642,u_120217,5,3,4,loyal customers,1,766.5,153,23.133333333333336
|
|
1645
|
+
1643,u_120233,4,2,2,promising,4,1101.0,340,35.36
|
|
1646
|
+
1644,u_120253,4,5,2,potential loyalist,2,117.0,512,40.614999999999995
|
|
1647
|
+
1645,u_120261,2,4,3,at risk,7,580.0,1081,28.5475
|
|
1648
|
+
1646,u_120277,5,3,2,potential loyalist,2,877.5,48,34.955000000000005
|
|
1649
|
+
1647,u_120285,5,2,4,new customers,3,1146.0,5,24.625
|
|
1650
|
+
1648,u_12029,3,4,2,potential loyalist,2,310.0,629,39.09
|
|
1651
|
+
1649,u_120293,5,4,4,loyal customers,1,436.0,79,26.380000000000003
|
|
1652
|
+
1650,u_120305,3,3,3,loyal customers,1,791.0,697,30.990000000000002
|
|
1653
|
+
1651,u_120322,3,4,2,potential loyalist,2,404.0,796,37.035
|
|
1654
|
+
1652,u_120342,5,5,5,champions,0,148.0,175,20.32
|
|
1655
|
+
1653,u_120368,2,4,4,at risk,7,405.0,1179,20.9275
|
|
1656
|
+
1654,u_120375,4,3,4,loyal customers,1,754.0,362,22.1025
|
|
1657
|
+
1655,u_120377,4,4,3,loyal customers,1,403.0,514,31.7675
|
|
1658
|
+
1656,u_12038,3,4,4,loyal customers,1,516.0,876,20.96
|
|
1659
|
+
1657,u_120385,5,4,3,loyal customers,1,560.6666666666666,267,30.7275
|
|
1660
|
+
1658,u_12040,5,4,1,others,11,415.0,85,47.413333333333334
|
|
1661
|
+
1659,u_120416,3,5,3,loyal customers,1,97.5,864,30.60166666666667
|
|
1662
|
+
1660,u_120427,2,3,2,need attention,5,615.0,1012,35.54
|
|
1663
|
+
1661,u_120429,3,5,5,loyal customers,1,14.0,852,18.795
|
|
1664
|
+
1662,u_120451,4,2,5,others,11,964.0,432,16.6725
|
|
1665
|
+
1663,u_120466,5,4,4,loyal customers,1,535.6666666666666,147,22.19375
|
|
1666
|
+
1664,u_12048,5,5,4,loyal customers,1,25.0,154,26.270000000000003
|
|
1667
|
+
1665,u_120531,4,5,5,loyal customers,1,112.0,491,15.325
|
|
1668
|
+
1666,u_120542,3,3,2,potential loyalist,2,708.0,828,34.4975
|
|
1669
|
+
1667,u_120547,2,3,2,need attention,5,646.0,1203,38.2675
|
|
1670
|
+
1668,u_120548,5,5,4,loyal customers,1,263.0,85,25.17
|
|
1671
|
+
1669,u_120550,2,3,3,need attention,5,704.0,1129,28.0025
|
|
1672
|
+
1670,u_12056,4,3,3,loyal customers,1,783.0,348,28.77
|
|
1673
|
+
1671,u_12058,5,4,5,loyal customers,1,324.0,13,17.4175
|
|
1674
|
+
1672,u_120590,3,2,2,promising,4,1225.0,625,34.66
|
|
1675
|
+
1673,u_120593,4,1,4,others,11,1564.0,384,22.735
|
|
1676
|
+
1674,u_120594,2,4,4,at risk,7,424.0,1184,26.96
|
|
1677
|
+
1675,u_120606,4,3,2,potential loyalist,2,741.0,283,41.89
|
|
1678
|
+
1676,u_120619,2,4,3,at risk,7,475.0,1085,29.01
|
|
1679
|
+
1677,u_120623,3,3,3,loyal customers,1,610.0,726,32.089999999999996
|
|
1680
|
+
1678,u_120654,3,3,2,potential loyalist,2,665.0,637,40.998333333333335
|
|
1681
|
+
1679,u_120675,2,4,1,others,11,287.0,940,51.5025
|
|
1682
|
+
1680,u_120750,3,5,4,loyal customers,1,117.0,799,25.16
|
|
1683
|
+
1681,u_120752,4,4,3,loyal customers,1,469.0,457,29.01
|
|
1684
|
+
1682,u_120758,1,5,4,lost,10,46.0,1450,23.942500000000003
|
|
1685
|
+
1683,u_120759,5,4,3,loyal customers,1,367.0,121,29.947499999999998
|
|
1686
|
+
1684,u_12076,2,4,3,at risk,7,296.5,1040,29.948333333333334
|
|
1687
|
+
1685,u_120765,1,5,4,lost,10,213.0,1611,22.755000000000003
|
|
1688
|
+
1686,u_120771,2,4,4,at risk,7,402.0,946,25.58
|
|
1689
|
+
1687,u_120778,4,5,4,loyal customers,1,166.0,292,23.61
|
|
1690
|
+
1688,u_12078,1,5,3,lost,10,265.0,1329,29.320000000000004
|
|
1691
|
+
1689,u_120780,5,1,3,new customers,3,1656.0,121,30.895
|
|
1692
|
+
1690,u_120801,3,2,3,need attention,5,986.0,684,30.235
|
|
1693
|
+
1691,u_120828,2,4,2,others,11,503.0,1084,35.39
|
|
1694
|
+
1692,u_120830,1,5,3,lost,10,50.0,1656,28.195
|
|
1695
|
+
1693,u_120838,3,4,3,loyal customers,1,568.5,721,34.13166666666667
|
|
1696
|
+
1694,u_120886,4,3,3,loyal customers,1,725.0,460,32.855000000000004
|
|
1697
|
+
1695,u_120894,5,1,4,new customers,3,1847.0,73,22.7125
|
|
1698
|
+
1696,u_120895,2,2,4,others,11,978.0,1011,26.97
|
|
1699
|
+
1697,u_120912,2,4,2,others,11,388.0,1143,40.415
|
|
1700
|
+
1698,u_120920,3,5,2,potential loyalist,2,107.0,891,37.04
|
|
1701
|
+
1699,u_120928,5,1,4,new customers,3,1484.0,220,23.6525
|
|
1702
|
+
1700,u_120949,4,4,5,loyal customers,1,432.0,339,20.173333333333336
|
|
1703
|
+
1701,u_121000,4,5,3,loyal customers,1,143.0,345,31.745
|
|
1704
|
+
1702,u_12101,4,2,3,others,11,970.0,532,30.075
|
|
1705
|
+
1703,u_121017,2,3,3,need attention,5,803.0,1164,32.605000000000004
|
|
1706
|
+
1704,u_121032,4,3,3,loyal customers,1,863.0,487,34.0
|
|
1707
|
+
1705,u_121041,3,5,4,loyal customers,1,28.0,820,24.0575
|
|
1708
|
+
1706,u_121049,1,5,5,can`t lose them,8,114.0,1834,10.032499999999999
|
|
1709
|
+
1707,u_121056,2,5,4,at risk,7,90.0,1207,22.685
|
|
1710
|
+
1708,u_12111,3,5,5,loyal customers,1,207.0,853,19.4075
|
|
1711
|
+
1709,u_121111,1,5,2,lost,10,190.0,1612,38.765
|
|
1712
|
+
1710,u_121127,4,4,3,loyal customers,1,277.0,326,31.9125
|
|
1713
|
+
1711,u_121132,4,4,5,loyal customers,1,508.5,446,19.958333333333332
|
|
1714
|
+
1712,u_121144,2,4,4,at risk,7,347.5,1106,24.289999999999996
|
|
1715
|
+
1713,u_121152,4,4,1,others,11,307.0,292,43.68
|
|
1716
|
+
1714,u_121157,4,5,4,loyal customers,1,177.0,315,25.1175
|
|
1717
|
+
1715,u_121160,2,4,4,at risk,7,287.0,1190,22.4025
|
|
1718
|
+
1716,u_121169,4,3,3,loyal customers,1,668.0,289,34.075
|
|
1719
|
+
1717,u_121176,5,2,5,new customers,3,1157.0,171,12.282499999999999
|
|
1720
|
+
1718,u_121182,5,4,3,loyal customers,1,525.0,161,30.805
|
|
1721
|
+
1719,u_121194,4,3,3,loyal customers,1,883.0,322,29.177500000000002
|
|
1722
|
+
1720,u_12120,5,1,2,new customers,3,1852.0,4,41.605000000000004
|
|
1723
|
+
1721,u_121220,5,2,3,new customers,3,1078.0,29,33.7325
|
|
1724
|
+
1722,u_121284,3,2,2,promising,4,979.0,775,36.53
|
|
1725
|
+
1723,u_121309,1,5,1,lost,10,22.0,1332,57.3925
|
|
1726
|
+
1724,u_121311,3,2,5,others,11,968.0,811,17.745
|
|
1727
|
+
1725,u_121320,2,4,2,others,11,515.0,1179,37.557500000000005
|
|
1728
|
+
1726,u_121321,5,2,2,new customers,3,1311.0,230,35.885000000000005
|
|
1729
|
+
1727,u_121338,4,5,4,loyal customers,1,63.0,462,24.536666666666665
|
|
1730
|
+
1728,u_121346,5,3,1,others,11,606.0,121,42.697500000000005
|
|
1731
|
+
1729,u_121358,1,4,4,lost,10,277.0,1669,27.37
|
|
1732
|
+
1730,u_121359,5,3,3,loyal customers,1,709.0,36,32.7125
|
|
1733
|
+
1731,u_121398,5,4,3,loyal customers,1,450.0,173,30.259999999999998
|
|
1734
|
+
1732,u_121404,4,4,2,potential loyalist,2,489.5,533,36.955000000000005
|
|
1735
|
+
1733,u_121410,5,4,5,loyal customers,1,523.0,83,15.921666666666665
|
|
1736
|
+
1734,u_121416,5,5,4,loyal customers,1,138.0,14,26.28
|
|
1737
|
+
1735,u_121420,2,4,4,at risk,7,311.5,1129,26.701666666666668
|
|
1738
|
+
1736,u_121427,2,4,1,others,11,392.0,1275,49.480000000000004
|
|
1739
|
+
1737,u_121450,5,2,3,new customers,3,1255.0,197,29.3325
|
|
1740
|
+
1738,u_121475,5,1,3,new customers,3,1838.0,111,32.980000000000004
|
|
1741
|
+
1739,u_121476,5,4,2,potential loyalist,2,383.0,53,38.965
|
|
1742
|
+
1740,u_121477,2,4,2,others,11,490.0,1179,36.46
|
|
1743
|
+
1741,u_121483,1,5,3,lost,10,66.0,1569,30.104999999999997
|
|
1744
|
+
1742,u_12149,4,3,3,loyal customers,1,693.0,294,28.987499999999997
|
|
1745
|
+
1743,u_121491,1,4,2,lost,10,510.0,1465,35.2725
|
|
1746
|
+
1744,u_121493,2,3,2,need attention,5,911.0,1009,42.3125
|
|
1747
|
+
1745,u_121497,4,3,5,loyal customers,1,674.0,513,19.11
|
|
1748
|
+
1746,u_12153,4,4,4,loyal customers,1,546.0,439,26.572499999999998
|
|
1749
|
+
1747,u_121531,2,5,3,at risk,7,212.5,1262,28.488333333333333
|
|
1750
|
+
1748,u_121548,3,4,3,loyal customers,1,553.0,624,30.415
|
|
1751
|
+
1749,u_121556,3,2,2,promising,4,936.0,792,35.93
|
|
1752
|
+
1750,u_121557,4,3,4,loyal customers,1,694.0,314,21.11
|
|
1753
|
+
1751,u_121564,4,3,3,loyal customers,1,771.0,507,33.6525
|
|
1754
|
+
1752,u_121589,4,2,3,others,11,942.0,312,28.427500000000002
|
|
1755
|
+
1753,u_121597,5,5,4,loyal customers,1,54.0,123,24.4875
|
|
1756
|
+
1754,u_121600,2,5,4,at risk,7,187.0,1301,23.384999999999998
|
|
1757
|
+
1755,u_121605,1,4,3,lost,10,468.0,1323,28.262500000000003
|
|
1758
|
+
1756,u_121606,3,4,3,loyal customers,1,504.0,912,31.91
|
|
1759
|
+
1757,u_121612,5,5,3,loyal customers,1,125.0,44,28.807499999999997
|
|
1760
|
+
1758,u_121619,5,5,4,loyal customers,1,25.0,168,22.1575
|
|
1761
|
+
1759,u_121650,3,5,1,others,11,97.0,918,44.48
|
|
1762
|
+
1760,u_121670,4,1,2,promising,4,1365.0,388,34.9825
|
|
1763
|
+
1761,u_121672,4,1,1,promising,4,1654.0,291,49.18
|
|
1764
|
+
1762,u_121686,5,1,3,new customers,3,1528.0,136,28.7175
|
|
1765
|
+
1763,u_121716,5,1,3,new customers,3,1685.0,4,31.1725
|
|
1766
|
+
1764,u_121734,2,4,3,at risk,7,317.0,1201,33.337500000000006
|
|
1767
|
+
1765,u_121736,5,1,3,new customers,3,1438.0,74,28.792499999999997
|
|
1768
|
+
1766,u_121744,3,3,2,potential loyalist,2,917.0,867,39.574999999999996
|
|
1769
|
+
1767,u_121768,4,4,4,loyal customers,1,310.0,485,24.776666666666667
|
|
1770
|
+
1768,u_12177,5,3,2,potential loyalist,2,825.0,172,36.019999999999996
|
|
1771
|
+
1769,u_121789,5,4,3,loyal customers,1,530.0,49,32.5175
|
|
1772
|
+
1770,u_121823,5,4,3,loyal customers,1,341.0,195,29.00333333333333
|
|
1773
|
+
1771,u_121826,3,3,2,potential loyalist,2,853.0,876,36.7725
|
|
1774
|
+
1772,u_121830,2,3,2,need attention,5,787.0,1158,36.86
|
|
1775
|
+
1773,u_121841,1,5,2,lost,10,173.0,1706,39.167500000000004
|
|
1776
|
+
1774,u_12186,4,2,4,others,11,934.0,314,21.950000000000003
|
|
1777
|
+
1775,u_121862,5,2,2,new customers,3,1297.0,169,38.255
|
|
1778
|
+
1776,u_121871,4,5,2,potential loyalist,2,58.0,494,34.355
|
|
1779
|
+
1777,u_12188,1,5,5,can`t lose them,8,268.0,1401,15.9875
|
|
1780
|
+
1778,u_121882,1,4,1,lost,10,359.0,1321,57.68
|
|
1781
|
+
1779,u_121888,5,4,2,potential loyalist,2,433.0,266,42.215
|
|
1782
|
+
1780,u_121893,5,5,2,potential loyalist,2,192.0,72,36.832499999999996
|
|
1783
|
+
1781,u_121894,3,3,3,loyal customers,1,634.0,628,33.04
|
|
1784
|
+
1782,u_1219,4,1,4,others,11,1327.0,553,26.0925
|
|
1785
|
+
1783,u_121900,1,5,3,lost,10,262.0,1467,33.667500000000004
|
|
1786
|
+
1784,u_121915,4,4,3,loyal customers,1,476.0,518,33.822500000000005
|
|
1787
|
+
1785,u_121932,5,5,2,potential loyalist,2,156.0,122,38.0775
|
|
1788
|
+
1786,u_121957,3,5,4,loyal customers,1,259.0,680,20.7625
|
|
1789
|
+
1787,u_121974,5,2,4,new customers,3,1044.0,253,21.7725
|
|
1790
|
+
1788,u_121989,2,2,3,need attention,5,959.0,1009,28.7275
|
|
1791
|
+
1789,u_122011,5,2,3,new customers,3,1106.0,112,31.3475
|
|
1792
|
+
1790,u_122015,5,2,2,new customers,3,1074.0,180,41.455
|
|
1793
|
+
1791,u_122023,2,4,2,others,11,325.5,1128,39.245
|
|
1794
|
+
1792,u_122034,2,4,1,others,11,433.0,1233,42.55
|
|
1795
|
+
1793,u_122080,5,4,5,loyal customers,1,552.0,240,17.85
|
|
1796
|
+
1794,u_122096,3,3,4,loyal customers,1,859.0,829,24.752499999999998
|
|
1797
|
+
1795,u_122113,1,4,2,lost,10,470.0,1358,36.0675
|
|
1798
|
+
1796,u_122136,5,5,4,loyal customers,1,138.0,158,25.35166666666667
|
|
1799
|
+
1797,u_12214,3,5,4,loyal customers,1,109.0,602,21.2075
|
|
1800
|
+
1798,u_122141,2,5,3,at risk,7,58.0,1033,30.745
|
|
1801
|
+
1799,u_122161,3,2,3,need attention,5,1059.0,865,29.9275
|
|
1802
|
+
1800,u_122171,4,4,5,loyal customers,1,336.0,291,17.215
|
|
1803
|
+
1801,u_122196,3,4,3,loyal customers,1,341.3333333333333,703,27.905
|
|
1804
|
+
1802,u_122197,5,5,3,loyal customers,1,210.0,174,28.9875
|
|
1805
|
+
1803,u_122207,5,1,3,new customers,3,1565.0,264,32.8525
|
|
1806
|
+
1804,u_122215,4,1,3,others,11,1514.0,344,31.195
|
|
1807
|
+
1805,u_122220,5,4,2,potential loyalist,2,477.0,123,42.08
|
|
1808
|
+
1806,u_122227,5,2,3,new customers,3,956.0,269,29.085
|
|
1809
|
+
1807,u_122262,5,4,4,loyal customers,1,339.0,10,22.619999999999997
|
|
1810
|
+
1808,u_122319,5,1,3,new customers,3,1439.0,99,28.93
|
|
1811
|
+
1809,u_122334,3,2,4,others,11,1134.0,821,22.759999999999998
|
|
1812
|
+
1810,u_122342,3,5,1,others,11,46.0,867,49.8225
|
|
1813
|
+
1811,u_122363,1,4,3,lost,10,573.0,1349,30.814999999999998
|
|
1814
|
+
1812,u_12238,5,4,2,potential loyalist,2,291.0,267,36.21666666666667
|
|
1815
|
+
1813,u_122384,4,2,2,promising,4,1151.0,348,37.6025
|
|
1816
|
+
1814,u_122389,4,5,2,potential loyalist,2,137.0,349,39.49250000000001
|
|
1817
|
+
1815,u_122393,4,4,3,loyal customers,1,370.0,512,31.22666666666667
|
|
1818
|
+
1816,u_122397,5,2,4,new customers,3,1177.0,74,24.4925
|
|
1819
|
+
1817,u_122399,5,5,1,others,11,164.0,125,43.537499999999994
|
|
1820
|
+
1818,u_122402,4,1,3,others,11,1332.0,339,33.83
|
|
1821
|
+
1819,u_122415,4,2,4,others,11,1103.0,509,26.384999999999998
|
|
1822
|
+
1820,u_122416,1,5,3,lost,10,149.0,1520,31.12
|
|
1823
|
+
1821,u_122434,2,3,2,need attention,5,627.0,1036,35.82
|
|
1824
|
+
1822,u_12244,5,5,5,champions,0,240.0,28,15.52
|
|
1825
|
+
1823,u_12245,3,2,4,others,11,1110.0,745,21.3825
|
|
1826
|
+
1824,u_122452,4,2,5,others,11,1263.0,491,18.3825
|
|
1827
|
+
1825,u_12246,3,3,3,loyal customers,1,905.0,814,30.455
|
|
1828
|
+
1826,u_122474,4,4,4,loyal customers,1,575.0,505,24.224999999999998
|
|
1829
|
+
1827,u_122496,4,3,2,potential loyalist,2,633.0,385,40.4725
|
|
1830
|
+
1828,u_122507,5,3,4,loyal customers,1,622.0,158,26.18
|
|
1831
|
+
1829,u_122515,4,4,2,potential loyalist,2,285.0,544,38.709999999999994
|
|
1832
|
+
1830,u_122521,4,1,2,promising,4,1562.0,340,34.6275
|
|
1833
|
+
1831,u_122527,2,4,3,at risk,7,571.0,1133,28.795
|
|
1834
|
+
1832,u_122528,3,4,3,loyal customers,1,510.0,845,29.4675
|
|
1835
|
+
1833,u_12253,4,5,2,potential loyalist,2,133.0,341,36.68666666666667
|
|
1836
|
+
1834,u_122533,4,2,5,others,11,1303.0,312,19.0375
|
|
1837
|
+
1835,u_12256,4,4,4,loyal customers,1,336.0,481,21.9725
|
|
1838
|
+
1836,u_122566,4,5,2,potential loyalist,2,239.0,471,40.707499999999996
|
|
1839
|
+
1837,u_122579,5,5,3,loyal customers,1,79.0,5,33.2875
|
|
1840
|
+
1838,u_122595,4,2,2,promising,4,1083.0,413,40.135
|
|
1841
|
+
1839,u_122610,5,2,1,new customers,3,1125.0,77,49.07
|
|
1842
|
+
1840,u_122622,5,1,4,new customers,3,1878.0,27,22.535
|
|
1843
|
+
1841,u_122629,4,3,2,potential loyalist,2,632.0,459,38.32
|
|
1844
|
+
1842,u_12263,1,4,3,lost,10,416.0,1420,34.1375
|
|
1845
|
+
1843,u_122633,4,5,5,loyal customers,1,27.0,576,9.2225
|
|
1846
|
+
1844,u_122635,4,2,4,others,11,1070.0,326,27.447499999999998
|
|
1847
|
+
1845,u_122645,5,5,2,potential loyalist,2,240.0,53,38.379999999999995
|
|
1848
|
+
1846,u_122646,4,3,1,others,11,666.0,391,42.83
|
|
1849
|
+
1847,u_122681,4,1,2,promising,4,1660.0,293,38.27
|
|
1850
|
+
1848,u_122695,5,2,3,new customers,3,1051.0,125,31.1625
|
|
1851
|
+
1849,u_122714,5,1,4,new customers,3,1612.0,224,22.915
|
|
1852
|
+
1850,u_122719,3,5,2,potential loyalist,2,202.0,892,38.317499999999995
|
|
1853
|
+
1851,u_122728,4,2,3,others,11,1124.0,489,28.060000000000002
|
|
1854
|
+
1852,u_122786,4,2,4,others,11,1157.0,346,26.732499999999998
|
|
1855
|
+
1853,u_122820,3,5,3,loyal customers,1,135.0,608,33.315
|
|
1856
|
+
1854,u_122822,2,4,4,at risk,7,482.0,1082,24.7725
|
|
1857
|
+
1855,u_122823,4,4,4,loyal customers,1,563.0,290,24.765
|
|
1858
|
+
1856,u_122831,3,3,2,potential loyalist,2,633.0,701,34.556666666666665
|
|
1859
|
+
1857,u_122835,1,5,4,lost,10,200.0,1683,20.625
|
|
1860
|
+
1858,u_122863,2,4,4,at risk,7,366.0,1156,23.0225
|
|
1861
|
+
1859,u_122890,4,3,3,loyal customers,1,836.0,437,27.705
|
|
1862
|
+
1860,u_12290,3,4,4,loyal customers,1,364.0,773,26.813333333333333
|
|
1863
|
+
1861,u_122900,2,3,3,need attention,5,720.0,986,30.134999999999998
|
|
1864
|
+
1862,u_122905,2,4,2,others,11,455.0,1253,36.685
|
|
1865
|
+
1863,u_122923,4,1,3,others,11,1445.0,391,32.55
|
|
1866
|
+
1864,u_122926,1,5,3,lost,10,58.0,1466,30.5225
|
|
1867
|
+
1865,u_12294,3,3,3,loyal customers,1,716.0,641,30.0375
|
|
1868
|
+
1866,u_122950,3,3,1,others,11,825.0,775,45.730000000000004
|
|
1869
|
+
1867,u_122956,1,4,2,lost,10,331.0,1516,41.4675
|
|
1870
|
+
1868,u_122958,5,2,1,new customers,3,1293.0,110,49.332499999999996
|
|
1871
|
+
1869,u_122968,5,5,3,loyal customers,1,112.0,72,32.7025
|
|
1872
|
+
1870,u_122970,5,3,3,loyal customers,1,890.0,177,29.468333333333334
|
|
1873
|
+
1871,u_122972,2,3,2,need attention,5,913.0,987,40.82
|
|
1874
|
+
1872,u_122984,5,3,4,loyal customers,1,674.0,240,24.51
|
|
1875
|
+
1873,u_122994,4,3,4,loyal customers,1,729.0,483,26.1875
|
|
1876
|
+
1874,u_123007,2,4,2,others,11,578.0,940,38.105000000000004
|
|
1877
|
+
1875,u_123026,1,5,2,lost,10,18.0,1805,35.0725
|
|
1878
|
+
1876,u_12303,4,1,4,others,11,1344.0,436,27.1175
|
|
1879
|
+
1877,u_123034,5,3,2,potential loyalist,2,744.5,9,41.65
|
|
1880
|
+
1878,u_12311,3,4,5,loyal customers,1,312.0,699,19.505000000000003
|
|
1881
|
+
1879,u_123110,3,4,4,loyal customers,1,440.0,721,23.665
|
|
1882
|
+
1880,u_123122,3,3,2,potential loyalist,2,599.0,722,35.135
|
|
1883
|
+
1881,u_123131,3,2,4,others,11,1031.0,699,23.845
|
|
1884
|
+
1882,u_123134,2,5,2,others,11,198.5,1165,38.62833333333333
|
|
1885
|
+
1883,u_123140,5,2,4,new customers,3,953.0,84,23.627499999999998
|
|
1886
|
+
1884,u_123149,2,5,3,at risk,7,83.0,1084,28.62333333333333
|
|
1887
|
+
1885,u_123152,3,4,4,loyal customers,1,313.0,869,24.2925
|
|
1888
|
+
1886,u_123158,1,5,2,lost,10,160.0,1495,39.06
|
|
1889
|
+
1887,u_123176,1,4,5,lost,10,416.0,1442,18.494999999999997
|
|
1890
|
+
1888,u_123187,4,3,3,loyal customers,1,883.0,342,30.4625
|
|
1891
|
+
1889,u_123191,2,4,2,others,11,474.0,1016,38.825
|
|
1892
|
+
1890,u_123196,3,3,5,loyal customers,1,622.0,915,17.3
|
|
1893
|
+
1891,u_1232,5,4,5,loyal customers,1,563.0,181,19.075
|
|
1894
|
+
1892,u_123201,5,2,3,new customers,3,1057.0,265,28.04
|
|
1895
|
+
1893,u_123217,4,3,4,loyal customers,1,756.0,316,25.56
|
|
1896
|
+
1894,u_123222,5,4,5,loyal customers,1,575.0,145,19.025
|
|
1897
|
+
1895,u_123228,1,3,3,lost,10,612.0,1333,28.01
|
|
1898
|
+
1896,u_123231,2,3,4,at risk,7,701.0,1133,20.7575
|
|
1899
|
+
1897,u_123247,2,3,2,need attention,5,685.0,1164,39.0775
|
|
1900
|
+
1898,u_123255,3,3,5,loyal customers,1,657.0,625,17.94
|
|
1901
|
+
1899,u_123272,1,5,2,lost,10,43.0,1638,35.11
|
|
1902
|
+
1900,u_123276,4,2,4,others,11,1168.0,320,22.505000000000003
|
|
1903
|
+
1901,u_123288,5,2,3,new customers,3,1105.0,221,30.9075
|
|
1904
|
+
1902,u_123299,5,5,3,loyal customers,1,184.0,50,29.045
|
|
1905
|
+
1903,u_123308,2,4,4,at risk,7,408.0,941,21.0425
|
|
1906
|
+
1904,u_123314,4,1,2,promising,4,1391.0,468,41.92
|
|
1907
|
+
1905,u_123324,3,2,3,need attention,5,1008.0,826,34.015
|
|
1908
|
+
1906,u_12339,4,4,2,potential loyalist,2,491.0,349,35.46
|
|
1909
|
+
1907,u_123418,4,4,5,loyal customers,1,291.0,580,14.552499999999998
|
|
1910
|
+
1908,u_123466,5,4,3,loyal customers,1,351.0,38,32.1125
|
|
1911
|
+
1909,u_123485,5,3,4,loyal customers,1,663.0,129,21.2125
|
|
1912
|
+
1910,u_12351,2,4,4,at risk,7,361.0,1133,24.9675
|
|
1913
|
+
1911,u_123523,5,1,4,new customers,3,1440.0,147,27.2
|
|
1914
|
+
1912,u_12354,5,4,5,loyal customers,1,571.5,38,19.616666666666664
|
|
1915
|
+
1913,u_123560,5,1,1,new customers,3,1591.0,244,42.7225
|
|
1916
|
+
1914,u_123563,4,5,4,loyal customers,1,61.0,337,21.64
|
|
1917
|
+
1915,u_123581,3,2,4,others,11,1021.0,769,26.2275
|
|
1918
|
+
1916,u_123582,1,5,3,lost,10,170.0,1776,32.987500000000004
|
|
1919
|
+
1917,u_123618,5,2,3,new customers,3,965.0,103,31.2675
|
|
1920
|
+
1918,u_123631,3,5,4,loyal customers,1,166.0,626,22.805
|
|
1921
|
+
1919,u_123649,3,4,3,loyal customers,1,502.0,852,27.6875
|
|
1922
|
+
1920,u_123667,1,5,4,lost,10,65.0,1500,26.5325
|
|
1923
|
+
1921,u_1237,3,4,2,potential loyalist,2,548.0,628,37.2975
|
|
1924
|
+
1922,u_123703,2,3,2,need attention,5,750.0,1099,35.8575
|
|
1925
|
+
1923,u_123707,3,5,4,loyal customers,1,265.0,891,24.735
|
|
1926
|
+
1924,u_123754,2,4,2,others,11,350.0,1212,37.7025
|
|
1927
|
+
1925,u_123759,5,1,5,new customers,3,1621.0,238,16.47
|
|
1928
|
+
1926,u_123769,3,4,2,potential loyalist,2,440.0,674,41.065
|
|
1929
|
+
1927,u_123775,5,1,3,new customers,3,1385.0,226,32.542500000000004
|
|
1930
|
+
1928,u_123786,1,5,3,lost,10,168.0,1523,27.8175
|
|
1931
|
+
1929,u_123810,3,3,5,loyal customers,1,688.0,825,19.405
|
|
1932
|
+
1930,u_123826,2,4,4,at risk,7,534.0,988,22.887500000000003
|
|
1933
|
+
1931,u_123828,3,4,3,loyal customers,1,408.0,680,29.266666666666666
|
|
1934
|
+
1932,u_123834,5,4,2,potential loyalist,2,502.0,244,42.285
|
|
1935
|
+
1933,u_123838,5,2,2,new customers,3,1106.0,83,41.182500000000005
|
|
1936
|
+
1934,u_123839,1,5,3,lost,10,173.0,1449,27.779999999999998
|
|
1937
|
+
1935,u_123844,5,4,2,potential loyalist,2,525.0,245,37.692499999999995
|
|
1938
|
+
1936,u_123858,3,4,3,loyal customers,1,364.0,605,29.05
|
|
1939
|
+
1937,u_12386,5,4,5,loyal customers,1,335.2,267,19.588333333333335
|
|
1940
|
+
1938,u_123865,2,3,4,at risk,7,840.0,1108,22.634999999999998
|
|
1941
|
+
1939,u_123874,1,4,3,lost,10,336.0,1420,31.695
|
|
1942
|
+
1940,u_12388,3,3,1,others,11,645.0,772,46.2
|
|
1943
|
+
1941,u_123896,3,4,5,loyal customers,1,383.0,721,18.9325
|
|
1944
|
+
1942,u_123919,3,3,5,loyal customers,1,704.0,821,19.1075
|
|
1945
|
+
1943,u_123930,2,4,2,others,11,321.0,1132,37.385000000000005
|
|
1946
|
+
1944,u_123940,4,5,5,loyal customers,1,215.0,290,20.259999999999998
|
|
1947
|
+
1945,u_123952,4,2,4,others,11,1089.0,508,22.18
|
|
1948
|
+
1946,u_123958,5,3,5,loyal customers,1,875.0,145,16.955
|
|
1949
|
+
1947,u_123983,5,1,2,new customers,3,1500.0,192,39.89
|
|
1950
|
+
1948,u_123990,5,2,2,new customers,3,1235.0,13,34.54
|
|
1951
|
+
1949,u_124014,3,4,5,loyal customers,1,398.0,629,12.2325
|
|
1952
|
+
1950,u_124019,2,5,2,others,11,161.0,1283,42.025000000000006
|
|
1953
|
+
1951,u_124021,4,3,5,loyal customers,1,600.0,365,16.4925
|
|
1954
|
+
1952,u_124049,3,2,4,others,11,1096.0,826,25.18
|
|
1955
|
+
1953,u_124066,4,4,3,loyal customers,1,582.0,577,32.085
|
|
1956
|
+
1954,u_12407,3,4,1,others,11,472.0,685,44.03
|
|
1957
|
+
1955,u_124072,4,4,4,loyal customers,1,551.0,339,23.6125
|
|
1958
|
+
1956,u_12408,3,4,3,loyal customers,1,310.0,849,33.805
|
|
1959
|
+
1957,u_124085,3,5,5,loyal customers,1,28.0,721,15.022499999999999
|
|
1960
|
+
1958,u_124088,1,4,3,lost,10,576.0,1345,30.7325
|
|
1961
|
+
1959,u_124092,5,3,3,loyal customers,1,842.0,73,34.0325
|
|
1962
|
+
1960,u_124105,4,5,2,potential loyalist,2,14.0,528,36.175
|
|
1963
|
+
1961,u_124110,4,5,4,loyal customers,1,274.5,413,21.584999999999997
|
|
1964
|
+
1962,u_124111,1,5,2,lost,10,76.0,1824,36.425
|
|
1965
|
+
1963,u_12413,2,3,4,at risk,7,748.0,1206,26.015
|
|
1966
|
+
1964,u_124149,5,1,5,new customers,3,1343.0,152,17.7175
|
|
1967
|
+
1965,u_124158,3,4,4,loyal customers,1,367.0,890,26.590000000000003
|
|
1968
|
+
1966,u_124162,3,4,1,others,11,445.0,804,49.575
|
|
1969
|
+
1967,u_124164,2,4,4,at risk,7,462.0,1035,27.127499999999998
|
|
1970
|
+
1968,u_124165,5,1,2,new customers,3,1641.0,252,41.2275
|
|
1971
|
+
1969,u_12420,5,2,2,new customers,3,1182.0,172,37.61
|
|
1972
|
+
1970,u_124201,3,3,3,loyal customers,1,670.0,685,33.417500000000004
|
|
1973
|
+
1971,u_124204,4,3,4,loyal customers,1,865.0,465,25.6325
|
|
1974
|
+
1972,u_124235,5,2,3,new customers,3,1129.0,9,32.2125
|
|
1975
|
+
1973,u_124241,1,4,2,lost,10,385.0,1320,40.2175
|
|
1976
|
+
1974,u_124261,4,3,3,loyal customers,1,637.5,511,32.755
|
|
1977
|
+
1975,u_124283,5,1,5,new customers,3,1636.0,10,12.18
|
|
1978
|
+
1976,u_124286,1,5,1,lost,10,95.0,1441,43.945
|
|
1979
|
+
1977,u_124290,3,5,3,loyal customers,1,64.0,730,27.76
|
|
1980
|
+
1978,u_124304,5,2,4,new customers,3,1157.0,216,27.0925
|
|
1981
|
+
1979,u_12431,2,4,5,at risk,7,535.0,1133,17.9025
|
|
1982
|
+
1980,u_124322,3,4,5,loyal customers,1,576.0,869,13.54
|
|
1983
|
+
1981,u_12433,5,4,3,loyal customers,1,336.6666666666667,97,34.058749999999996
|
|
1984
|
+
1982,u_124334,3,4,4,loyal customers,1,402.0,827,23.4525
|
|
1985
|
+
1983,u_124352,2,3,5,at risk,7,672.0,1182,19.225
|
|
1986
|
+
1984,u_124371,4,1,2,promising,4,1477.0,324,36.245
|
|
1987
|
+
1985,u_124372,4,2,3,others,11,1029.0,342,29.14
|
|
1988
|
+
1986,u_124378,4,5,2,potential loyalist,2,153.0,363,39.4725
|
|
1989
|
+
1987,u_124414,5,4,1,others,11,419.0,155,51.423333333333325
|
|
1990
|
+
1988,u_12443,4,2,3,others,11,1271.0,483,34.2025
|
|
1991
|
+
1989,u_124451,5,5,3,loyal customers,1,107.0,73,30.33
|
|
1992
|
+
1990,u_12447,4,2,2,promising,4,1204.0,489,40.5925
|
|
1993
|
+
1991,u_124482,4,5,3,loyal customers,1,134.0,349,33.4875
|
|
1994
|
+
1992,u_124484,5,1,3,new customers,3,1550.0,252,32.74
|
|
1995
|
+
1993,u_124487,3,3,3,loyal customers,1,868.0,599,33.4275
|
|
1996
|
+
1994,u_124500,3,3,5,loyal customers,1,719.0,703,11.96
|
|
1997
|
+
1995,u_124502,1,4,4,lost,10,408.0,1442,27.009999999999998
|
|
1998
|
+
1996,u_124526,3,5,4,loyal customers,1,141.0,915,26.445
|
|
1999
|
+
1997,u_124528,2,5,2,others,11,275.0,1008,34.44166666666666
|
|
2000
|
+
1998,u_124533,3,3,2,potential loyalist,2,615.0,685,36.349999999999994
|
|
2001
|
+
1999,u_124552,5,1,2,new customers,3,1451.0,158,37.5475
|