-
Notifications
You must be signed in to change notification settings - Fork 20
/
customer+segmentation
1350 lines (1350 loc) · 50.2 KB
/
customer+segmentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/ds4ci/CustSegs
/maoting1223/pycon_sg_2016
/WittyAgnomen/Customer
/smit5490/Customer-Segmentation
/praveenkumarperka/mywork
/franciscoroque/GroupProject
/ajinkyapathak/CustomerSegmentation
/prateek-kacker/CustomerSegmentation
/KimAlderman/CustomerSegmentation
/talenyc/CustomerSegmentation
/cl48/CustomerSegmentation
/saadk408/CustomerSegmentation
/rodrigowang/customerSegmentation
/deepansh27/CustomerSegmentation
/hemanthvakacharla/CustomerSegmentation
/cagz125/CustomerSegmentation
/anshul05/CustomerSegmentation
/pranavsachdev/CustomerSegmentation
/markditsworth/CustomerSegmentation
/ozlemmye/Customer-Segmentation
/Shivampanwar/Customer-Segmentation
/satitpongbundit/customer-segmentation
/Stuart-D-King/homer_segmentation
/ask-build/Customer-Segmentation
/smaoTHD/customer_segmentation
/hanshenry90/customer_segmentation
/danieltlo/Customer_Segmentation
/jalajthanaki/Customer_segmentation
/i-sultan/Customer-Segmentation
/adimali/customer_segmentation
/rudloffl/customer-segmentation
/georgenizharadze/Customer-segmentation
/wagner-rodeski/Customer_Segmentation
/andirs/customer_segmentation
/yidi-wang/customer_segmentation
/mowiena/customer_segmentation
/jpinzonc/customer_segmentation
/shivang98/Customer-Segmentation
/amitkbhatia/Customer_segmentation
/ShamailMulla/Customer-Segmentation
/aboalfod/Customer_Segmentation
/sudhiir43/Customer-Segmentation
/Raj-Yadav/customer_segmentation
/muhammedeltabakh/Customer-Segmentation
/akshar07/customer-segmentation
/0rland0/customer-segmentation
/mcassi17/customer_segmentation
/whitefusion/customer-segmentation
/Micah0808/Customer-Segmentation
/jainds/Customer-Segmentation
/Sachin-Ramesh10/Customer-Segmentation
/thomas-bamilo/customer_segmentation
/SKRohit/Customer-Segmentation
/jbarrett1615/Customer-Segmentation
/MarkPratley/Customer-Segmentation
/datanee/customer_segmentation
/beleidy/customer-segmentation
/tule2236/Customer_Segmentation
/soumyodipto/Customer-Segmentation
/vincefav/customer-segmentation
/samuelgorla/Customer-Segmentation
/manoj06/Customer-Segmentation
/mnaye/customer-segmentation
/tram305/Customer_segmentation
/antdro/customer_segmentation
/jimris/Customer-Segmentation
/jeremyjordan/customer-segmentation
/HeshamMeneisi/Customer-Segmentation
/VineethRaghav/Customer-Segmentation
/jwjhuang/customer_segmentation
/snehalnair/Customer-Segmentation
/kneehit/Customer_Segmentation
/Nafisur21/Customer_Segmentation
/TimusLetap/Customer-Segmentation
/liminalme/Customer-Segmentation-
/ronjacks/Customer-Segmentation
/talenyc/customer_segmentation
/ggallo/customer-segmentation
/longmoc/customer-segmentation
/malinthasa/customer_segmentation
/almond11/customer-segmentation
/ericchen168/customer-segmentation
/schumanzhang/Customer-segmentation
/martinbede/customer-segmentation
/sahilpanjwani/customer_segmentation
/jeremy-bertincourt/Customer_segmentation
/SvensBigData/customer_segmentation
/nikhilchintalapudi/Customer-Segmentation
/KendallScott/customer_segmentation
/devinkmoore/customer_segmentation
/EstopaGrabe/Customer-Segmentation
/TarkanHM/Customer-Segmentation
/fanta-mnix/customer-segmentation
/sik-flow/customer_segmentation
/ihsansatriawan/customer-segmentation
/deep1blue/Customer-Segmentation
/yanyanmountainview/customer_segmentation
/pdarling1982/Customer-Segmentation
/jjuhn/Customer-Segmentation
/DionysiosZelios/RFM_analysis
/nicolasfguillaume/Marketing-Analytics-with-R
/jz503/customers_segmentation
/justwjr/Marketing-Data-Science
/fbarrientos/Marketing_Clusters
/koppepanna/ML3
/mramachandran/git-customer-segment
/Karan-Daiict/Codiecon
/derasor/ML_3_Unsupervised_Learning
/jpsarkar/Customer_Segment_using_Scala
/steffenhartleib/CustomerSegmentationFlashDeal
/railgan/CustomerSegmentationTest
/felix-last/DM-CustomerSegmentation
/amadice/CustomerSegmentation_Amadeus
/luanjiang/CustomerSegmentationUsingGMM
/bnajafi/RFM_CustomerSegmentation
/thalessan/Tsn_CustomerSegmentation
/jacobgreen1984/R_CustomerSegmentation
/AfnanSh/CustomerSegmentationML
/pieromaggi/Datamining_segmentation
/yugoli/Customer-Churn-Segmentation
/VibhorSaxena/MLND-Customer-Segmentation
/ktraj1/customer_real-time_segmentation
/ryemitan/Customer-Segmentation-and-Churn
/dataScientist11/Customer-Segmentation-Machine-Learning-
/deepaksharma64/Kmeans-Clustering---Customer-Segmentation
/katariyj/UK-Bank-Customer-Segmentation-
/andrewghelms/Customer-Segmentation-Project
/QuantumRay/Customer-Segmentation-Report
/datatalesblog/Customer-Segmentation-SAS
/BoulderKiwi/Customer-Segmentation-Clustering
/girish-sukhwani/Wholesale-Customer-Segmentation
/gaoyanwang/Creating_Customer_Segmentation
/prateek1592/customer-segmentation-fault
/kamal94/MLND-Customer-Segmentation
/taochenshh/Customer-Segmentation-Unsupervised-Learning
/BabizAnalyst/Customer_Segmentation_R
/Kumaava/MLND_customer_segmentation
/Datamol/Customer-Segmentation-Churn-Analytics
/sedemmler/Machine-Learning-Customer-Segmentation
/Mogbo/Customer-Clustering-Segmentation-Challenge
/bburns/MLND-Customer-Segmentation
/olsenben/Customer-Segmentation-Using-Clustering
/venkat-othisamy/Airline-customer-segmentation
/andrew-duffle/customer_segmentation_limits
/lyuyunhuan/Customer_Segmentation_Udacity
/chenshi5826/Customer-Segmentation-using-Clustering
/snehalnair/Customer-Segmentation-RFM
/Lavender-Ding/Customer-Segmentation-for-Disney
/blackelectricity/Customer-Segmentation-Project
/liopic/scbcn17-customer-segmentation
/ranjittilekar/Customer-Segmentation-Unsupervised-Learning
/sushaanths/Customer_Segmentation_StoryLine
/SATHVIKRAJU/Customer_segmentation_clustering
/johnbwilliams/Customer-segmentation-cluster-analysis
/LeanderQ/ML3-Customer-Segmentation
/piyu-sh/customer-segmentation-component
/knightkro/customer-segmentation-Python
/satyamt13/Customer_Segmentation_Using_Clustering
/subnil/Customer-Loan-Data-Segmentation
/ljj-ml/Customer-Segmentation-Analysis
/tule2236/UnsupervisedML_Customer_Segmentation
/njoaquinacosta/Customer-Segmentation-RFM-Matrix
/kbansal004/Customer_Segmentation_Project
/vijayPagi/Customer_Segments
/rohanchikorde/Customer_segmentation-using-python
/PavlosSakoglou/Customer-Segmentation-Clustering-Problem
/pankhuriagarwal/Customer-Segmentation--using-GMM-
/LRParser/unsupervised_customer_segmentation
/gaure/ML_Customer_Segmentation
/Gurupradeep/Customer-Segmentation-using-datamining
/anpjai/Customer-Segmentation-Churn-Analysis
/akront1104/Customer_Segmentation_using_Clustering
/purijs/udacity-customer-segmentation
/YaTingChang0620/eCommerce-Customer-Segmentation
/jcardenaslie/customer-segmentation_python
/Rob-M-F/Customer_Segments
/lokesharma92/CreditCard_Segmentation
/jonlee317/customerSegments
/derekhughes71/segmentation-analysis
/mbzhuang/CustomerSegmentationforVAProducts
/mkewls/customer-segments
/samadik/Customer_Segments
/lauravarsandan/customersegmentation
/fananan/Customer-Segementation
/CoHess/Customer_Segmentation_and_Recommendation-Kindle
/vivianrajkumar/geo-demographic-segmentation
/sriabhi3229/segmentation_of_customers
/Toshana/creating_customer_segments
/Raj85/Customer_Segmentation_MLNDP_Project_3
/vipul105/Loyalty-segmentation
/rustyoldrake/Strategic_Segmentation
/soheiln/mlnd_p3_customer_segmentation
/datascienceandml/Customer-segmentation-and-CLTV-analysis
/dineshk1493/Customer-Analytics
/Rahmeen14/Segmenting-Customers
/JeffADaniels/Creating_Customer_Segments
/dinusunny93/Clustering
/shellshock1911/Creating-Customer-Segments
/kantologist/customer_segments
/mrparimi/Customer_Analytics
/akshayt19nayak/Scalend-Assignment
/k0rn/rndforest
/naominguyen7/customer-segment
/kabyabasu/customer_segments
/cbeanland/Online-data-segmentation
/jasonicarter/MLND_creating_customer_segments
/radhikashenoy/customer-segments
/alifier/Customer_Segments
/clapiva/TFM-Segmentation-of-airline-customers
/cgkaczenski/Customer-Segments-Unsupervised-Learning
/nadimintikrish/customer_segments
/RaviKaushik2372/Credit-Card-Customers-Segmentation-Profiling
/vipulsharma1993/Credit-Card-Customers-Segmentation-Profiling
/kimanalytics/Machine-Learning-with-Customer-Segmentation-using-Clustering
/jstephenj14/Debit-Card-Segmentation
/naveenrc/k_means
/Dalaska/Udacity-Customer-Segment-Unsupervised-Learning
/devksingh/ML_P4_Customer_Segmentation_Unsupervised
/qiyangduan/cust_seg
/garimasood/E-commerce-data-analysis-and-customer-segmentation
/myankshah/SAS_Customer_Segmentation_using_ClusterAnalysis
/arjunbhasin2013/Data-Science-Project-Customer-Segmentation-in-R
/Vikneshvar/Customer-Segmentation-Analysis-of-Apparel-Products
/tastuteche/customer-pregnancy-segmentation-for-instacart-data
/Lavender-Ding/Customer-Segmentation-Model-in-SolutionLab
/AaronRanAn/Udacity_MLNano_Proj_3_Customer_Segmentation
/7ayden/customer_segments
/joshuadelosreyes/market-segmentation-kmeans
/thomas-choi/customer_segments
/shanealynn/Kohonen-Self-organising-maps-in-R
/kaflesudip/SportsBettingPrediction
/vaibhavlaturkar/Customer-Lifetime-Value-Project
/ChristosTheodoropoulos/CustomerSegments
/AaronRanAn/Peapod_Segmentation_and_LTV_Proj
/SLilit/Customer_segments
/saiabhishekgv/Customer_Segments
/Micah0808/Telco-Customer-Churn-Modelling
/rilutham/HAC-DM
/siddheshdhuri/athena
/kvn219/creating-customer-segments
/heyuping0331/Artsy-Market-Segmentation-Email-Campaign
/aumat/Wholesale-customers
/mehulparmar90/Consumer-Market-Segmentation-Clustering-using-RapidMiner
/Micah0808/Telco-Customer-Churn-Modelling-Micah-Cearns
/stefandulman/udacity_machinelearning_p3
/sjbaek/Mobile-Shop-data-analysis
/myankshah/SAS_Telecom_Churn_Capstone_Project
/albre116/STM_Lane_Selection
/giladgressel/MLND_P3
/olalakul/Wholesale-multivariate-analysis
/leoltl/RFMmodel-with-Python
/icid10/New-Customers-Clustering-90-days-
/Bmax-Tech/K-Means-Clustering
/kevincwu0/deep-learning-ann-churn-modeling
/anurajaram/Marketing_fns
/shockwave22/Walmart-Trip-Type-Classification
/oxfordBlueDevil/Bike-Share-Analysis
/joshuaemayer/Machine-Learning-Clustering
/awbrown90/ML-unsupervised-learning
/SinghSmriti/Design-and-Implementation-of-Association-Rule-Mining-System
/swapatGithub/Analysis-of-Digital-advertising-campaign-data
/Prakashvanapalli/RFMAnalysis
/springlaughing/Data-science-for-marketing
/mathriano/MACCRO_BANK
/skp104/Walmart-trip-type-classification
/kaflesudip/CDSSTWeb
/sagarBoraiah/SmartCart_Ecommerce
/sagarBoraiah/SmartCart
/hosstay/Grocery-Store-Queue
/uluumy/Become-a-Citizen-Data-Scientist
/ds4ci/CustSegs
/maoting1223/pycon_sg_2016
/WittyAgnomen/Customer
/smit5490/Customer-Segmentation
/praveenkumarperka/mywork
/franciscoroque/GroupProject
/ajinkyapathak/CustomerSegmentation
/prateek-kacker/CustomerSegmentation
/KimAlderman/CustomerSegmentation
/talenyc/CustomerSegmentation
/cl48/CustomerSegmentation
/saadk408/CustomerSegmentation
/rodrigowang/customerSegmentation
/deepansh27/CustomerSegmentation
/hemanthvakacharla/CustomerSegmentation
/cagz125/CustomerSegmentation
/anshul05/CustomerSegmentation
/pranavsachdev/CustomerSegmentation
/markditsworth/CustomerSegmentation
/ozlemmye/Customer-Segmentation
/Shivampanwar/Customer-Segmentation
/satitpongbundit/customer-segmentation
/Stuart-D-King/homer_segmentation
/ask-build/Customer-Segmentation
/smaoTHD/customer_segmentation
/hanshenry90/customer_segmentation
/danieltlo/Customer_Segmentation
/jalajthanaki/Customer_segmentation
/i-sultan/Customer-Segmentation
/adimali/customer_segmentation
/rudloffl/customer-segmentation
/georgenizharadze/Customer-segmentation
/wagner-rodeski/Customer_Segmentation
/andirs/customer_segmentation
/yidi-wang/customer_segmentation
/mowiena/customer_segmentation
/jpinzonc/customer_segmentation
/shivang98/Customer-Segmentation
/amitkbhatia/Customer_segmentation
/ShamailMulla/Customer-Segmentation
/aboalfod/Customer_Segmentation
/sudhiir43/Customer-Segmentation
/Raj-Yadav/customer_segmentation
/muhammedeltabakh/Customer-Segmentation
/akshar07/customer-segmentation
/0rland0/customer-segmentation
/mcassi17/customer_segmentation
/whitefusion/customer-segmentation
/Micah0808/Customer-Segmentation
/jainds/Customer-Segmentation
/Sachin-Ramesh10/Customer-Segmentation
/thomas-bamilo/customer_segmentation
/SKRohit/Customer-Segmentation
/jbarrett1615/Customer-Segmentation
/MarkPratley/Customer-Segmentation
/datanee/customer_segmentation
/beleidy/customer-segmentation
/tule2236/Customer_Segmentation
/soumyodipto/Customer-Segmentation
/vincefav/customer-segmentation
/samuelgorla/Customer-Segmentation
/manoj06/Customer-Segmentation
/mnaye/customer-segmentation
/tram305/Customer_segmentation
/antdro/customer_segmentation
/jimris/Customer-Segmentation
/jeremyjordan/customer-segmentation
/HeshamMeneisi/Customer-Segmentation
/VineethRaghav/Customer-Segmentation
/jwjhuang/customer_segmentation
/snehalnair/Customer-Segmentation
/kneehit/Customer_Segmentation
/Nafisur21/Customer_Segmentation
/TimusLetap/Customer-Segmentation
/liminalme/Customer-Segmentation-
/ronjacks/Customer-Segmentation
/talenyc/customer_segmentation
/ggallo/customer-segmentation
/longmoc/customer-segmentation
/malinthasa/customer_segmentation
/almond11/customer-segmentation
/ericchen168/customer-segmentation
/schumanzhang/Customer-segmentation
/martinbede/customer-segmentation
/sahilpanjwani/customer_segmentation
/jeremy-bertincourt/Customer_segmentation
/SvensBigData/customer_segmentation
/nikhilchintalapudi/Customer-Segmentation
/KendallScott/customer_segmentation
/devinkmoore/customer_segmentation
/EstopaGrabe/Customer-Segmentation
/TarkanHM/Customer-Segmentation
/fanta-mnix/customer-segmentation
/sik-flow/customer_segmentation
/ihsansatriawan/customer-segmentation
/deep1blue/Customer-Segmentation
/yanyanmountainview/customer_segmentation
/pdarling1982/Customer-Segmentation
/jjuhn/Customer-Segmentation
/DionysiosZelios/RFM_analysis
/nicolasfguillaume/Marketing-Analytics-with-R
/jz503/customers_segmentation
/justwjr/Marketing-Data-Science
/fbarrientos/Marketing_Clusters
/koppepanna/ML3
/mramachandran/git-customer-segment
/Karan-Daiict/Codiecon
/derasor/ML_3_Unsupervised_Learning
/jpsarkar/Customer_Segment_using_Scala
/steffenhartleib/CustomerSegmentationFlashDeal
/railgan/CustomerSegmentationTest
/felix-last/DM-CustomerSegmentation
/amadice/CustomerSegmentation_Amadeus
/luanjiang/CustomerSegmentationUsingGMM
/bnajafi/RFM_CustomerSegmentation
/thalessan/Tsn_CustomerSegmentation
/jacobgreen1984/R_CustomerSegmentation
/AfnanSh/CustomerSegmentationML
/pieromaggi/Datamining_segmentation
/yugoli/Customer-Churn-Segmentation
/VibhorSaxena/MLND-Customer-Segmentation
/ktraj1/customer_real-time_segmentation
/ryemitan/Customer-Segmentation-and-Churn
/dataScientist11/Customer-Segmentation-Machine-Learning-
/deepaksharma64/Kmeans-Clustering---Customer-Segmentation
/katariyj/UK-Bank-Customer-Segmentation-
/andrewghelms/Customer-Segmentation-Project
/QuantumRay/Customer-Segmentation-Report
/datatalesblog/Customer-Segmentation-SAS
/BoulderKiwi/Customer-Segmentation-Clustering
/girish-sukhwani/Wholesale-Customer-Segmentation
/gaoyanwang/Creating_Customer_Segmentation
/prateek1592/customer-segmentation-fault
/kamal94/MLND-Customer-Segmentation
/taochenshh/Customer-Segmentation-Unsupervised-Learning
/BabizAnalyst/Customer_Segmentation_R
/Kumaava/MLND_customer_segmentation
/Datamol/Customer-Segmentation-Churn-Analytics
/sedemmler/Machine-Learning-Customer-Segmentation
/Mogbo/Customer-Clustering-Segmentation-Challenge
/bburns/MLND-Customer-Segmentation
/olsenben/Customer-Segmentation-Using-Clustering
/venkat-othisamy/Airline-customer-segmentation
/andrew-duffle/customer_segmentation_limits
/lyuyunhuan/Customer_Segmentation_Udacity
/chenshi5826/Customer-Segmentation-using-Clustering
/snehalnair/Customer-Segmentation-RFM
/Lavender-Ding/Customer-Segmentation-for-Disney
/blackelectricity/Customer-Segmentation-Project
/liopic/scbcn17-customer-segmentation
/ranjittilekar/Customer-Segmentation-Unsupervised-Learning
/sushaanths/Customer_Segmentation_StoryLine
/SATHVIKRAJU/Customer_segmentation_clustering
/johnbwilliams/Customer-segmentation-cluster-analysis
/LeanderQ/ML3-Customer-Segmentation
/piyu-sh/customer-segmentation-component
/knightkro/customer-segmentation-Python
/satyamt13/Customer_Segmentation_Using_Clustering
/subnil/Customer-Loan-Data-Segmentation
/ljj-ml/Customer-Segmentation-Analysis
/tule2236/UnsupervisedML_Customer_Segmentation
/njoaquinacosta/Customer-Segmentation-RFM-Matrix
/kbansal004/Customer_Segmentation_Project
/vijayPagi/Customer_Segments
/rohanchikorde/Customer_segmentation-using-python
/PavlosSakoglou/Customer-Segmentation-Clustering-Problem
/pankhuriagarwal/Customer-Segmentation--using-GMM-
/LRParser/unsupervised_customer_segmentation
/gaure/ML_Customer_Segmentation
/Gurupradeep/Customer-Segmentation-using-datamining
/anpjai/Customer-Segmentation-Churn-Analysis
/akront1104/Customer_Segmentation_using_Clustering
/purijs/udacity-customer-segmentation
/YaTingChang0620/eCommerce-Customer-Segmentation
/jcardenaslie/customer-segmentation_python
/Rob-M-F/Customer_Segments
/lokesharma92/CreditCard_Segmentation
/jonlee317/customerSegments
/derekhughes71/segmentation-analysis
/mbzhuang/CustomerSegmentationforVAProducts
/mkewls/customer-segments
/samadik/Customer_Segments
/lauravarsandan/customersegmentation
/fananan/Customer-Segementation
/CoHess/Customer_Segmentation_and_Recommendation-Kindle
/vivianrajkumar/geo-demographic-segmentation
/sriabhi3229/segmentation_of_customers
/Toshana/creating_customer_segments
/Raj85/Customer_Segmentation_MLNDP_Project_3
/vipul105/Loyalty-segmentation
/rustyoldrake/Strategic_Segmentation
/soheiln/mlnd_p3_customer_segmentation
/datascienceandml/Customer-segmentation-and-CLTV-analysis
/dineshk1493/Customer-Analytics
/Rahmeen14/Segmenting-Customers
/JeffADaniels/Creating_Customer_Segments
/shellshock1911/Creating-Customer-Segments
/dinusunny93/Clustering
/kantologist/customer_segments
/mrparimi/Customer_Analytics
/akshayt19nayak/Scalend-Assignment
/k0rn/rndforest
/naominguyen7/customer-segment
/kabyabasu/customer_segments
/cbeanland/Online-data-segmentation
/jasonicarter/MLND_creating_customer_segments
/radhikashenoy/customer-segments
/alifier/Customer_Segments
/clapiva/TFM-Segmentation-of-airline-customers
/cgkaczenski/Customer-Segments-Unsupervised-Learning
/nadimintikrish/customer_segments
/RaviKaushik2372/Credit-Card-Customers-Segmentation-Profiling
/vipulsharma1993/Credit-Card-Customers-Segmentation-Profiling
/kimanalytics/Machine-Learning-with-Customer-Segmentation-using-Clustering
/jstephenj14/Debit-Card-Segmentation
/naveenrc/k_means
/devksingh/ML_P4_Customer_Segmentation_Unsupervised
/Dalaska/Udacity-Customer-Segment-Unsupervised-Learning
/qiyangduan/cust_seg
/garimasood/E-commerce-data-analysis-and-customer-segmentation
/myankshah/SAS_Customer_Segmentation_using_ClusterAnalysis
/arjunbhasin2013/Data-Science-Project-Customer-Segmentation-in-R
/Vikneshvar/Customer-Segmentation-Analysis-of-Apparel-Products
/tastuteche/customer-pregnancy-segmentation-for-instacart-data
/Lavender-Ding/Customer-Segmentation-Model-in-SolutionLab
/AaronRanAn/Udacity_MLNano_Proj_3_Customer_Segmentation
/7ayden/customer_segments
/joshuadelosreyes/market-segmentation-kmeans
/thomas-choi/customer_segments
/shanealynn/Kohonen-Self-organising-maps-in-R
/kaflesudip/SportsBettingPrediction
/vaibhavlaturkar/Customer-Lifetime-Value-Project
/ChristosTheodoropoulos/CustomerSegments
/AaronRanAn/Peapod_Segmentation_and_LTV_Proj
/SLilit/Customer_segments
/saiabhishekgv/Customer_Segments
/Micah0808/Telco-Customer-Churn-Modelling
/rilutham/HAC-DM
/siddheshdhuri/athena
/kvn219/creating-customer-segments
/heyuping0331/Artsy-Market-Segmentation-Email-Campaign
/aumat/Wholesale-customers
/mehulparmar90/Consumer-Market-Segmentation-Clustering-using-RapidMiner
/Micah0808/Telco-Customer-Churn-Modelling-Micah-Cearns
/stefandulman/udacity_machinelearning_p3
/sjbaek/Mobile-Shop-data-analysis
/myankshah/SAS_Telecom_Churn_Capstone_Project
/albre116/STM_Lane_Selection
/giladgressel/MLND_P3
/olalakul/Wholesale-multivariate-analysis
/leoltl/RFMmodel-with-Python
/icid10/New-Customers-Clustering-90-days-
/Bmax-Tech/K-Means-Clustering
/kevincwu0/deep-learning-ann-churn-modeling
/anurajaram/Marketing_fns
/shockwave22/Walmart-Trip-Type-Classification
/oxfordBlueDevil/Bike-Share-Analysis
/joshuaemayer/Machine-Learning-Clustering
/awbrown90/ML-unsupervised-learning
/SinghSmriti/Design-and-Implementation-of-Association-Rule-Mining-System
/swapatGithub/Analysis-of-Digital-advertising-campaign-data
/Prakashvanapalli/RFMAnalysis
/springlaughing/Data-science-for-marketing
/mathriano/MACCRO_BANK
/skp104/Walmart-trip-type-classification
/kaflesudip/CDSSTWeb
/sagarBoraiah/SmartCart_Ecommerce
/sagarBoraiah/SmartCart
/hosstay/Grocery-Store-Queue
/uluumy/Become-a-Citizen-Data-Scientist
/maoting1223/pycon_sg_2016
/justwjr/Marketing-Data-Science
/kaflesudip/SportsBettingPrediction
/ds4ci/CustSegs
/smit5490/Customer-Segmentation
/shanealynn/Kohonen-Self-organising-maps-in-R
/Stuart-D-King/homer_segmentation
/DionysiosZelios/RFM_analysis
/lokesharma92/CreditCard_Segmentation
/Rahmeen14/Segmenting-Customers
/shockwave22/Walmart-Trip-Type-Classification
/yidi-wang/customer_segmentation
/jeremyjordan/customer-segmentation
/Nafisur21/Customer_Segmentation
/fanta-mnix/customer-segmentation
/deep1blue/Customer-Segmentation
/nicolasfguillaume/Marketing-Analytics-with-R
/fbarrientos/Marketing_Clusters
/jpsarkar/Customer_Segment_using_Scala
/felix-last/DM-CustomerSegmentation
/bnajafi/RFM_CustomerSegmentation
/jacobgreen1984/R_CustomerSegmentation
/yugoli/Customer-Churn-Segmentation
/ryemitan/Customer-Segmentation-and-Churn
/datatalesblog/Customer-Segmentation-SAS
/bburns/MLND-Customer-Segmentation
/Gurupradeep/Customer-Segmentation-using-datamining
/samadik/Customer_Segments
/CoHess/Customer_Segmentation_and_Recommendation-Kindle
/vipul105/Loyalty-segmentation
/rustyoldrake/Strategic_Segmentation
/dinusunny93/Clustering
/kabyabasu/customer_segments
/alifier/Customer_Segments
/jstephenj14/Debit-Card-Segmentation
/myankshah/SAS_Customer_Segmentation_using_ClusterAnalysis
/joshuadelosreyes/market-segmentation-kmeans
/myankshah/SAS_Telecom_Churn_Capstone_Project
/albre116/STM_Lane_Selection
/kevincwu0/deep-learning-ann-churn-modeling
/anurajaram/Marketing_fns
/awbrown90/ML-unsupervised-learning
/springlaughing/Data-science-for-marketing
/sagarBoraiah/SmartCart
/uluumy/Become-a-Citizen-Data-Scientist
/WittyAgnomen/Customer
/praveenkumarperka/mywork
/franciscoroque/GroupProject
/ajinkyapathak/CustomerSegmentation
/prateek-kacker/CustomerSegmentation
/KimAlderman/CustomerSegmentation
/talenyc/CustomerSegmentation
/cl48/CustomerSegmentation
/saadk408/CustomerSegmentation
/rodrigowang/customerSegmentation
/deepansh27/CustomerSegmentation
/hemanthvakacharla/CustomerSegmentation
/cagz125/CustomerSegmentation
/anshul05/CustomerSegmentation
/pranavsachdev/CustomerSegmentation
/markditsworth/CustomerSegmentation
/ozlemmye/Customer-Segmentation
/Shivampanwar/Customer-Segmentation
/satitpongbundit/customer-segmentation
/ask-build/Customer-Segmentation
/smaoTHD/customer_segmentation
/hanshenry90/customer_segmentation
/danieltlo/Customer_Segmentation
/jalajthanaki/Customer_segmentation
/i-sultan/Customer-Segmentation
/adimali/customer_segmentation
/rudloffl/customer-segmentation
/georgenizharadze/Customer-segmentation
/wagner-rodeski/Customer_Segmentation
/andirs/customer_segmentation
/mowiena/customer_segmentation
/jpinzonc/customer_segmentation
/shivang98/Customer-Segmentation
/amitkbhatia/Customer_segmentation
/ShamailMulla/Customer-Segmentation
/aboalfod/Customer_Segmentation
/sudhiir43/Customer-Segmentation
/Raj-Yadav/customer_segmentation
/muhammedeltabakh/Customer-Segmentation
/akshar07/customer-segmentation
/0rland0/customer-segmentation
/mcassi17/customer_segmentation
/whitefusion/customer-segmentation
/Micah0808/Customer-Segmentation
/jainds/Customer-Segmentation
/Sachin-Ramesh10/Customer-Segmentation
/thomas-bamilo/customer_segmentation
/SKRohit/Customer-Segmentation
/jbarrett1615/Customer-Segmentation
/MarkPratley/Customer-Segmentation
/datanee/customer_segmentation
/beleidy/customer-segmentation
/tule2236/Customer_Segmentation
/soumyodipto/Customer-Segmentation
/vincefav/customer-segmentation
/samuelgorla/Customer-Segmentation
/manoj06/Customer-Segmentation
/mnaye/customer-segmentation
/tram305/Customer_segmentation
/antdro/customer_segmentation
/jimris/Customer-Segmentation
/HeshamMeneisi/Customer-Segmentation
/VineethRaghav/Customer-Segmentation
/jwjhuang/customer_segmentation
/snehalnair/Customer-Segmentation
/kneehit/Customer_Segmentation
/TimusLetap/Customer-Segmentation
/liminalme/Customer-Segmentation-
/ronjacks/Customer-Segmentation
/talenyc/customer_segmentation
/ggallo/customer-segmentation
/longmoc/customer-segmentation
/malinthasa/customer_segmentation
/almond11/customer-segmentation
/ericchen168/customer-segmentation
/schumanzhang/Customer-segmentation
/martinbede/customer-segmentation
/sahilpanjwani/customer_segmentation
/jeremy-bertincourt/Customer_segmentation
/SvensBigData/customer_segmentation
/nikhilchintalapudi/Customer-Segmentation
/KendallScott/customer_segmentation
/devinkmoore/customer_segmentation
/EstopaGrabe/Customer-Segmentation
/TarkanHM/Customer-Segmentation
/sik-flow/customer_segmentation
/ihsansatriawan/customer-segmentation
/yanyanmountainview/customer_segmentation
/pdarling1982/Customer-Segmentation
/jjuhn/Customer-Segmentation
/jz503/customers_segmentation
/koppepanna/ML3
/mramachandran/git-customer-segment
/Karan-Daiict/Codiecon
/derasor/ML_3_Unsupervised_Learning
/steffenhartleib/CustomerSegmentationFlashDeal
/railgan/CustomerSegmentationTest
/amadice/CustomerSegmentation_Amadeus
/luanjiang/CustomerSegmentationUsingGMM
/thalessan/Tsn_CustomerSegmentation
/AfnanSh/CustomerSegmentationML
/pieromaggi/Datamining_segmentation
/VibhorSaxena/MLND-Customer-Segmentation
/ktraj1/customer_real-time_segmentation
/dataScientist11/Customer-Segmentation-Machine-Learning-
/deepaksharma64/Kmeans-Clustering---Customer-Segmentation
/katariyj/UK-Bank-Customer-Segmentation-
/andrewghelms/Customer-Segmentation-Project
/QuantumRay/Customer-Segmentation-Report
/BoulderKiwi/Customer-Segmentation-Clustering
/girish-sukhwani/Wholesale-Customer-Segmentation
/gaoyanwang/Creating_Customer_Segmentation
/prateek1592/customer-segmentation-fault
/kamal94/MLND-Customer-Segmentation
/taochenshh/Customer-Segmentation-Unsupervised-Learning
/BabizAnalyst/Customer_Segmentation_R
/Kumaava/MLND_customer_segmentation
/Datamol/Customer-Segmentation-Churn-Analytics
/sedemmler/Machine-Learning-Customer-Segmentation
/Mogbo/Customer-Clustering-Segmentation-Challenge
/olsenben/Customer-Segmentation-Using-Clustering
/venkat-othisamy/Airline-customer-segmentation
/andrew-duffle/customer_segmentation_limits
/lyuyunhuan/Customer_Segmentation_Udacity
/chenshi5826/Customer-Segmentation-using-Clustering
/snehalnair/Customer-Segmentation-RFM
/Lavender-Ding/Customer-Segmentation-for-Disney
/blackelectricity/Customer-Segmentation-Project
/liopic/scbcn17-customer-segmentation
/ranjittilekar/Customer-Segmentation-Unsupervised-Learning
/sushaanths/Customer_Segmentation_StoryLine
/SATHVIKRAJU/Customer_segmentation_clustering
/johnbwilliams/Customer-segmentation-cluster-analysis
/LeanderQ/ML3-Customer-Segmentation
/piyu-sh/customer-segmentation-component
/knightkro/customer-segmentation-Python
/satyamt13/Customer_Segmentation_Using_Clustering
/subnil/Customer-Loan-Data-Segmentation
/ljj-ml/Customer-Segmentation-Analysis
/tule2236/UnsupervisedML_Customer_Segmentation
/njoaquinacosta/Customer-Segmentation-RFM-Matrix
/kbansal004/Customer_Segmentation_Project
/vijayPagi/Customer_Segments
/rohanchikorde/Customer_segmentation-using-python
/PavlosSakoglou/Customer-Segmentation-Clustering-Problem
/pankhuriagarwal/Customer-Segmentation--using-GMM-
/LRParser/unsupervised_customer_segmentation
/gaure/ML_Customer_Segmentation
/anpjai/Customer-Segmentation-Churn-Analysis
/akront1104/Customer_Segmentation_using_Clustering
/purijs/udacity-customer-segmentation
/YaTingChang0620/eCommerce-Customer-Segmentation
/jcardenaslie/customer-segmentation_python
/Rob-M-F/Customer_Segments
/jonlee317/customerSegments
/derekhughes71/segmentation-analysis
/mbzhuang/CustomerSegmentationforVAProducts
/mkewls/customer-segments
/lauravarsandan/customersegmentation
/fananan/Customer-Segementation
/vivianrajkumar/geo-demographic-segmentation
/sriabhi3229/segmentation_of_customers
/Toshana/creating_customer_segments
/Raj85/Customer_Segmentation_MLNDP_Project_3
/soheiln/mlnd_p3_customer_segmentation
/datascienceandml/Customer-segmentation-and-CLTV-analysis
/dineshk1493/Customer-Analytics
/JeffADaniels/Creating_Customer_Segments
/shellshock1911/Creating-Customer-Segments
/kantologist/customer_segments
/mrparimi/Customer_Analytics
/akshayt19nayak/Scalend-Assignment
/k0rn/rndforest
/naominguyen7/customer-segment
/cbeanland/Online-data-segmentation
/jasonicarter/MLND_creating_customer_segments
/radhikashenoy/customer-segments
/clapiva/TFM-Segmentation-of-airline-customers
/cgkaczenski/Customer-Segments-Unsupervised-Learning
/nadimintikrish/customer_segments
/RaviKaushik2372/Credit-Card-Customers-Segmentation-Profiling
/vipulsharma1993/Credit-Card-Customers-Segmentation-Profiling
/kimanalytics/Machine-Learning-with-Customer-Segmentation-using-Clustering
/naveenrc/k_means
/devksingh/ML_P4_Customer_Segmentation_Unsupervised
/Dalaska/Udacity-Customer-Segment-Unsupervised-Learning
/qiyangduan/cust_seg
/garimasood/E-commerce-data-analysis-and-customer-segmentation
/arjunbhasin2013/Data-Science-Project-Customer-Segmentation-in-R
/Vikneshvar/Customer-Segmentation-Analysis-of-Apparel-Products
/tastuteche/customer-pregnancy-segmentation-for-instacart-data
/Lavender-Ding/Customer-Segmentation-Model-in-SolutionLab
/AaronRanAn/Udacity_MLNano_Proj_3_Customer_Segmentation
/7ayden/customer_segments
/thomas-choi/customer_segments
/vaibhavlaturkar/Customer-Lifetime-Value-Project
/ChristosTheodoropoulos/CustomerSegments
/AaronRanAn/Peapod_Segmentation_and_LTV_Proj
/SLilit/Customer_segments
/saiabhishekgv/Customer_Segments
/Micah0808/Telco-Customer-Churn-Modelling
/rilutham/HAC-DM
/siddheshdhuri/athena
/kvn219/creating-customer-segments
/heyuping0331/Artsy-Market-Segmentation-Email-Campaign
/aumat/Wholesale-customers
/mehulparmar90/Consumer-Market-Segmentation-Clustering-using-RapidMiner
/Micah0808/Telco-Customer-Churn-Modelling-Micah-Cearns
/stefandulman/udacity_machinelearning_p3
/sjbaek/Mobile-Shop-data-analysis
/giladgressel/MLND_P3
/olalakul/Wholesale-multivariate-analysis
/leoltl/RFMmodel-with-Python
/icid10/New-Customers-Clustering-90-days-
/Bmax-Tech/K-Means-Clustering
/oxfordBlueDevil/Bike-Share-Analysis
/joshuaemayer/Machine-Learning-Clustering
/SinghSmriti/Design-and-Implementation-of-Association-Rule-Mining-System
/swapatGithub/Analysis-of-Digital-advertising-campaign-data
/Prakashvanapalli/RFMAnalysis
/mathriano/MACCRO_BANK
/skp104/Walmart-trip-type-classification
/kaflesudip/CDSSTWeb
/sagarBoraiah/SmartCart_Ecommerce
/hosstay/Grocery-Store-Queue
/maoting1223/pycon_sg_2016
/ds4ci/CustSegs
/justwjr/Marketing-Data-Science
/nicolasfguillaume/Marketing-Analytics-with-R
/franciscoroque/GroupProject
/ozlemmye/Customer-Segmentation
/shivang98/Customer-Segmentation
/deep1blue/Customer-Segmentation
/felix-last/DM-CustomerSegmentation
/jacobgreen1984/R_CustomerSegmentation
/vipul105/Loyalty-segmentation
/rustyoldrake/Strategic_Segmentation
/kantologist/customer_segments
/alifier/Customer_Segments
/cgkaczenski/Customer-Segments-Unsupervised-Learning
/jstephenj14/Debit-Card-Segmentation
/qiyangduan/cust_seg
/myankshah/SAS_Customer_Segmentation_using_ClusterAnalysis
/shanealynn/Kohonen-Self-organising-maps-in-R
/kaflesudip/SportsBettingPrediction
/rilutham/HAC-DM
/heyuping0331/Artsy-Market-Segmentation-Email-Campaign
/aumat/Wholesale-customers
/myankshah/SAS_Telecom_Churn_Capstone_Project
/albre116/STM_Lane_Selection
/olalakul/Wholesale-multivariate-analysis
/anurajaram/Marketing_fns
/Prakashvanapalli/RFMAnalysis
/sagarBoraiah/SmartCart
/WittyAgnomen/Customer
/smit5490/Customer-Segmentation
/praveenkumarperka/mywork
/ajinkyapathak/CustomerSegmentation
/prateek-kacker/CustomerSegmentation
/KimAlderman/CustomerSegmentation
/talenyc/CustomerSegmentation
/cl48/CustomerSegmentation
/saadk408/CustomerSegmentation
/rodrigowang/customerSegmentation
/deepansh27/CustomerSegmentation
/hemanthvakacharla/CustomerSegmentation
/cagz125/CustomerSegmentation
/anshul05/CustomerSegmentation
/pranavsachdev/CustomerSegmentation
/markditsworth/CustomerSegmentation
/Shivampanwar/Customer-Segmentation
/satitpongbundit/customer-segmentation
/Stuart-D-King/homer_segmentation
/ask-build/Customer-Segmentation
/smaoTHD/customer_segmentation
/hanshenry90/customer_segmentation
/danieltlo/Customer_Segmentation
/jalajthanaki/Customer_segmentation
/i-sultan/Customer-Segmentation
/adimali/customer_segmentation
/rudloffl/customer-segmentation
/georgenizharadze/Customer-segmentation
/wagner-rodeski/Customer_Segmentation
/andirs/customer_segmentation
/yidi-wang/customer_segmentation
/mowiena/customer_segmentation
/jpinzonc/customer_segmentation
/amitkbhatia/Customer_segmentation
/ShamailMulla/Customer-Segmentation
/aboalfod/Customer_Segmentation
/sudhiir43/Customer-Segmentation
/Raj-Yadav/customer_segmentation
/muhammedeltabakh/Customer-Segmentation
/akshar07/customer-segmentation
/0rland0/customer-segmentation
/mcassi17/customer_segmentation
/whitefusion/customer-segmentation
/Micah0808/Customer-Segmentation
/jainds/Customer-Segmentation
/Sachin-Ramesh10/Customer-Segmentation
/thomas-bamilo/customer_segmentation
/SKRohit/Customer-Segmentation
/jbarrett1615/Customer-Segmentation
/MarkPratley/Customer-Segmentation
/datanee/customer_segmentation
/beleidy/customer-segmentation
/tule2236/Customer_Segmentation
/soumyodipto/Customer-Segmentation
/vincefav/customer-segmentation
/samuelgorla/Customer-Segmentation
/manoj06/Customer-Segmentation
/mnaye/customer-segmentation
/tram305/Customer_segmentation
/antdro/customer_segmentation
/jimris/Customer-Segmentation
/jeremyjordan/customer-segmentation
/HeshamMeneisi/Customer-Segmentation
/VineethRaghav/Customer-Segmentation
/jwjhuang/customer_segmentation
/snehalnair/Customer-Segmentation
/kneehit/Customer_Segmentation
/Nafisur21/Customer_Segmentation
/TimusLetap/Customer-Segmentation
/liminalme/Customer-Segmentation-
/DionysiosZelios/RFM_analysis
/ronjacks/Customer-Segmentation
/talenyc/customer_segmentation
/ggallo/customer-segmentation
/longmoc/customer-segmentation
/malinthasa/customer_segmentation
/almond11/customer-segmentation
/ericchen168/customer-segmentation
/schumanzhang/Customer-segmentation
/martinbede/customer-segmentation
/sahilpanjwani/customer_segmentation
/jeremy-bertincourt/Customer_segmentation
/SvensBigData/customer_segmentation
/nikhilchintalapudi/Customer-Segmentation
/KendallScott/customer_segmentation
/devinkmoore/customer_segmentation
/EstopaGrabe/Customer-Segmentation
/TarkanHM/Customer-Segmentation
/fanta-mnix/customer-segmentation
/sik-flow/customer_segmentation
/ihsansatriawan/customer-segmentation
/yanyanmountainview/customer_segmentation
/pdarling1982/Customer-Segmentation
/jjuhn/Customer-Segmentation
/jz503/customers_segmentation
/fbarrientos/Marketing_Clusters
/koppepanna/ML3
/mramachandran/git-customer-segment
/Karan-Daiict/Codiecon
/derasor/ML_3_Unsupervised_Learning
/jpsarkar/Customer_Segment_using_Scala
/steffenhartleib/CustomerSegmentationFlashDeal
/railgan/CustomerSegmentationTest
/amadice/CustomerSegmentation_Amadeus
/luanjiang/CustomerSegmentationUsingGMM
/bnajafi/RFM_CustomerSegmentation
/thalessan/Tsn_CustomerSegmentation
/AfnanSh/CustomerSegmentationML
/pieromaggi/Datamining_segmentation
/yugoli/Customer-Churn-Segmentation
/VibhorSaxena/MLND-Customer-Segmentation
/ktraj1/customer_real-time_segmentation
/ryemitan/Customer-Segmentation-and-Churn
/dataScientist11/Customer-Segmentation-Machine-Learning-
/deepaksharma64/Kmeans-Clustering---Customer-Segmentation
/katariyj/UK-Bank-Customer-Segmentation-
/andrewghelms/Customer-Segmentation-Project
/QuantumRay/Customer-Segmentation-Report
/datatalesblog/Customer-Segmentation-SAS
/BoulderKiwi/Customer-Segmentation-Clustering
/girish-sukhwani/Wholesale-Customer-Segmentation
/gaoyanwang/Creating_Customer_Segmentation
/prateek1592/customer-segmentation-fault
/kamal94/MLND-Customer-Segmentation
/taochenshh/Customer-Segmentation-Unsupervised-Learning
/BabizAnalyst/Customer_Segmentation_R
/Kumaava/MLND_customer_segmentation
/Datamol/Customer-Segmentation-Churn-Analytics
/sedemmler/Machine-Learning-Customer-Segmentation
/Mogbo/Customer-Clustering-Segmentation-Challenge
/bburns/MLND-Customer-Segmentation
/olsenben/Customer-Segmentation-Using-Clustering
/venkat-othisamy/Airline-customer-segmentation
/andrew-duffle/customer_segmentation_limits
/lyuyunhuan/Customer_Segmentation_Udacity
/chenshi5826/Customer-Segmentation-using-Clustering
/snehalnair/Customer-Segmentation-RFM
/Lavender-Ding/Customer-Segmentation-for-Disney
/blackelectricity/Customer-Segmentation-Project
/liopic/scbcn17-customer-segmentation
/ranjittilekar/Customer-Segmentation-Unsupervised-Learning
/sushaanths/Customer_Segmentation_StoryLine
/SATHVIKRAJU/Customer_segmentation_clustering
/johnbwilliams/Customer-segmentation-cluster-analysis
/LeanderQ/ML3-Customer-Segmentation
/piyu-sh/customer-segmentation-component
/knightkro/customer-segmentation-Python
/satyamt13/Customer_Segmentation_Using_Clustering
/subnil/Customer-Loan-Data-Segmentation
/ljj-ml/Customer-Segmentation-Analysis
/tule2236/UnsupervisedML_Customer_Segmentation
/njoaquinacosta/Customer-Segmentation-RFM-Matrix
/kbansal004/Customer_Segmentation_Project
/vijayPagi/Customer_Segments
/rohanchikorde/Customer_segmentation-using-python
/PavlosSakoglou/Customer-Segmentation-Clustering-Problem
/pankhuriagarwal/Customer-Segmentation--using-GMM-
/LRParser/unsupervised_customer_segmentation
/gaure/ML_Customer_Segmentation
/Gurupradeep/Customer-Segmentation-using-datamining
/anpjai/Customer-Segmentation-Churn-Analysis