-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
bank-additional.csv
We can't make this file beautiful and searchable because it's too large.
4120 lines (4120 loc) · 566 KB
/
bank-additional.csv
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
"age";"job";"marital";"education";"default";"housing";"loan";"contact";"month";"day_of_week";"duration";"campaign";"pdays";"previous";"poutcome";"emp.var.rate";"cons.price.idx";"cons.conf.idx";"euribor3m";"nr.employed";"y"
30;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"fri";487;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no"
39;"services";"single";"high.school";"no";"no";"no";"telephone";"may";"fri";346;4;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
25;"services";"married";"high.school";"no";"yes";"no";"telephone";"jun";"wed";227;1;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no"
38;"services";"married";"basic.9y";"no";"unknown";"unknown";"telephone";"jun";"fri";17;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
47;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"mon";58;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no"
32;"services";"single";"university.degree";"no";"no";"no";"cellular";"sep";"thu";128;3;999;2;"failure";-1.1;94.199;-37.5;0.884;4963.6;"no"
32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"sep";"mon";290;4;999;0;"nonexistent";-1.1;94.199;-37.5;0.879;4963.6;"no"
41;"entrepreneur";"married";"university.degree";"unknown";"yes";"no";"cellular";"nov";"mon";44;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no"
31;"services";"divorced";"professional.course";"no";"no";"no";"cellular";"nov";"tue";68;1;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no"
35;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"thu";170;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
25;"services";"single";"basic.6y";"unknown";"yes";"no";"cellular";"jul";"thu";301;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no"
36;"self-employed";"single";"basic.4y";"no";"no";"no";"cellular";"jul";"thu";148;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no"
36;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";97;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
47;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"jun";"thu";211;2;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no"
29;"admin.";"single";"high.school";"no";"no";"no";"cellular";"may";"fri";553;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no"
27;"services";"single";"university.degree";"no";"no";"no";"cellular";"jul";"wed";698;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
44;"admin.";"divorced";"university.degree";"no";"no";"no";"cellular";"jul";"wed";191;6;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no"
46;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"jul";"mon";59;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
45;"entrepreneur";"married";"university.degree";"unknown";"yes";"yes";"cellular";"aug";"mon";38;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
50;"blue-collar";"married";"basic.4y";"no";"no";"yes";"cellular";"jul";"tue";849;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"yes"
55;"services";"married";"basic.6y";"unknown";"yes";"no";"cellular";"jul";"tue";326;6;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
39;"technician";"divorced";"high.school";"no";"no";"no";"cellular";"mar";"mon";222;1;12;2;"success";-1.8;93.369;-34.8;0.639;5008.7;"yes"
29;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";626;3;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no"
40;"management";"married";"high.school";"no";"no";"yes";"cellular";"aug";"wed";119;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
44;"technician";"married";"professional.course";"unknown";"yes";"no";"telephone";"may";"fri";388;7;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no"
38;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";479;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"yes"
36;"technician";"divorced";"professional.course";"no";"no";"no";"telephone";"may";"wed";446;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
28;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"cellular";"may";"mon";68;2;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no"
47;"admin.";"single";"unknown";"unknown";"no";"no";"telephone";"may";"thu";127;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
34;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"tue";109;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
38;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"mar";"tue";113;1;999;1;"failure";-1.8;92.843;-50;1.687;5099.1;"no"
33;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"jun";"mon";393;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
51;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jun";"fri";151;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"no"
30;"blue-collar";"single";"basic.4y";"unknown";"yes";"no";"telephone";"jun";"tue";256;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
48;"technician";"married";"university.degree";"no";"no";"no";"cellular";"aug";"thu";42;7;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no"
28;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"jun";"wed";525;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
36;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"wed";57;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
46;"management";"divorced";"high.school";"no";"no";"no";"cellular";"nov";"wed";499;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
31;"technician";"single";"unknown";"no";"yes";"no";"cellular";"may";"wed";84;1;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no"
20;"student";"single";"unknown";"no";"no";"no";"cellular";"oct";"mon";137;3;999;3;"failure";-1.1;94.601;-49.5;0.977;4963.6;"no"
35;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"may";"tue";31;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no"
38;"blue-collar";"married";"basic.9y";"unknown";"unknown";"unknown";"telephone";"jun";"fri";430;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no"
76;"retired";"married";"university.degree";"no";"no";"no";"cellular";"aug";"thu";126;1;999;1;"failure";-1.7;94.027;-38.3;0.899;4991.6;"no"
45;"entrepreneur";"divorced";"professional.course";"no";"yes";"no";"cellular";"jul";"tue";211;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
32;"housemaid";"married";"basic.4y";"no";"yes";"yes";"cellular";"may";"fri";340;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no"
39;"management";"single";"university.degree";"unknown";"no";"no";"cellular";"may";"thu";412;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
32;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"nov";"thu";132;1;999;0;"nonexistent";-0.1;93.2;-42;4.592;5195.8;"no"
29;"admin.";"single";"basic.9y";"no";"no";"no";"cellular";"may";"mon";79;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
44;"services";"married";"professional.course";"no";"no";"no";"cellular";"aug";"mon";341;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no"
32;"services";"married";"high.school";"no";"no";"yes";"cellular";"jul";"fri";157;3;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no"
56;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"jun";"wed";252;1;999;2;"failure";-2.9;92.963;-40.8;1.26;5076.2;"no"
33;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";263;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
39;"management";"married";"high.school";"no";"no";"no";"cellular";"aug";"fri";215;3;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
24;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"sep";"tue";89;2;3;1;"success";-3.4;92.379;-29.8;0.77;5017.5;"yes"
33;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"thu";143;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
58;"entrepreneur";"divorced";"university.degree";"no";"no";"no";"telephone";"jun";"thu";40;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no"
29;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";10;27;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
31;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";113;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
27;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";191;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
60;"admin.";"divorced";"professional.course";"no";"yes";"no";"cellular";"sep";"wed";481;1;999;1;"failure";-1.1;94.199;-37.5;0.886;4963.6;"yes"
55;"entrepreneur";"married";"professional.course";"no";"yes";"yes";"cellular";"oct";"mon";233;1;999;2;"failure";-3.4;92.431;-26.9;0.739;5017.5;"no"
37;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"wed";204;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
52;"admin.";"married";"unknown";"no";"yes";"no";"telephone";"apr";"wed";403;1;6;1;"success";-1.8;93.749;-34.6;0.654;5008.7;"yes"
46;"services";"married";"high.school";"no";"yes";"no";"cellular";"apr";"mon";180;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
42;"blue-collar";"divorced";"basic.6y";"no";"yes";"no";"cellular";"may";"wed";16;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"mon";447;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
49;"technician";"divorced";"unknown";"no";"yes";"yes";"cellular";"oct";"thu";81;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.754;5017.5;"no"
29;"services";"divorced";"high.school";"no";"no";"yes";"telephone";"jun";"mon";361;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
32;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"nov";"mon";1091;2;5;1;"success";-0.1;93.2;-42;4.191;5195.8;"yes"
37;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"may";"fri";395;1;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no"
39;"technician";"single";"professional.course";"unknown";"no";"no";"telephone";"jun";"mon";432;4;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"yes"
51;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"jul";"mon";596;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes"
28;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"may";"tue";59;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no"
34;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"wed";77;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
31;"technician";"single";"high.school";"no";"yes";"yes";"cellular";"aug";"tue";768;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"yes"
31;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";96;5;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no"
31;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"wed";357;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
38;"self-employed";"single";"university.degree";"no";"no";"no";"telephone";"may";"thu";459;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
33;"unemployed";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"fri";11;6;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
32;"technician";"single";"university.degree";"no";"no";"no";"cellular";"aug";"tue";264;12;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
54;"technician";"married";"professional.course";"unknown";"yes";"no";"cellular";"apr";"mon";698;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
41;"admin.";"divorced";"high.school";"no";"yes";"no";"telephone";"jun";"tue";204;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
59;"services";"married";"basic.4y";"unknown";"no";"no";"cellular";"aug";"thu";93;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
57;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"thu";374;1;2;1;"success";-1.8;93.075;-47.1;1.365;5099.1;"no"
38;"entrepreneur";"divorced";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";252;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
46;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"tue";158;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
37;"unemployed";"single";"university.degree";"no";"yes";"yes";"cellular";"nov";"tue";95;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
47;"services";"single";"basic.9y";"no";"unknown";"unknown";"telephone";"jun";"thu";835;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"yes"
45;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";505;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"yes"
36;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jul";"wed";16;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
40;"unemployed";"single";"high.school";"no";"yes";"no";"cellular";"jul";"mon";300;5;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
38;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"nov";"tue";180;2;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no"
44;"blue-collar";"married";"high.school";"unknown";"no";"no";"telephone";"jun";"tue";390;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
25;"self-employed";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";274;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
30;"blue-collar";"single";"basic.6y";"no";"yes";"no";"telephone";"jul";"tue";135;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
43;"management";"married";"professional.course";"no";"no";"no";"cellular";"nov";"tue";257;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
58;"retired";"married";"basic.6y";"unknown";"no";"no";"telephone";"may";"mon";268;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
31;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"wed";157;6;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
53;"management";"married";"university.degree";"no";"no";"no";"cellular";"jul";"tue";477;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
52;"admin.";"married";"unknown";"no";"no";"no";"cellular";"aug";"tue";91;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
37;"management";"married";"university.degree";"unknown";"no";"yes";"cellular";"apr";"fri";76;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no"
58;"admin.";"married";"high.school";"unknown";"yes";"no";"cellular";"jul";"tue";103;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
37;"services";"married";"high.school";"no";"yes";"yes";"cellular";"may";"thu";436;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no"
38;"admin.";"single";"unknown";"no";"yes";"no";"cellular";"may";"fri";191;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no"
33;"services";"single";"basic.9y";"no";"yes";"no";"cellular";"apr";"thu";483;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no"
45;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"may";"fri";250;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no"
44;"entrepreneur";"married";"professional.course";"no";"no";"no";"telephone";"may";"mon";259;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
38;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jul";"thu";389;2;999;0;"nonexistent";1.4;93.918;-42.7;4.966;5228.1;"no"
34;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jun";"tue";7;1;999;0;"nonexistent";-1.7;94.055;-39.8;0.702;4991.6;"no"
47;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";123;1;999;0;"nonexistent";-2.9;92.469;-33.6;1.029;5076.2;"no"
59;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"jul";"wed";92;1;999;0;"nonexistent";-2.9;92.469;-33.6;1.085;5076.2;"no"
51;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"cellular";"aug";"thu";297;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
31;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"wed";406;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
56;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"nov";"wed";104;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no"
39;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"jun";"mon";135;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
41;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";854;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"yes"
41;"management";"divorced";"basic.6y";"no";"yes";"no";"cellular";"nov";"thu";147;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
53;"services";"married";"high.school";"unknown";"no";"no";"telephone";"may";"thu";203;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
35;"blue-collar";"married";"high.school";"no";"no";"yes";"cellular";"jul";"mon";149;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
58;"retired";"married";"basic.9y";"no";"no";"yes";"cellular";"may";"wed";144;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
25;"self-employed";"married";"professional.course";"no";"yes";"no";"telephone";"jun";"wed";394;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
35;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";523;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no"
28;"services";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";73;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
55;"blue-collar";"married";"professional.course";"no";"yes";"yes";"cellular";"may";"fri";197;3;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no"
54;"entrepreneur";"married";"basic.4y";"unknown";"no";"yes";"telephone";"may";"thu";108;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
45;"technician";"divorced";"basic.9y";"unknown";"no";"no";"cellular";"jul";"wed";80;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
32;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"thu";114;1;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no"
50;"admin.";"married";"basic.9y";"unknown";"yes";"no";"cellular";"aug";"thu";122;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
75;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"apr";"tue";109;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"yes"
33;"self-employed";"divorced";"unknown";"no";"no";"no";"telephone";"may";"wed";1161;4;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
29;"management";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"wed";181;2;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no"
45;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"thu";239;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
38;"admin.";"divorced";"university.degree";"no";"no";"no";"cellular";"apr";"mon";360;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.392;5099.1;"yes"
24;"services";"single";"professional.course";"no";"yes";"no";"telephone";"may";"mon";314;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
41;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"mon";984;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
58;"retired";"divorced";"high.school";"no";"yes";"no";"cellular";"jun";"tue";663;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"yes"
34;"admin.";"married";"university.degree";"no";"no";"yes";"telephone";"may";"wed";157;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
34;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"mon";141;2;999;0;"nonexistent";-1.1;94.767;-50.8;1.05;4963.6;"no"
37;"technician";"divorced";"professional.course";"no";"no";"no";"telephone";"may";"wed";374;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
53;"blue-collar";"divorced";"basic.4y";"no";"no";"no";"telephone";"jun";"wed";706;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"yes"
54;"technician";"divorced";"professional.course";"no";"yes";"yes";"cellular";"jul";"tue";797;14;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
32;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"nov";"tue";250;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
42;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"fri";311;6;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
28;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"aug";"thu";63;2;3;1;"success";-2.9;92.201;-31.4;0.851;5076.2;"yes"
33;"services";"single";"high.school";"no";"yes";"no";"telephone";"may";"fri";111;1;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no"
41;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"mon";148;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
31;"services";"married";"high.school";"no";"no";"yes";"cellular";"nov";"thu";49;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
40;"technician";"married";"basic.9y";"unknown";"no";"yes";"telephone";"may";"thu";171;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
53;"unknown";"married";"basic.9y";"no";"no";"yes";"cellular";"nov";"wed";242;1;999;1;"failure";-3.4;92.649;-30.1;0.716;5017.5;"no"
40;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";257;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
82;"housemaid";"married";"basic.4y";"no";"no";"no";"telephone";"sep";"tue";279;3;3;2;"success";-1.1;94.199;-37.5;0.877;4963.6;"yes"
28;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"jul";"mon";113;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
30;"admin.";"married";"high.school";"unknown";"yes";"no";"cellular";"nov";"wed";246;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
31;"unemployed";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"tue";309;1;6;3;"success";-1.7;94.215;-40.3;0.835;4991.6;"yes"
32;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";168;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
54;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"tue";153;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
31;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"wed";152;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
50;"services";"married";"unknown";"no";"yes";"no";"cellular";"aug";"thu";90;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
47;"technician";"single";"unknown";"no";"no";"no";"cellular";"jul";"tue";117;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
31;"admin.";"single";"high.school";"no";"yes";"yes";"cellular";"may";"wed";149;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
32;"unemployed";"married";"high.school";"no";"yes";"no";"cellular";"nov";"thu";640;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
46;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"nov";"mon";199;2;999;2;"failure";-1.1;94.767;-50.8;1.048;4963.6;"no"
47;"admin.";"single";"high.school";"no";"no";"no";"cellular";"may";"mon";1114;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
32;"admin.";"single";"high.school";"no";"no";"no";"cellular";"nov";"mon";74;2;999;2;"failure";-1.1;94.767;-50.8;1.048;4963.6;"no"
52;"services";"divorced";"high.school";"unknown";"no";"no";"cellular";"nov";"mon";190;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no"
45;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"oct";"fri";738;3;6;1;"success";-1.1;94.601;-49.5;1.029;4963.6;"yes"
32;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";374;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no"
71;"blue-collar";"divorced";"basic.4y";"unknown";"no";"no";"cellular";"aug";"thu";224;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.904;4991.6;"no"
49;"services";"married";"high.school";"no";"yes";"no";"telephone";"may";"fri";344;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
46;"admin.";"married";"high.school";"no";"yes";"yes";"telephone";"jun";"wed";148;10;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
46;"blue-collar";"married";"professional.course";"no";"no";"no";"cellular";"nov";"fri";383;1;999;0;"nonexistent";-1.1;94.767;-50.8;1.028;4963.6;"no"
38;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";35;6;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
57;"services";"married";"professional.course";"unknown";"no";"no";"cellular";"aug";"mon";153;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
41;"services";"single";"high.school";"unknown";"unknown";"unknown";"cellular";"may";"mon";772;2;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no"
44;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"fri";124;3;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no"
47;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";345;7;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
40;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"telephone";"may";"wed";951;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
57;"retired";"single";"professional.course";"no";"yes";"no";"telephone";"may";"mon";188;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
27;"admin.";"single";"unknown";"no";"no";"no";"cellular";"mar";"tue";128;1;3;1;"success";-1.8;93.369;-34.8;0.637;5008.7;"yes"
52;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"fri";809;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"yes"
34;"management";"married";"university.degree";"no";"yes";"yes";"telephone";"jun";"wed";192;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no"
42;"entrepreneur";"married";"university.degree";"no";"yes";"no";"telephone";"may";"tue";154;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
51;"technician";"married";"unknown";"no";"yes";"no";"telephone";"jun";"fri";17;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
45;"management";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"fri";100;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
56;"retired";"married";"high.school";"no";"no";"no";"cellular";"may";"mon";317;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no"
41;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"thu";93;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
44;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"aug";"fri";111;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
50;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"mon";293;3;3;1;"success";-1.8;92.893;-46.2;1.354;5099.1;"yes"
54;"self-employed";"married";"high.school";"no";"no";"no";"cellular";"aug";"tue";119;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
51;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"aug";"fri";393;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
30;"blue-collar";"single";"basic.9y";"no";"no";"no";"cellular";"nov";"wed";30;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
42;"housemaid";"married";"basic.4y";"unknown";"yes";"no";"telephone";"jun";"fri";38;8;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
41;"technician";"married";"professional.course";"unknown";"yes";"no";"telephone";"jun";"mon";442;11;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
47;"services";"single";"basic.9y";"no";"no";"no";"cellular";"nov";"tue";187;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
35;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"apr";"fri";113;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no"
58;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"nov";"tue";64;1;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no"
50;"blue-collar";"divorced";"high.school";"no";"yes";"yes";"cellular";"jul";"mon";629;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"yes"
41;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"tue";92;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
38;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"may";"wed";147;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
32;"student";"single";"university.degree";"no";"no";"no";"cellular";"nov";"thu";151;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
21;"student";"single";"high.school";"no";"no";"no";"cellular";"aug";"tue";259;1;999;1;"failure";-2.9;92.201;-31.4;0.884;5076.2;"no"
46;"admin.";"divorced";"basic.9y";"unknown";"no";"no";"telephone";"may";"wed";423;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
42;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";888;3;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no"
55;"services";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"wed";76;13;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
29;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"nov";"mon";207;1;6;1;"success";-1.1;94.767;-50.8;1.05;4963.6;"no"
30;"blue-collar";"single";"basic.6y";"unknown";"yes";"no";"telephone";"jun";"wed";100;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
53;"management";"married";"basic.4y";"no";"yes";"no";"cellular";"nov";"wed";63;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
35;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";265;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
46;"services";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";273;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
30;"blue-collar";"married";"unknown";"no";"no";"no";"telephone";"may";"wed";85;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
43;"entrepreneur";"married";"university.degree";"unknown";"yes";"no";"cellular";"jul";"tue";261;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
42;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"jul";"mon";136;4;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
32;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"tue";711;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
41;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"fri";88;1;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no"
28;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"may";"tue";72;3;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no"
24;"services";"single";"university.degree";"no";"no";"no";"cellular";"jul";"thu";113;6;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
43;"management";"married";"university.degree";"unknown";"yes";"yes";"cellular";"apr";"fri";307;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";39;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no"
55;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"cellular";"nov";"tue";63;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
51;"retired";"married";"basic.9y";"unknown";"no";"no";"cellular";"jul";"fri";64;1;999;0;"nonexistent";1.4;93.918;-42.7;4.959;5228.1;"no"
22;"student";"single";"high.school";"no";"no";"yes";"cellular";"jul";"fri";154;2;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no"
32;"entrepreneur";"single";"university.degree";"no";"no";"yes";"cellular";"nov";"thu";126;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
43;"admin.";"married";"professional.course";"unknown";"no";"no";"cellular";"jul";"thu";127;3;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no"
39;"management";"married";"basic.6y";"unknown";"no";"no";"telephone";"jun";"mon";156;5;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
52;"blue-collar";"divorced";"unknown";"no";"no";"no";"cellular";"jul";"tue";111;8;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
38;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"mon";202;3;999;1;"failure";-1.8;92.893;-46.2;1.244;5099.1;"no"
59;"retired";"married";"basic.4y";"no";"no";"no";"telephone";"apr";"tue";353;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.453;5099.1;"no"
31;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"wed";159;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
76;"retired";"single";"basic.4y";"no";"no";"no";"cellular";"nov";"mon";347;4;6;1;"success";-3.4;92.649;-30.1;0.715;5017.5;"yes"
44;"unknown";"single";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"mon";76;3;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no"
30;"blue-collar";"married";"unknown";"no";"no";"no";"telephone";"may";"fri";85;2;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no"
32;"services";"married";"high.school";"unknown";"no";"no";"telephone";"jun";"fri";174;1;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
41;"unemployed";"married";"unknown";"no";"no";"no";"telephone";"jun";"fri";280;3;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no"
33;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";686;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"yes"
59;"retired";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"fri";94;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
28;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";225;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
33;"blue-collar";"single";"basic.6y";"no";"yes";"no";"cellular";"may";"fri";474;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no"
53;"services";"married";"high.school";"unknown";"yes";"no";"cellular";"aug";"thu";76;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
41;"services";"married";"high.school";"no";"no";"no";"cellular";"mar";"wed";377;6;999;0;"nonexistent";-1.8;92.843;-50;1.778;5099.1;"yes"
55;"unknown";"married";"basic.4y";"no";"no";"yes";"cellular";"jul";"thu";185;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
45;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"tue";121;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
35;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"thu";126;4;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no"
31;"services";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"mon";160;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
53;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";313;4;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
35;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"thu";141;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
45;"blue-collar";"divorced";"basic.6y";"unknown";"yes";"no";"cellular";"may";"thu";219;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
34;"housemaid";"single";"university.degree";"no";"no";"no";"telephone";"jun";"thu";267;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
42;"admin.";"married";"basic.9y";"no";"no";"no";"telephone";"apr";"mon";406;3;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no"
36;"self-employed";"married";"basic.9y";"no";"yes";"yes";"cellular";"nov";"thu";151;3;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
44;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";228;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
50;"admin.";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";73;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
36;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"sep";"fri";355;1;999;0;"nonexistent";-3.4;92.379;-29.8;0.773;5017.5;"no"
27;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jul";"thu";102;9;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
40;"management";"married";"unknown";"no";"no";"no";"telephone";"may";"fri";97;3;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
25;"technician";"single";"university.degree";"no";"yes";"yes";"telephone";"jun";"mon";35;6;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no"
29;"management";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"tue";116;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
44;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"wed";83;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
57;"blue-collar";"married";"unknown";"unknown";"yes";"no";"telephone";"may";"tue";473;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
30;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"wed";605;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
37;"self-employed";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";585;2;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no"
57;"technician";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"tue";94;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
32;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"thu";255;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"yes"
54;"admin.";"married";"professional.course";"no";"no";"no";"cellular";"nov";"tue";1868;2;10;1;"success";-1.1;94.767;-50.8;1.035;4963.6;"yes"
58;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"aug";"mon";846;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"yes"
29;"admin.";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"tue";158;5;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
60;"services";"married";"high.school";"unknown";"no";"no";"cellular";"aug";"tue";73;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
27;"unemployed";"single";"university.degree";"no";"no";"no";"telephone";"jun";"wed";404;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
30;"unemployed";"married";"high.school";"no";"yes";"no";"cellular";"jul";"tue";383;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
42;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"may";"wed";51;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
48;"housemaid";"married";"high.school";"no";"no";"no";"telephone";"jun";"tue";87;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
35;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";167;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no"
46;"blue-collar";"married";"basic.6y";"unknown";"yes";"yes";"telephone";"may";"mon";440;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
57;"retired";"unknown";"basic.4y";"no";"no";"no";"telephone";"may";"tue";673;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
30;"services";"married";"high.school";"no";"no";"no";"telephone";"jun";"mon";151;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
28;"technician";"single";"high.school";"no";"yes";"yes";"cellular";"apr";"thu";48;4;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no"
34;"services";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"tue";309;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
42;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"thu";236;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no"
30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";288;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
27;"student";"single";"basic.9y";"no";"yes";"no";"cellular";"aug";"wed";111;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.9;4991.6;"no"
23;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";87;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
43;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"tue";193;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
59;"management";"married";"basic.4y";"unknown";"yes";"yes";"telephone";"may";"tue";318;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
31;"self-employed";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";209;1;999;2;"failure";-1.7;94.027;-38.3;0.898;4991.6;"no"
43;"self-employed";"married";"basic.9y";"no";"no";"no";"telephone";"may";"wed";173;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
52;"technician";"married";"high.school";"no";"yes";"no";"telephone";"may";"mon";503;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
26;"housemaid";"single";"high.school";"unknown";"yes";"yes";"telephone";"jul";"thu";127;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
24;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"telephone";"may";"fri";101;6;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
35;"blue-collar";"single";"basic.6y";"no";"no";"no";"cellular";"nov";"thu";370;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no"
59;"technician";"married";"professional.course";"no";"no";"no";"cellular";"jun";"thu";1207;4;999;1;"failure";-1.7;94.055;-39.8;0.742;4991.6;"yes"
28;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"may";"thu";262;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
37;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"may";"wed";211;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
46;"admin.";"married";"professional.course";"no";"no";"no";"cellular";"apr";"fri";609;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no"
26;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";806;3;6;2;"success";-1.7;94.215;-40.3;0.861;4991.6;"yes"
40;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";77;6;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
56;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"tue";335;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
40;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"tue";459;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no"
29;"admin.";"single";"university.degree";"no";"yes";"yes";"telephone";"may";"wed";266;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
28;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";225;1;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no"
48;"technician";"single";"unknown";"unknown";"no";"no";"telephone";"may";"thu";257;7;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
28;"unemployed";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";434;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no"
33;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"thu";191;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
56;"entrepreneur";"married";"university.degree";"no";"yes";"yes";"telephone";"jun";"thu";82;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
57;"retired";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"tue";388;4;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"yes"
24;"admin.";"single";"high.school";"unknown";"yes";"no";"telephone";"jul";"thu";15;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no"
39;"self-employed";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";17;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
40;"blue-collar";"married";"unknown";"no";"yes";"yes";"telephone";"may";"mon";155;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
54;"blue-collar";"divorced";"unknown";"unknown";"yes";"no";"telephone";"jun";"thu";339;3;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no"
25;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"jun";"wed";188;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
36;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"cellular";"may";"wed";951;3;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"yes"
48;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";288;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";206;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
48;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"jul";"fri";154;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
30;"technician";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"wed";72;3;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
41;"admin.";"divorced";"high.school";"no";"no";"no";"telephone";"may";"tue";293;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
54;"retired";"divorced";"basic.4y";"unknown";"yes";"no";"cellular";"jul";"tue";141;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
29;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"mar";"mon";215;1;999;0;"nonexistent";-1.8;93.369;-34.8;0.639;5008.7;"yes"
28;"blue-collar";"single";"high.school";"no";"yes";"no";"telephone";"jun";"mon";102;2;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
30;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"tue";178;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
54;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";461;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
33;"entrepreneur";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"tue";82;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
38;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"wed";204;1;11;1;"success";-1.8;92.893;-46.2;1.281;5099.1;"no"
46;"housemaid";"divorced";"basic.6y";"no";"yes";"no";"telephone";"jun";"tue";143;8;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
38;"admin.";"divorced";"university.degree";"no";"no";"no";"telephone";"jun";"fri";50;3;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
38;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"thu";81;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no"
33;"blue-collar";"married";"high.school";"no";"yes";"no";"telephone";"may";"wed";233;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
25;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"fri";56;1;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no"
29;"admin.";"single";"university.degree";"unknown";"yes";"no";"cellular";"may";"fri";104;10;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no"
60;"technician";"married";"professional.course";"unknown";"no";"no";"telephone";"jul";"tue";55;15;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
57;"services";"married";"high.school";"no";"yes";"no";"cellular";"may";"mon";126;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no"
36;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"wed";142;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
54;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"thu";9;5;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no"
25;"self-employed";"single";"university.degree";"no";"no";"no";"telephone";"may";"tue";247;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
41;"entrepreneur";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";130;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
54;"management";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"tue";336;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
39;"blue-collar";"divorced";"basic.6y";"unknown";"no";"no";"cellular";"may";"wed";101;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
55;"entrepreneur";"divorced";"university.degree";"unknown";"no";"no";"cellular";"may";"fri";56;1;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no"
40;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"mon";160;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
43;"unemployed";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"tue";424;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
81;"retired";"married";"basic.4y";"no";"no";"no";"cellular";"may";"mon";617;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"yes"
43;"technician";"divorced";"professional.course";"no";"yes";"no";"cellular";"may";"mon";143;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.264;5099.1;"no"
34;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jun";"wed";238;1;6;2;"success";-1.7;94.055;-39.8;0.704;4991.6;"yes"
42;"technician";"married";"high.school";"no";"yes";"no";"cellular";"aug";"tue";188;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
30;"services";"married";"basic.6y";"no";"no";"no";"cellular";"nov";"tue";154;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
24;"services";"single";"basic.9y";"unknown";"no";"yes";"telephone";"jun";"mon";222;2;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
51;"unknown";"married";"unknown";"unknown";"yes";"no";"cellular";"aug";"fri";10;5;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
42;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"may";"tue";632;5;10;1;"success";-1.8;92.893;-46.2;1.344;5099.1;"no"
51;"self-employed";"married";"basic.4y";"unknown";"no";"yes";"telephone";"may";"wed";91;7;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
38;"blue-collar";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"mon";90;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
45;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"cellular";"aug";"mon";187;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
51;"admin.";"divorced";"university.degree";"unknown";"no";"no";"telephone";"aug";"fri";86;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
44;"admin.";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"fri";165;6;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
52;"technician";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"fri";102;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no"
49;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"mon";212;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
49;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";57;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
52;"unknown";"married";"basic.6y";"no";"no";"no";"telephone";"may";"fri";54;4;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no"
32;"entrepreneur";"married";"university.degree";"no";"no";"no";"cellular";"nov";"thu";73;4;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
27;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"thu";184;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
44;"admin.";"divorced";"high.school";"no";"yes";"no";"cellular";"may";"tue";173;8;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no"
33;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"wed";6;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
30;"services";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"tue";70;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
32;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";96;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no"
36;"blue-collar";"married";"professional.course";"unknown";"yes";"yes";"telephone";"jun";"tue";102;3;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
49;"unemployed";"married";"high.school";"no";"yes";"no";"cellular";"jul";"wed";98;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
48;"services";"single";"basic.4y";"unknown";"yes";"yes";"cellular";"may";"thu";106;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no"
48;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"fri";336;8;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"yes"
42;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"may";"wed";456;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
28;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"may";"wed";293;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
52;"management";"married";"university.degree";"unknown";"yes";"yes";"cellular";"aug";"thu";118;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
23;"management";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"tue";314;2;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
36;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"wed";167;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
43;"admin.";"divorced";"university.degree";"unknown";"no";"no";"cellular";"aug";"tue";111;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
31;"services";"divorced";"high.school";"unknown";"yes";"no";"cellular";"may";"thu";236;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
49;"unemployed";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"wed";155;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
36;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";80;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
47;"management";"divorced";"basic.4y";"no";"no";"no";"telephone";"may";"fri";241;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
31;"technician";"single";"professional.course";"no";"unknown";"unknown";"cellular";"aug";"mon";202;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
46;"entrepreneur";"married";"professional.course";"unknown";"no";"no";"telephone";"jun";"mon";88;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
54;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"aug";"tue";439;3;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
35;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"may";"thu";322;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no"
37;"admin.";"divorced";"high.school";"no";"no";"no";"telephone";"may";"thu";51;10;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
44;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"mon";147;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
30;"unemployed";"married";"high.school";"no";"no";"no";"cellular";"may";"mon";417;1;3;1;"success";-1.8;92.893;-46.2;1.354;5099.1;"yes"
33;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"tue";498;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
57;"services";"divorced";"unknown";"no";"no";"no";"cellular";"may";"fri";405;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no"
39;"admin.";"single";"unknown";"no";"no";"yes";"telephone";"may";"fri";219;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
43;"unemployed";"married";"basic.4y";"no";"no";"no";"cellular";"may";"wed";117;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
32;"services";"married";"high.school";"no";"unknown";"unknown";"telephone";"may";"mon";72;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
29;"technician";"single";"university.degree";"no";"no";"no";"cellular";"may";"mon";68;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no"
35;"admin.";"divorced";"high.school";"no";"yes";"yes";"telephone";"may";"mon";82;2;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no"
47;"admin.";"married";"high.school";"no";"no";"no";"cellular";"may";"wed";99;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no"
37;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";252;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
35;"technician";"single";"university.degree";"unknown";"no";"no";"cellular";"apr";"mon";712;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
37;"self-employed";"married";"basic.9y";"no";"yes";"yes";"cellular";"jul";"thu";171;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
36;"technician";"married";"high.school";"unknown";"yes";"no";"cellular";"aug";"wed";112;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
50;"admin.";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"thu";84;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
30;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";135;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
33;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"tue";132;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
37;"admin.";"single";"high.school";"no";"no";"yes";"cellular";"jul";"tue";223;6;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
45;"self-employed";"divorced";"university.degree";"no";"no";"yes";"cellular";"may";"fri";133;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no"
30;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"nov";"fri";258;2;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no"
51;"management";"divorced";"university.degree";"no";"no";"no";"cellular";"may";"wed";345;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
49;"self-employed";"single";"basic.9y";"no";"no";"no";"telephone";"may";"mon";58;10;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
31;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";958;5;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no"
40;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";250;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
41;"technician";"married";"professional.course";"no";"no";"yes";"cellular";"aug";"thu";898;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
58;"retired";"married";"basic.4y";"no";"yes";"no";"cellular";"apr";"thu";185;1;2;1;"success";-1.8;93.075;-47.1;1.365;5099.1;"no"
49;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"thu";282;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
39;"technician";"divorced";"professional.course";"no";"yes";"no";"telephone";"may";"fri";135;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
48;"technician";"married";"basic.6y";"no";"no";"yes";"telephone";"may";"tue";175;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
50;"entrepreneur";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"thu";235;2;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no"
54;"blue-collar";"married";"unknown";"no";"yes";"no";"cellular";"aug";"wed";99;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
38;"blue-collar";"married";"unknown";"unknown";"no";"yes";"telephone";"may";"wed";181;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
51;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"tue";132;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
36;"admin.";"single";"university.degree";"unknown";"no";"no";"telephone";"may";"wed";117;4;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
35;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"nov";"tue";372;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
44;"admin.";"married";"high.school";"no";"no";"no";"cellular";"aug";"mon";126;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
43;"blue-collar";"married";"basic.4y";"no";"no";"yes";"cellular";"may";"wed";69;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no"
30;"technician";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";183;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
41;"technician";"divorced";"basic.4y";"no";"yes";"no";"telephone";"may";"tue";270;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
27;"management";"single";"university.degree";"no";"yes";"no";"telephone";"may";"tue";134;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
45;"blue-collar";"married";"high.school";"no";"yes";"yes";"cellular";"nov";"mon";449;2;5;3;"success";-1.1;94.767;-50.8;1.05;4963.6;"yes"
26;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"may";"fri";160;3;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no"
36;"technician";"married";"professional.course";"no";"unknown";"unknown";"telephone";"may";"tue";155;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
24;"student";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";115;1;999;1;"failure";-2.9;92.469;-33.6;1.029;5076.2;"no"
46;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";205;6;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
61;"blue-collar";"married";"basic.6y";"no";"yes";"yes";"cellular";"may";"fri";403;1;3;2;"success";-1.8;93.876;-40;0.695;5008.7;"yes"
50;"admin.";"divorced";"basic.9y";"no";"no";"no";"telephone";"may";"fri";145;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
49;"technician";"married";"professional.course";"unknown";"yes";"no";"telephone";"may";"tue";82;9;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
55;"admin.";"married";"basic.4y";"no";"yes";"no";"cellular";"apr";"fri";548;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no"
54;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"aug";"thu";109;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
40;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";207;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
58;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"cellular";"may";"wed";173;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
58;"entrepreneur";"married";"university.degree";"no";"no";"no";"telephone";"jul";"wed";175;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
36;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";379;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";105;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
45;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";544;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no"
40;"management";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";401;1;999;1;"failure";-0.1;93.2;-42;4.021;5195.8;"no"
42;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"jul";"mon";84;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
43;"blue-collar";"married";"unknown";"no";"yes";"no";"cellular";"may";"tue";128;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no"
24;"student";"single";"high.school";"unknown";"no";"no";"cellular";"jul";"tue";86;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
49;"management";"married";"university.degree";"no";"no";"no";"cellular";"jul";"mon";549;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
55;"unemployed";"married";"basic.4y";"no";"yes";"no";"telephone";"sep";"tue";6;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.879;4963.6;"no"
49;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"aug";"fri";183;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
48;"blue-collar";"married";"basic.4y";"no";"no";"yes";"telephone";"jun";"tue";291;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
49;"admin.";"married";"high.school";"no";"no";"no";"cellular";"aug";"fri";151;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
40;"blue-collar";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"mon";98;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
35;"services";"married";"high.school";"no";"no";"no";"cellular";"may";"fri";301;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no"
32;"admin.";"single";"professional.course";"no";"yes";"no";"telephone";"may";"mon";16;11;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
67;"housemaid";"divorced";"professional.course";"no";"yes";"no";"cellular";"nov";"mon";655;2;5;5;"success";-1.1;94.767;-50.8;1.039;4963.6;"yes"
41;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"may";"fri";170;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no"
73;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"mar";"fri";179;1;999;0;"nonexistent";-1.8;92.843;-50;1.531;5099.1;"yes"
32;"management";"single";"basic.4y";"no";"no";"no";"telephone";"may";"mon";73;7;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
33;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";113;3;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
36;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"wed";86;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.27;5099.1;"no"
40;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"thu";180;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no"
25;"blue-collar";"single";"basic.9y";"no";"yes";"yes";"cellular";"jul";"thu";212;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
60;"entrepreneur";"married";"unknown";"no";"no";"no";"cellular";"aug";"thu";130;2;999;0;"nonexistent";-2.9;92.201;-31.4;0.883;5076.2;"no"
45;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";391;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no"
33;"technician";"married";"university.degree";"no";"no";"no";"telephone";"nov";"wed";91;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
31;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";280;7;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
48;"self-employed";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"thu";750;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
42;"services";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"mon";257;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
40;"management";"married";"university.degree";"no";"no";"yes";"cellular";"aug";"tue";454;3;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
30;"technician";"married";"university.degree";"no";"no";"no";"cellular";"jun";"fri";171;1;7;1;"success";-1.7;94.055;-39.8;0.748;4991.6;"no"
41;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"wed";38;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
36;"housemaid";"married";"basic.4y";"no";"unknown";"unknown";"cellular";"aug";"tue";23;14;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
41;"management";"divorced";"basic.6y";"no";"no";"no";"cellular";"nov";"thu";268;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
60;"unknown";"married";"university.degree";"no";"no";"yes";"telephone";"may";"thu";112;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
32;"services";"single";"high.school";"no";"unknown";"unknown";"cellular";"may";"wed";363;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no"
44;"self-employed";"single";"professional.course";"no";"yes";"no";"cellular";"may";"mon";775;5;999;1;"failure";-1.8;92.893;-46.2;1.354;5099.1;"yes"
25;"services";"married";"high.school";"no";"yes";"no";"cellular";"jul";"fri";164;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no"
30;"blue-collar";"married";"basic.9y";"no";"no";"no";"cellular";"jul";"wed";988;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"yes"
25;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";109;1;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no"
31;"technician";"divorced";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";132;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
44;"blue-collar";"married";"basic.4y";"no";"unknown";"unknown";"telephone";"jun";"thu";471;3;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no"
29;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jul";"wed";259;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
47;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"thu";42;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
18;"student";"single";"unknown";"no";"no";"no";"cellular";"sep";"thu";385;1;3;1;"success";-3.4;92.379;-29.8;0.809;5017.5;"yes"
25;"admin.";"married";"high.school";"no";"no";"yes";"telephone";"may";"tue";125;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
29;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"fri";886;3;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"yes"
53;"unknown";"married";"unknown";"unknown";"no";"no";"cellular";"aug";"mon";51;4;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
36;"self-employed";"married";"basic.9y";"unknown";"no";"no";"cellular";"aug";"thu";406;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
45;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"jun";"mon";185;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
31;"technician";"single";"university.degree";"no";"no";"no";"telephone";"oct";"thu";154;1;999;0;"nonexistent";-0.1;93.798;-40.4;4.794;5195.8;"yes"
54;"admin.";"married";"unknown";"unknown";"no";"no";"telephone";"jun";"fri";34;16;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no"
51;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"jun";"tue";334;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
44;"entrepreneur";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"tue";955;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"yes"
24;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"jul";"fri";545;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
40;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"tue";124;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
39;"services";"married";"basic.4y";"no";"no";"no";"telephone";"may";"thu";126;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
44;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"may";"tue";659;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no"
44;"management";"divorced";"university.degree";"no";"yes";"no";"cellular";"apr";"fri";230;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.479;5099.1;"no"
52;"entrepreneur";"married";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"mon";699;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
51;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"may";"wed";809;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"yes"
38;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";1276;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"yes"
34;"technician";"married";"professional.course";"no";"no";"no";"cellular";"may";"fri";83;2;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no"
23;"blue-collar";"single";"high.school";"no";"no";"no";"cellular";"jul";"wed";251;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no"
30;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"wed";25;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
26;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"wed";389;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
24;"unknown";"single";"university.degree";"no";"yes";"yes";"cellular";"jun";"tue";696;1;999;2;"failure";-2.9;92.963;-40.8;1.262;5076.2;"no"
34;"admin.";"married";"basic.6y";"no";"yes";"yes";"cellular";"nov";"wed";102;2;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
59;"unknown";"married";"unknown";"unknown";"no";"no";"telephone";"jun";"thu";701;1;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"yes"
32;"management";"divorced";"university.degree";"no";"no";"no";"cellular";"may";"tue";342;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no"
27;"self-employed";"single";"university.degree";"no";"yes";"yes";"telephone";"jun";"wed";161;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
39;"housemaid";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"thu";223;6;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
29;"blue-collar";"married";"professional.course";"no";"no";"no";"telephone";"may";"wed";34;8;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
42;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";275;8;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
60;"management";"married";"unknown";"unknown";"no";"no";"cellular";"jul";"mon";230;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
30;"technician";"single";"university.degree";"no";"no";"yes";"cellular";"aug";"fri";81;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
38;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"wed";172;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
49;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"aug";"thu";139;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
30;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"may";"mon";232;2;999;1;"failure";-1.8;92.893;-46.2;1.299;5099.1;"no"
41;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"may";"fri";239;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no"
56;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"fri";143;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no"
58;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"may";"wed";127;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
52;"blue-collar";"divorced";"basic.4y";"no";"yes";"no";"cellular";"apr";"thu";291;1;999;1;"failure";-1.8;93.075;-47.1;1.41;5099.1;"no"
32;"admin.";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"wed";173;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
51;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";131;2;999;4;"failure";-1.8;93.876;-40;0.697;5008.7;"no"
31;"self-employed";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"fri";73;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
34;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"aug";"fri";36;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
60;"retired";"married";"unknown";"no";"yes";"no";"cellular";"aug";"mon";600;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"yes"
36;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"fri";334;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no"
30;"services";"divorced";"basic.9y";"no";"no";"no";"telephone";"may";"thu";177;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
51;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"jun";"fri";263;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"no"
26;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";159;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
39;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";217;3;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
38;"entrepreneur";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"tue";477;11;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
41;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"may";"tue";216;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
43;"unknown";"married";"high.school";"unknown";"yes";"yes";"telephone";"may";"mon";329;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
60;"entrepreneur";"married";"basic.4y";"no";"unknown";"unknown";"telephone";"may";"thu";101;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
28;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"jun";"tue";151;7;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
34;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"jul";"wed";144;5;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
64;"unemployed";"divorced";"basic.9y";"no";"yes";"no";"cellular";"oct";"wed";604;2;999;0;"nonexistent";-1.1;94.601;-49.5;0.959;4963.6;"no"
35;"blue-collar";"married";"professional.course";"no";"yes";"yes";"telephone";"may";"wed";634;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
40;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"tue";107;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
46;"blue-collar";"single";"basic.6y";"unknown";"no";"yes";"cellular";"may";"thu";245;2;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no"
33;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"jun";"tue";690;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"yes"
74;"retired";"married";"university.degree";"no";"no";"no";"telephone";"oct";"mon";160;1;999;0;"nonexistent";-1.1;94.601;-49.5;0.977;4963.6;"no"
40;"management";"married";"high.school";"no";"yes";"no";"cellular";"aug";"wed";286;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
46;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"mon";93;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
41;"entrepreneur";"divorced";"professional.course";"no";"yes";"no";"cellular";"jul";"thu";72;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
30;"technician";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"thu";103;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
44;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"tue";201;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no"
47;"blue-collar";"married";"high.school";"no";"unknown";"unknown";"cellular";"aug";"tue";153;10;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
50;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"telephone";"may";"fri";74;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
29;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"mon";245;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no"
51;"blue-collar";"divorced";"basic.4y";"no";"yes";"no";"cellular";"may";"tue";314;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no"
52;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"may";"fri";136;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
27;"admin.";"single";"high.school";"no";"no";"no";"telephone";"apr";"thu";198;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no"
44;"self-employed";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"tue";249;1;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"no"
34;"unemployed";"married";"basic.9y";"no";"no";"no";"cellular";"may";"mon";123;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
23;"student";"single";"high.school";"no";"yes";"no";"cellular";"oct";"mon";226;2;999;1;"failure";-1.1;94.601;-49.5;1.032;4963.6;"yes"
30;"technician";"single";"professional.course";"no";"no";"no";"cellular";"jul";"tue";136;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
26;"student";"single";"high.school";"no";"yes";"no";"cellular";"may";"mon";113;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no"
35;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";262;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
24;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jul";"wed";141;4;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
38;"unemployed";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"tue";1058;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"yes"
36;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"thu";263;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
24;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jul";"thu";299;3;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no"
31;"management";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";181;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
41;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";206;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
39;"unemployed";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";168;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
36;"technician";"divorced";"professional.course";"unknown";"no";"no";"telephone";"jun";"mon";90;4;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
47;"retired";"married";"basic.4y";"unknown";"unknown";"unknown";"telephone";"may";"wed";441;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
33;"technician";"married";"professional.course";"no";"no";"no";"cellular";"apr";"thu";285;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"yes"
34;"blue-collar";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"tue";135;3;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
42;"technician";"divorced";"professional.course";"unknown";"no";"yes";"telephone";"may";"fri";286;3;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
51;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"nov";"fri";11;4;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no"
34;"blue-collar";"single";"basic.6y";"no";"yes";"yes";"cellular";"jul";"wed";195;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no"
33;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"tue";275;6;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
37;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";292;1;6;1;"success";-1.7;94.215;-40.3;0.896;4991.6;"yes"
33;"blue-collar";"married";"basic.9y";"no";"no";"yes";"telephone";"jul";"mon";9;1;999;0;"nonexistent";-1.7;94.215;-40.3;0.827;4991.6;"no"
36;"housemaid";"married";"basic.4y";"no";"no";"no";"cellular";"aug";"mon";73;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
43;"services";"married";"high.school";"no";"no";"no";"cellular";"nov";"thu";81;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
47;"blue-collar";"married";"basic.6y";"no";"yes";"yes";"cellular";"jul";"mon";298;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
32;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";224;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
42;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"mon";1013;3;999;0;"nonexistent";-1.7;94.027;-38.3;0.898;4991.6;"no"
36;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";248;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no"
42;"blue-collar";"divorced";"basic.9y";"no";"unknown";"unknown";"telephone";"may";"mon";100;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
31;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"apr";"thu";285;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.483;5099.1;"no"
41;"admin.";"divorced";"basic.6y";"no";"no";"no";"telephone";"jul";"mon";141;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
31;"technician";"married";"basic.9y";"no";"no";"yes";"cellular";"jul";"thu";1319;5;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"yes"
36;"technician";"single";"professional.course";"no";"no";"no";"cellular";"jun";"fri";146;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"yes"
46;"services";"married";"basic.9y";"no";"no";"yes";"cellular";"may";"wed";227;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
35;"admin.";"divorced";"high.school";"no";"no";"no";"cellular";"nov";"mon";49;3;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no"
30;"technician";"married";"high.school";"no";"yes";"no";"telephone";"may";"thu";212;6;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
35;"technician";"single";"university.degree";"no";"yes";"no";"telephone";"may";"wed";294;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
47;"management";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"fri";190;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
35;"management";"single";"high.school";"no";"yes";"yes";"cellular";"may";"fri";130;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.313;5099.1;"no"
77;"management";"married";"unknown";"no";"yes";"no";"cellular";"aug";"fri";160;1;3;6;"success";-1.7;94.027;-38.3;0.905;4991.6;"yes"
39;"technician";"married";"professional.course";"no";"unknown";"unknown";"telephone";"may";"wed";575;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
37;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"jul";"tue";49;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
31;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"mon";237;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
49;"technician";"divorced";"high.school";"no";"yes";"no";"cellular";"jul";"thu";388;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no"
57;"self-employed";"married";"university.degree";"unknown";"no";"no";"cellular";"jul";"mon";83;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
33;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"telephone";"jun";"thu";155;1;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no"
35;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"may";"fri";115;6;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no"
39;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"apr";"mon";861;6;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no"
34;"technician";"married";"basic.9y";"no";"yes";"no";"cellular";"may";"mon";95;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
32;"admin.";"single";"high.school";"no";"no";"yes";"telephone";"jun";"fri";180;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no"
35;"student";"single";"university.degree";"unknown";"no";"no";"telephone";"jun";"thu";618;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"yes"
53;"self-employed";"married";"university.degree";"no";"no";"no";"cellular";"aug";"fri";59;3;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
30;"technician";"married";"university.degree";"no";"yes";"no";"telephone";"jul";"wed";31;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
30;"student";"single";"unknown";"unknown";"yes";"no";"telephone";"may";"mon";114;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
44;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"apr";"mon";271;2;999;1;"failure";-1.8;93.075;-47.1;1.466;5099.1;"no"
50;"admin.";"married";"basic.9y";"no";"no";"no";"cellular";"aug";"thu";23;14;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no"
56;"retired";"married";"high.school";"no";"yes";"no";"telephone";"may";"mon";167;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
58;"retired";"divorced";"high.school";"no";"yes";"no";"cellular";"jun";"tue";145;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.262;5076.2;"no"
54;"technician";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"thu";322;2;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no"
40;"technician";"single";"university.degree";"no";"no";"no";"cellular";"nov";"mon";130;1;7;2;"failure";-3.4;92.649;-30.1;0.714;5017.5;"yes"
31;"blue-collar";"married";"basic.6y";"no";"no";"no";"cellular";"jul";"fri";103;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
41;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"may";"tue";181;1;999;1;"failure";-1.8;92.893;-46.2;1.344;5099.1;"no"
31;"blue-collar";"single";"high.school";"no";"yes";"no";"cellular";"may";"thu";361;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
39;"services";"married";"high.school";"no";"yes";"yes";"cellular";"may";"tue";200;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no"
37;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"may";"mon";166;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
41;"unknown";"single";"unknown";"unknown";"yes";"no";"telephone";"jun";"fri";94;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no"
50;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";367;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
49;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"fri";187;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
31;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";197;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
35;"services";"married";"professional.course";"no";"yes";"no";"cellular";"apr";"thu";218;2;6;1;"success";-1.8;93.749;-34.6;0.644;5008.7;"yes"
52;"management";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";412;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
33;"management";"married";"university.degree";"no";"no";"no";"telephone";"may";"thu";166;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
32;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"mon";299;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
35;"management";"married";"university.degree";"no";"yes";"no";"cellular";"apr";"thu";584;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.365;5099.1;"no"
54;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"fri";204;1;999;1;"failure";-2.9;92.201;-31.4;0.849;5076.2;"yes"
27;"services";"single";"high.school";"unknown";"no";"no";"cellular";"jul";"tue";509;4;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"yes"
52;"management";"married";"professional.course";"no";"yes";"yes";"telephone";"may";"tue";280;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
32;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"fri";131;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.881;5076.2;"no"
36;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"may";"thu";27;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no"
27;"admin.";"married";"professional.course";"no";"no";"no";"cellular";"may";"thu";584;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no"
39;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"nov";"mon";78;2;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no"
34;"entrepreneur";"married";"university.degree";"no";"no";"yes";"cellular";"apr";"fri";77;3;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
35;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";162;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
32;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"may";"wed";180;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
42;"technician";"married";"professional.course";"no";"no";"no";"cellular";"aug";"wed";96;1;999;1;"failure";-2.9;92.201;-31.4;0.879;5076.2;"no"
42;"admin.";"married";"high.school";"no";"no";"no";"cellular";"nov";"mon";651;2;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"yes"
37;"management";"single";"university.degree";"no";"yes";"no";"telephone";"may";"fri";415;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
34;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"nov";"fri";85;3;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no"
27;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"thu";130;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no"
49;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"thu";1149;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"yes"
35;"admin.";"married";"university.degree";"no";"no";"no";"telephone";"may";"tue";235;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
22;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"jul";"mon";110;7;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
45;"housemaid";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"thu";105;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
29;"blue-collar";"married";"high.school";"no";"yes";"no";"telephone";"jul";"wed";42;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
59;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"aug";"wed";240;3;999;1;"failure";-2.9;92.201;-31.4;0.834;5076.2;"no"
55;"retired";"divorced";"basic.6y";"unknown";"no";"no";"telephone";"jun";"mon";228;2;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
32;"blue-collar";"married";"unknown";"no";"no";"no";"cellular";"nov";"thu";366;4;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
49;"blue-collar";"divorced";"unknown";"unknown";"yes";"no";"cellular";"jul";"wed";284;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no"
43;"admin.";"married";"professional.course";"no";"yes";"no";"telephone";"jun";"thu";193;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no"
47;"blue-collar";"married";"high.school";"no";"yes";"no";"cellular";"may";"fri";181;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no"
41;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"thu";102;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
50;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"mon";192;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
46;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";148;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
32;"services";"married";"high.school";"no";"yes";"yes";"telephone";"may";"wed";184;9;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
47;"retired";"single";"basic.6y";"unknown";"yes";"yes";"cellular";"jul";"mon";431;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
54;"admin.";"married";"university.degree";"unknown";"no";"yes";"telephone";"may";"thu";82;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
29;"technician";"married";"university.degree";"no";"no";"no";"cellular";"apr";"mon";135;3;999;1;"failure";-1.8;93.749;-34.6;0.645;5008.7;"no"
33;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"apr";"thu";157;6;999;0;"nonexistent";-1.8;93.749;-34.6;0.659;5008.7;"no"
31;"student";"single";"university.degree";"no";"no";"no";"cellular";"jul";"fri";608;3;6;2;"success";-1.7;94.215;-40.3;0.885;4991.6;"yes"
27;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";339;2;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no"
25;"student";"single";"high.school";"no";"no";"no";"cellular";"nov";"thu";244;1;999;0;"nonexistent";-1.1;94.767;-50.8;1.041;4963.6;"yes"
34;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"wed";686;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"yes"
35;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"mon";165;5;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
37;"services";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"wed";211;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
34;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";455;3;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"yes"
33;"blue-collar";"single";"basic.4y";"no";"no";"yes";"cellular";"may";"tue";807;3;999;1;"failure";-1.8;92.893;-46.2;1.291;5099.1;"no"
54;"self-employed";"married";"high.school";"no";"yes";"no";"cellular";"aug";"thu";204;4;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
30;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"wed";175;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no"
40;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"mon";258;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
37;"technician";"single";"high.school";"no";"yes";"no";"cellular";"apr";"thu";44;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.41;5099.1;"no"
34;"housemaid";"divorced";"university.degree";"no";"yes";"yes";"cellular";"apr";"fri";73;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
25;"unemployed";"married";"high.school";"unknown";"unknown";"unknown";"cellular";"jul";"fri";147;10;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
59;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";17;18;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no"
25;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"sep";"thu";420;1;1;1;"success";-3.4;92.379;-29.8;0.809;5017.5;"no"
58;"unemployed";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"thu";344;2;999;0;"nonexistent";-1.1;94.767;-50.8;1.041;4963.6;"yes"
42;"blue-collar";"single";"basic.4y";"no";"unknown";"unknown";"telephone";"jul";"fri";385;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
33;"technician";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";182;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no"
50;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"fri";80;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
39;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"thu";393;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
30;"technician";"single";"high.school";"no";"no";"no";"cellular";"aug";"mon";638;4;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"yes"
33;"management";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"wed";641;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
33;"management";"married";"university.degree";"no";"no";"no";"telephone";"may";"fri";21;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
41;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"may";"wed";446;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
36;"management";"married";"university.degree";"no";"yes";"no";"telephone";"may";"fri";170;4;999;0;"nonexistent";1.1;93.994;-36.4;4.864;5191;"no"
44;"entrepreneur";"married";"university.degree";"no";"yes";"yes";"cellular";"nov";"thu";96;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
57;"retired";"married";"basic.4y";"no";"yes";"yes";"telephone";"apr";"tue";1348;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"yes"
40;"blue-collar";"married";"basic.6y";"unknown";"no";"no";"telephone";"may";"tue";85;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
42;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"may";"fri";148;9;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
41;"self-employed";"single";"university.degree";"no";"yes";"yes";"telephone";"may";"wed";23;17;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
41;"entrepreneur";"married";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";324;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.904;4991.6;"yes"
33;"services";"married";"professional.course";"no";"yes";"yes";"cellular";"aug";"thu";331;1;999;0;"nonexistent";1.4;93.444;-36.1;4.962;5228.1;"no"
32;"technician";"single";"high.school";"no";"no";"no";"telephone";"jul";"wed";40;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
45;"unemployed";"married";"university.degree";"no";"no";"no";"telephone";"may";"tue";550;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
29;"technician";"single";"university.degree";"no";"no";"no";"cellular";"jun";"thu";442;3;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no"
35;"technician";"single";"basic.9y";"no";"no";"no";"cellular";"nov";"wed";178;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no"
35;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"sep";"wed";110;2;18;2;"failure";-1.1;94.199;-37.5;0.886;4963.6;"no"
86;"retired";"married";"unknown";"unknown";"yes";"yes";"cellular";"sep";"tue";211;1;7;4;"success";-1.1;94.199;-37.5;0.877;4963.6;"yes"
45;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"fri";27;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
34;"technician";"married";"professional.course";"no";"no";"yes";"telephone";"may";"fri";388;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
41;"technician";"married";"professional.course";"no";"yes";"no";"cellular";"nov";"mon";545;2;999;0;"nonexistent";-1.1;94.767;-50.8;1.039;4963.6;"yes"
50;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"wed";146;1;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no"
28;"management";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"thu";166;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no"
33;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"may";"thu";139;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
42;"technician";"married";"university.degree";"unknown";"yes";"no";"cellular";"may";"wed";301;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
43;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"fri";218;3;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
42;"services";"married";"university.degree";"no";"no";"no";"cellular";"dec";"wed";179;1;6;1;"success";-3;92.713;-33;0.715;5023.5;"yes"
56;"blue-collar";"married";"basic.4y";"unknown";"no";"yes";"cellular";"aug";"thu";360;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
29;"student";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";489;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
31;"housemaid";"single";"high.school";"no";"yes";"no";"cellular";"jul";"wed";125;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
31;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"jul";"thu";304;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
28;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"tue";189;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no"
43;"admin.";"married";"university.degree";"no";"yes";"yes";"telephone";"jul";"tue";377;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
44;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"may";"wed";728;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
43;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"mon";128;22;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
41;"retired";"single";"basic.4y";"no";"yes";"no";"cellular";"oct";"fri";278;1;999;0;"nonexistent";-1.1;94.601;-49.5;0.942;4963.6;"no"
31;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"aug";"tue";387;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.883;5076.2;"no"
59;"admin.";"married";"university.degree";"no";"yes";"yes";"telephone";"may";"thu";29;9;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
32;"housemaid";"single";"university.degree";"unknown";"yes";"no";"cellular";"jul";"tue";71;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
24;"student";"single";"high.school";"no";"no";"no";"cellular";"jun";"tue";292;1;999;1;"failure";-1.7;94.055;-39.8;0.737;4991.6;"no"
31;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"jun";"wed";767;2;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"yes"
38;"admin.";"single";"high.school";"no";"yes";"yes";"cellular";"nov";"thu";1476;4;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
37;"management";"divorced";"university.degree";"no";"yes";"no";"cellular";"may";"mon";176;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no"
33;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jul";"fri";52;4;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
27;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"jul";"mon";150;4;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
34;"services";"married";"high.school";"no";"no";"no";"telephone";"may";"thu";285;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
46;"self-employed";"married";"basic.6y";"unknown";"yes";"no";"cellular";"nov";"tue";32;1;999;1;"failure";-0.1;93.2;-42;4.153;5195.8;"no"
30;"admin.";"married";"high.school";"no";"no";"no";"cellular";"jul";"wed";227;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no"
31;"unemployed";"single";"basic.4y";"no";"no";"no";"cellular";"nov";"fri";12;8;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no"
56;"management";"married";"university.degree";"no";"no";"yes";"telephone";"may";"wed";171;1;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
52;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"wed";183;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
30;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"jul";"thu";501;2;999;0;"nonexistent";1.4;93.918;-42.7;4.966;5228.1;"no"
34;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"jun";"fri";381;3;999;0;"nonexistent";1.4;94.465;-41.8;4.947;5228.1;"no"
31;"admin.";"married";"high.school";"no";"no";"no";"cellular";"oct";"thu";142;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.722;5017.5;"yes"
33;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"fri";482;1;12;1;"success";-1.1;94.767;-50.8;1.049;4963.6;"yes"
33;"admin.";"single";"university.degree";"no";"yes";"yes";"telephone";"apr";"wed";117;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.415;5099.1;"no"
30;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"mon";14;13;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
28;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"apr";"fri";69;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
24;"technician";"single";"professional.course";"no";"no";"no";"telephone";"may";"tue";240;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no"
41;"blue-collar";"married";"basic.4y";"no";"yes";"yes";"cellular";"may";"wed";389;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
26;"admin.";"married";"high.school";"no";"no";"no";"telephone";"may";"thu";326;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
40;"admin.";"married";"unknown";"no";"no";"no";"telephone";"may";"thu";387;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
45;"housemaid";"single";"basic.4y";"no";"no";"no";"telephone";"sep";"mon";569;4;999;0;"nonexistent";-3.4;92.379;-29.8;0.797;5017.5;"yes"
42;"admin.";"married";"university.degree";"unknown";"yes";"no";"telephone";"jun";"thu";160;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no"
41;"technician";"married";"high.school";"no";"no";"no";"cellular";"aug";"mon";697;2;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"yes"
56;"management";"divorced";"basic.9y";"unknown";"yes";"no";"telephone";"may";"thu";313;2;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
25;"technician";"single";"high.school";"no";"yes";"no";"cellular";"may";"fri";581;3;999;2;"failure";-1.8;93.876;-40;0.699;5008.7;"no"
25;"blue-collar";"single";"high.school";"unknown";"yes";"no";"cellular";"may";"mon";23;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
33;"admin.";"single";"high.school";"no";"yes";"no";"cellular";"may";"tue";659;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no"
34;"technician";"married";"basic.9y";"no";"no";"no";"cellular";"may";"mon";103;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
36;"technician";"single";"high.school";"no";"yes";"no";"cellular";"jul";"wed";243;1;999;1;"failure";-2.9;92.469;-33.6;1.029;5076.2;"no"
75;"retired";"married";"university.degree";"no";"yes";"no";"cellular";"jul";"thu";229;1;999;2;"failure";-1.7;94.215;-40.3;0.81;4991.6;"yes"
38;"management";"married";"university.degree";"no";"no";"yes";"cellular";"nov";"fri";79;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no"
28;"student";"single";"unknown";"no";"yes";"no";"cellular";"aug";"thu";111;1;999;1;"failure";-2.9;92.201;-31.4;0.883;5076.2;"no"
56;"retired";"married";"basic.4y";"unknown";"yes";"no";"cellular";"aug";"wed";102;1;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no"
58;"blue-collar";"married";"professional.course";"no";"no";"no";"telephone";"jun";"fri";15;12;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
30;"blue-collar";"single";"unknown";"no";"yes";"yes";"telephone";"may";"mon";408;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
48;"admin.";"married";"university.degree";"unknown";"yes";"no";"cellular";"aug";"tue";286;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
30;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"fri";53;6;999;0;"nonexistent";1.4;93.918;-42.7;4.959;5228.1;"no"
43;"admin.";"married";"high.school";"no";"unknown";"unknown";"telephone";"may";"wed";164;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
33;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"mon";305;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no"
36;"technician";"married";"basic.6y";"no";"no";"no";"cellular";"apr";"mon";316;2;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no"
54;"retired";"single";"high.school";"no";"yes";"no";"cellular";"jul";"thu";577;3;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
29;"blue-collar";"single";"high.school";"no";"yes";"no";"cellular";"jul";"fri";90;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no"
28;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"dec";"fri";454;6;999;1;"failure";-3;92.713;-33;0.71;5023.5;"no"
59;"retired";"divorced";"professional.course";"no";"no";"no";"cellular";"may";"wed";69;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
45;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"apr";"tue";427;4;999;1;"failure";-1.8;93.075;-47.1;1.423;5099.1;"no"
32;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";25;13;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
55;"retired";"divorced";"professional.course";"no";"no";"yes";"telephone";"may";"wed";217;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
29;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"thu";139;1;999;0;"nonexistent";1.4;93.444;-36.1;4.963;5228.1;"no"
31;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"wed";257;2;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
34;"technician";"married";"high.school";"no";"yes";"no";"cellular";"aug";"fri";107;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
25;"technician";"divorced";"university.degree";"no";"yes";"no";"telephone";"jun";"mon";214;2;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
35;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"dec";"thu";105;1;4;3;"success";-3;92.713;-33;0.707;5023.5;"no"
49;"technician";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"mon";146;6;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
35;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"jul";"thu";19;1;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no"
36;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"may";"tue";65;1;999;1;"failure";-1.8;92.893;-46.2;1.266;5099.1;"no"
29;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"nov";"thu";281;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
30;"admin.";"single";"high.school";"no";"unknown";"unknown";"cellular";"nov";"tue";229;2;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
24;"student";"married";"university.degree";"no";"no";"no";"cellular";"jul";"tue";114;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
47;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jun";"mon";243;4;999;0;"nonexistent";-2.9;92.963;-40.8;1.281;5076.2;"yes"
32;"blue-collar";"married";"basic.4y";"no";"no";"yes";"cellular";"may";"thu";80;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no"
34;"technician";"single";"professional.course";"no";"no";"no";"cellular";"aug";"mon";468;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
34;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"fri";101;4;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no"
39;"technician";"married";"professional.course";"no";"no";"no";"telephone";"jun";"tue";83;2;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
47;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"wed";74;6;999;2;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no"
32;"technician";"married";"high.school";"no";"yes";"no";"cellular";"may";"tue";67;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no"
29;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";438;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
57;"retired";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"fri";12;5;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
49;"management";"married";"high.school";"no";"no";"no";"cellular";"nov";"wed";582;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
42;"technician";"married";"professional.course";"unknown";"yes";"no";"cellular";"jul";"thu";721;10;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no"
29;"admin.";"single";"university.degree";"unknown";"yes";"no";"cellular";"aug";"fri";142;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
34;"technician";"married";"professional.course";"no";"yes";"yes";"telephone";"may";"fri";224;3;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
51;"entrepreneur";"divorced";"university.degree";"no";"yes";"no";"cellular";"may";"mon";212;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
47;"blue-collar";"divorced";"basic.9y";"no";"no";"no";"cellular";"may";"tue";295;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no"
53;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"mar";"mon";247;5;999;2;"failure";-1.8;93.369;-34.8;0.646;5008.7;"no"
28;"technician";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"mon";236;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
27;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"oct";"wed";184;1;999;1;"failure";-1.1;94.601;-49.5;1.043;4963.6;"yes"
23;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";104;1;999;2;"failure";-1.7;94.215;-40.3;0.881;4991.6;"no"
30;"student";"single";"high.school";"no";"no";"no";"cellular";"aug";"thu";200;1;999;1;"failure";-1.7;94.027;-38.3;0.904;4991.6;"no"
42;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"may";"wed";172;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
38;"admin.";"single";"university.degree";"no";"yes";"no";"telephone";"jun";"wed";190;2;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no"
29;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"apr";"mon";245;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
44;"housemaid";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"wed";31;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no"
59;"retired";"married";"high.school";"no";"unknown";"unknown";"telephone";"aug";"thu";204;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
45;"management";"single";"basic.9y";"no";"yes";"no";"cellular";"nov";"thu";165;3;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no"
51;"management";"married";"university.degree";"unknown";"no";"yes";"telephone";"jun";"thu";93;1;999;0;"nonexistent";1.4;94.465;-41.8;4.955;5228.1;"no"
28;"services";"married";"high.school";"no";"yes";"yes";"telephone";"may";"mon";114;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
29;"technician";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"wed";94;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
28;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"apr";"thu";477;2;999;1;"failure";-1.8;93.075;-47.1;1.483;5099.1;"no"
29;"technician";"single";"professional.course";"no";"yes";"no";"cellular";"may";"wed";231;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
40;"admin.";"single";"high.school";"unknown";"yes";"no";"telephone";"jun";"mon";142;3;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
43;"blue-collar";"married";"basic.4y";"no";"yes";"no";"cellular";"may";"mon";221;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.244;5099.1;"no"
54;"management";"married";"university.degree";"no";"no";"yes";"cellular";"jul";"tue";218;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
42;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"may";"mon";370;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.354;5099.1;"no"
55;"services";"married";"high.school";"no";"no";"no";"cellular";"may";"mon";336;1;999;1;"failure";-1.8;92.893;-46.2;1.244;5099.1;"no"
49;"blue-collar";"single";"basic.4y";"unknown";"no";"no";"cellular";"jul";"wed";121;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
52;"services";"married";"professional.course";"unknown";"yes";"yes";"cellular";"aug";"mon";84;3;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
32;"admin.";"married";"high.school";"no";"no";"no";"cellular";"aug";"fri";52;8;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
23;"admin.";"single";"university.degree";"no";"yes";"yes";"telephone";"jul";"mon";69;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
34;"technician";"married";"professional.course";"no";"yes";"yes";"cellular";"nov";"thu";42;7;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
36;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"wed";98;3;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
54;"admin.";"single";"university.degree";"unknown";"no";"no";"cellular";"aug";"thu";218;2;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
39;"services";"divorced";"basic.9y";"no";"yes";"no";"telephone";"may";"thu";51;1;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
50;"housemaid";"divorced";"basic.4y";"no";"no";"no";"telephone";"sep";"tue";57;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.877;4963.6;"no"
30;"services";"single";"high.school";"no";"yes";"no";"cellular";"jun";"mon";181;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"yes"
27;"blue-collar";"married";"basic.9y";"no";"no";"yes";"telephone";"may";"thu";1170;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
32;"admin.";"divorced";"university.degree";"no";"yes";"no";"telephone";"may";"thu";147;4;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
54;"technician";"married";"university.degree";"unknown";"no";"no";"telephone";"jun";"mon";71;4;999;0;"nonexistent";1.4;94.465;-41.8;4.96;5228.1;"no"
40;"blue-collar";"married";"basic.4y";"unknown";"unknown";"unknown";"telephone";"jul";"wed";135;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
50;"blue-collar";"married";"professional.course";"unknown";"yes";"no";"cellular";"may";"thu";157;1;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no"
35;"technician";"single";"professional.course";"no";"unknown";"unknown";"cellular";"may";"mon";146;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
26;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"sep";"tue";355;1;999;1;"failure";-1.1;94.199;-37.5;0.881;4963.6;"no"
45;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"wed";99;1;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
28;"technician";"married";"high.school";"no";"no";"no";"telephone";"may";"tue";180;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
28;"blue-collar";"single";"basic.4y";"no";"yes";"no";"telephone";"may";"mon";101;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
50;"technician";"married";"professional.course";"no";"no";"no";"telephone";"may";"fri";121;2;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
31;"blue-collar";"married";"basic.6y";"no";"yes";"no";"telephone";"jun";"fri";55;12;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
34;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"aug";"fri";114;1;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
56;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"cellular";"jul";"tue";368;5;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
29;"entrepreneur";"married";"basic.4y";"no";"no";"no";"cellular";"jul";"tue";103;4;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
58;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"aug";"wed";233;2;999;0;"nonexistent";1.4;93.444;-36.1;4.965;5228.1;"no"
46;"blue-collar";"married";"basic.4y";"no";"no";"no";"cellular";"may";"mon";471;3;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
35;"blue-collar";"divorced";"basic.9y";"no";"no";"yes";"telephone";"may";"tue";131;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
34;"management";"married";"university.degree";"unknown";"yes";"no";"cellular";"may";"thu";281;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
39;"admin.";"single";"high.school";"no";"no";"no";"cellular";"apr";"fri";297;1;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
40;"management";"married";"unknown";"no";"yes";"no";"cellular";"nov";"thu";165;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no"
40;"admin.";"married";"university.degree";"no";"yes";"yes";"cellular";"aug";"tue";117;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
54;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"cellular";"jul";"thu";71;5;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
25;"admin.";"single";"university.degree";"no";"no";"no";"telephone";"jun";"mon";94;2;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no"
40;"unemployed";"married";"professional.course";"no";"yes";"no";"cellular";"sep";"fri";155;3;999;0;"nonexistent";-3.4;92.379;-29.8;0.773;5017.5;"no"
49;"blue-collar";"married";"basic.4y";"unknown";"no";"no";"telephone";"jun";"thu";67;3;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no"
41;"admin.";"married";"unknown";"no";"yes";"no";"cellular";"sep";"thu";228;1;999;1;"failure";-1.1;94.199;-37.5;0.879;4963.6;"no"
32;"admin.";"married";"high.school";"no";"no";"no";"cellular";"jul";"mon";549;2;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
44;"admin.";"divorced";"university.degree";"no";"no";"no";"telephone";"jun";"fri";39;2;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
41;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"mon";1360;3;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"yes"
30;"technician";"single";"university.degree";"no";"yes";"yes";"cellular";"aug";"tue";433;2;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
27;"blue-collar";"single";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";352;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no"
41;"blue-collar";"married";"basic.4y";"no";"yes";"no";"telephone";"may";"wed";152;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
36;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"telephone";"may";"wed";38;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no"
54;"entrepreneur";"married";"professional.course";"no";"yes";"yes";"cellular";"nov";"tue";134;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
30;"blue-collar";"single";"professional.course";"no";"no";"no";"cellular";"may";"tue";165;1;999;1;"failure";-1.8;93.876;-40;0.668;5008.7;"no"
25;"student";"single";"unknown";"unknown";"yes";"no";"cellular";"aug";"fri";81;1;999;1;"failure";-2.9;92.201;-31.4;0.825;5076.2;"no"
42;"management";"married";"high.school";"no";"no";"no";"cellular";"nov";"thu";59;2;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
36;"services";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"tue";255;2;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no"
45;"admin.";"married";"university.degree";"unknown";"yes";"no";"telephone";"may";"tue";99;6;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
38;"technician";"married";"university.degree";"unknown";"no";"no";"telephone";"may";"thu";257;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
38;"admin.";"single";"professional.course";"no";"no";"no";"telephone";"may";"mon";160;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
34;"blue-collar";"married";"basic.4y";"no";"no";"no";"telephone";"jun";"fri";78;2;999;0;"nonexistent";1.4;94.465;-41.8;4.967;5228.1;"no"
44;"admin.";"married";"basic.9y";"unknown";"no";"no";"cellular";"may";"wed";217;3;999;1;"failure";-1.8;92.893;-46.2;1.334;5099.1;"no"
37;"services";"single";"basic.9y";"no";"no";"no";"cellular";"may";"tue";37;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no"
39;"blue-collar";"single";"basic.9y";"no";"no";"no";"telephone";"may";"tue";650;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"yes"
57;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"jul";"mon";230;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
34;"technician";"married";"professional.course";"unknown";"yes";"no";"cellular";"jul";"wed";64;4;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
25;"admin.";"married";"unknown";"no";"no";"no";"telephone";"jun";"mon";112;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
52;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"apr";"thu";152;2;999;1;"failure";-1.8;93.075;-47.1;1.435;5099.1;"no"
23;"technician";"single";"high.school";"no";"no";"no";"cellular";"may";"thu";104;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no"
57;"technician";"married";"basic.4y";"unknown";"no";"no";"telephone";"may";"tue";101;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
50;"admin.";"married";"university.degree";"no";"no";"no";"cellular";"nov";"fri";206;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no"
46;"technician";"married";"professional.course";"no";"no";"yes";"telephone";"jun";"mon";63;1;999;0;"nonexistent";1.4;94.465;-41.8;4.865;5228.1;"no"
43;"blue-collar";"single";"basic.4y";"unknown";"no";"no";"telephone";"may";"wed";339;3;999;0;"nonexistent";1.1;93.994;-36.4;4.858;5191;"no"
38;"management";"divorced";"university.degree";"no";"no";"no";"cellular";"nov";"mon";136;2;999;1;"failure";-0.1;93.2;-42;4.191;5195.8;"no"
53;"admin.";"single";"basic.6y";"no";"yes";"yes";"telephone";"may";"mon";148;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
35;"self-employed";"unknown";"university.degree";"no";"no";"no";"cellular";"nov";"thu";221;1;999;0;"nonexistent";-0.1;93.2;-42;4.076;5195.8;"no"
28;"services";"married";"high.school";"no";"no";"no";"cellular";"jul";"tue";289;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
25;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";155;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
56;"services";"divorced";"high.school";"unknown";"no";"no";"telephone";"may";"thu";311;5;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
56;"technician";"married";"university.degree";"unknown";"no";"no";"cellular";"jul";"mon";17;19;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
33;"services";"single";"high.school";"no";"yes";"no";"telephone";"jun";"thu";326;5;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
31;"housemaid";"single";"professional.course";"unknown";"yes";"yes";"cellular";"aug";"tue";213;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
48;"admin.";"divorced";"university.degree";"no";"no";"no";"cellular";"aug";"thu";544;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.904;4991.6;"yes"
45;"self-employed";"divorced";"university.degree";"no";"yes";"yes";"telephone";"jun";"mon";173;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
24;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"oct";"fri";160;1;999;0;"nonexistent";-3.4;92.431;-26.9;0.72;5017.5;"no"
33;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"tue";341;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no"
38;"admin.";"married";"high.school";"unknown";"no";"no";"telephone";"apr";"mon";121;4;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
48;"housemaid";"married";"basic.4y";"unknown";"no";"yes";"cellular";"aug";"mon";148;1;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no"
28;"entrepreneur";"married";"basic.9y";"unknown";"no";"no";"cellular";"may";"fri";22;5;999;0;"nonexistent";-1.8;92.893;-46.2;1.25;5099.1;"no"
50;"self-employed";"married";"basic.4y";"unknown";"unknown";"unknown";"telephone";"may";"wed";153;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
29;"admin.";"married";"university.degree";"no";"yes";"yes";"telephone";"jun";"wed";281;3;999;0;"nonexistent";1.4;94.465;-41.8;4.958;5228.1;"no"
38;"blue-collar";"married";"basic.6y";"no";"no";"no";"telephone";"may";"mon";177;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
18;"student";"single";"unknown";"no";"yes";"yes";"telephone";"aug";"wed";297;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.9;4991.6;"no"
31;"unemployed";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"wed";43;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.281;5099.1;"no"
34;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"jul";"wed";487;5;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
38;"admin.";"married";"university.degree";"no";"yes";"no";"telephone";"jun";"tue";43;9;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
57;"admin.";"single";"high.school";"no";"yes";"no";"telephone";"may";"mon";26;5;12;1;"success";-1.8;92.893;-46.2;1.244;5099.1;"no"
35;"technician";"divorced";"unknown";"no";"yes";"yes";"telephone";"may";"wed";432;1;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
77;"retired";"divorced";"professional.course";"no";"no";"no";"cellular";"aug";"mon";258;1;999;0;"nonexistent";-1.7;94.027;-38.3;0.898;4991.6;"no"
29;"blue-collar";"single";"basic.9y";"unknown";"yes";"yes";"cellular";"jul";"tue";532;1;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
46;"management";"married";"university.degree";"no";"no";"yes";"cellular";"jul";"fri";153;2;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
21;"student";"single";"high.school";"no";"yes";"yes";"cellular";"jun";"wed";286;2;999;0;"nonexistent";-1.7;94.055;-39.8;0.767;4991.6;"yes"
43;"management";"married";"university.degree";"no";"no";"no";"cellular";"aug";"mon";75;1;999;0;"nonexistent";-2.9;92.201;-31.4;0.861;5076.2;"no"
43;"admin.";"married";"basic.9y";"unknown";"no";"no";"cellular";"jul";"thu";294;2;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no"
31;"technician";"married";"university.degree";"no";"no";"no";"cellular";"oct";"tue";146;2;12;3;"failure";-1.1;94.601;-49.5;0.982;4963.6;"no"
39;"student";"single";"unknown";"no";"yes";"no";"telephone";"jun";"tue";367;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
44;"technician";"single";"university.degree";"no";"no";"yes";"cellular";"jul";"fri";228;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
32;"services";"single";"high.school";"no";"yes";"no";"cellular";"may";"wed";53;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no"
43;"self-employed";"single";"high.school";"unknown";"no";"no";"cellular";"may";"wed";79;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no"
48;"services";"married";"high.school";"no";"no";"no";"telephone";"sep";"tue";11;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.881;4963.6;"no"
28;"blue-collar";"single";"basic.6y";"no";"no";"no";"telephone";"may";"fri";557;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"no"
36;"blue-collar";"married";"basic.9y";"no";"yes";"yes";"cellular";"may";"wed";55;1;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no"
52;"self-employed";"divorced";"basic.9y";"no";"yes";"no";"cellular";"nov";"thu";26;5;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no"
34;"services";"single";"high.school";"no";"yes";"no";"cellular";"may";"thu";541;3;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no"
37;"admin.";"married";"high.school";"no";"yes";"no";"telephone";"may";"mon";115;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
25;"admin.";"single";"university.degree";"no";"no";"no";"cellular";"may";"wed";101;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.334;5099.1;"no"
48;"technician";"divorced";"professional.course";"no";"no";"no";"cellular";"aug";"tue";69;1;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
36;"self-employed";"single";"professional.course";"no";"yes";"no";"telephone";"may";"mon";113;4;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
27;"technician";"single";"professional.course";"no";"no";"no";"telephone";"may";"tue";148;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
34;"blue-collar";"married";"basic.9y";"no";"yes";"no";"cellular";"apr";"mon";151;2;999;0;"nonexistent";-1.8;93.075;-47.1;1.405;5099.1;"no"
42;"services";"married";"high.school";"no";"yes";"yes";"telephone";"apr";"fri";73;1;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no"
37;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"thu";117;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no"
41;"blue-collar";"married";"basic.9y";"unknown";"no";"no";"telephone";"jun";"thu";142;2;999;0;"nonexistent";1.4;94.465;-41.8;4.866;5228.1;"no"
51;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"nov";"tue";62;1;999;0;"nonexistent";-0.1;93.2;-42;4.153;5195.8;"no"
27;"admin.";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"thu";84;3;999;0;"nonexistent";1.4;93.918;-42.7;4.968;5228.1;"no"
35;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"jul";"fri";199;1;999;0;"nonexistent";1.4;93.918;-42.7;4.957;5228.1;"no"
31;"services";"divorced";"high.school";"no";"yes";"yes";"cellular";"nov";"mon";90;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no"
31;"blue-collar";"single";"basic.9y";"no";"yes";"no";"telephone";"sep";"mon";5;1;999;0;"nonexistent";-1.1;94.199;-37.5;0.879;4963.6;"no"
31;"blue-collar";"married";"basic.9y";"no";"no";"no";"telephone";"jul";"tue";280;6;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
64;"unknown";"married";"unknown";"no";"yes";"no";"telephone";"aug";"fri";239;4;999;0;"nonexistent";-1.7;94.027;-38.3;0.905;4991.6;"yes"
33;"management";"married";"university.degree";"no";"yes";"no";"cellular";"may";"tue";35;6;999;0;"nonexistent";-1.8;92.893;-46.2;1.344;5099.1;"no"
41;"blue-collar";"married";"basic.4y";"unknown";"yes";"no";"cellular";"apr";"fri";150;2;999;1;"failure";-1.8;93.075;-47.1;1.405;5099.1;"no"
34;"admin.";"single";"high.school";"no";"no";"no";"telephone";"jun";"tue";423;1;999;0;"nonexistent";1.4;94.465;-41.8;4.961;5228.1;"no"
41;"admin.";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"wed";135;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
36;"blue-collar";"married";"basic.6y";"no";"yes";"no";"cellular";"nov";"wed";70;1;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
59;"retired";"married";"professional.course";"unknown";"yes";"no";"telephone";"jun";"wed";59;8;999;0;"nonexistent";1.4;94.465;-41.8;4.959;5228.1;"no"
56;"management";"married";"basic.9y";"no";"yes";"no";"telephone";"jun";"tue";941;3;999;0;"nonexistent";1.4;94.465;-41.8;4.864;5228.1;"yes"
59;"retired";"married";"professional.course";"no";"no";"no";"telephone";"may";"thu";422;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
32;"admin.";"single";"university.degree";"no";"unknown";"unknown";"cellular";"nov";"fri";59;1;999;0;"nonexistent";-0.1;93.2;-42;4.021;5195.8;"no"
40;"technician";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";34;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
38;"admin.";"married";"university.degree";"no";"yes";"no";"cellular";"nov";"tue";64;1;3;3;"success";-3.4;92.649;-30.1;0.715;5017.5;"yes"
34;"admin.";"married";"professional.course";"no";"yes";"no";"telephone";"may";"tue";248;2;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
41;"unknown";"married";"unknown";"no";"no";"no";"cellular";"aug";"mon";258;2;999;0;"nonexistent";1.4;93.444;-36.1;4.97;5228.1;"no"
33;"admin.";"single";"high.school";"no";"no";"no";"cellular";"jul";"mon";31;1;999;0;"nonexistent";1.4;93.918;-42.7;4.96;5228.1;"no"
31;"technician";"single";"high.school";"no";"yes";"yes";"cellular";"aug";"wed";113;2;999;0;"nonexistent";1.4;93.444;-36.1;4.967;5228.1;"no"
29;"blue-collar";"divorced";"basic.9y";"no";"yes";"no";"cellular";"may";"wed";168;4;999;1;"failure";-1.8;92.893;-46.2;1.281;5099.1;"no"
38;"admin.";"single";"basic.9y";"unknown";"yes";"no";"telephone";"jun";"wed";247;5;999;0;"nonexistent";1.4;94.465;-41.8;4.962;5228.1;"no"
24;"admin.";"single";"high.school";"no";"yes";"yes";"cellular";"mar";"wed";224;1;999;0;"nonexistent";-1.8;92.843;-50;1.602;5099.1;"yes"
34;"admin.";"single";"basic.6y";"no";"no";"no";"cellular";"may";"thu";22;11;999;0;"nonexistent";-1.8;92.893;-46.2;1.327;5099.1;"no"
27;"admin.";"married";"high.school";"no";"yes";"yes";"cellular";"may";"thu";201;1;999;0;"nonexistent";-1.8;92.893;-46.2;1.266;5099.1;"no"
32;"blue-collar";"married";"high.school";"no";"no";"no";"cellular";"may";"fri";319;1;999;1;"failure";-1.8;92.893;-46.2;1.313;5099.1;"no"
49;"admin.";"married";"high.school";"no";"yes";"no";"cellular";"jul";"fri";59;2;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
36;"technician";"divorced";"basic.9y";"no";"no";"no";"telephone";"jul";"wed";372;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
46;"blue-collar";"single";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"thu";155;1;999;0;"nonexistent";1.4;93.918;-42.7;4.963;5228.1;"no"
47;"services";"divorced";"high.school";"no";"yes";"no";"telephone";"may";"tue";313;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
37;"services";"married";"high.school";"unknown";"yes";"yes";"telephone";"may";"thu";73;3;999;0;"nonexistent";1.1;93.994;-36.4;4.86;5191;"no"
31;"services";"married";"high.school";"no";"unknown";"unknown";"cellular";"may";"thu";582;2;999;1;"failure";-1.8;92.893;-46.2;1.327;5099.1;"no"
36;"technician";"married";"university.degree";"no";"yes";"yes";"telephone";"may";"tue";232;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
30;"technician";"single";"university.degree";"no";"yes";"no";"cellular";"sep";"fri";173;2;15;4;"failure";-1.1;94.199;-37.5;0.879;4963.6;"yes"
32;"entrepreneur";"married";"high.school";"no";"yes";"no";"cellular";"nov";"wed";100;1;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no"
54;"management";"married";"university.degree";"no";"yes";"no";"cellular";"jun";"wed";42;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.26;5076.2;"no"
51;"blue-collar";"married";"basic.9y";"no";"no";"yes";"telephone";"may";"fri";653;1;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"yes"
28;"technician";"divorced";"university.degree";"no";"yes";"no";"cellular";"jul";"wed";136;1;999;0;"nonexistent";1.4;93.918;-42.7;4.962;5228.1;"no"
54;"management";"married";"university.degree";"no";"no";"no";"cellular";"may";"mon";397;1;999;1;"failure";-1.8;92.893;-46.2;1.264;5099.1;"yes"
31;"admin.";"married";"high.school";"unknown";"yes";"no";"telephone";"may";"tue";101;13;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
57;"admin.";"married";"basic.6y";"no";"no";"no";"cellular";"may";"fri";259;1;999;1;"failure";-1.8;92.893;-46.2;1.259;5099.1;"no"
49;"unemployed";"married";"professional.course";"no";"no";"no";"cellular";"jun";"fri";317;1;999;0;"nonexistent";-2.9;92.963;-40.8;1.268;5076.2;"no"
45;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"telephone";"may";"wed";157;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
33;"management";"married";"university.degree";"unknown";"yes";"yes";"cellular";"apr";"tue";258;8;999;0;"nonexistent";-1.8;93.075;-47.1;1.423;5099.1;"no"
53;"services";"married";"university.degree";"no";"no";"no";"cellular";"may";"fri";136;1;999;1;"failure";-1.8;92.893;-46.2;1.25;5099.1;"no"
26;"student";"single";"basic.9y";"no";"yes";"no";"cellular";"mar";"mon";1447;2;999;0;"nonexistent";-1.8;92.843;-50;1.811;5099.1;"yes"
31;"technician";"married";"university.degree";"no";"no";"no";"cellular";"aug";"thu";56;2;999;0;"nonexistent";1.4;93.444;-36.1;4.964;5228.1;"no"
32;"blue-collar";"married";"basic.9y";"no";"yes";"no";"telephone";"may";"tue";999;3;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
29;"technician";"married";"high.school";"unknown";"no";"no";"cellular";"jul";"thu";321;1;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no"
31;"technician";"single";"high.school";"no";"no";"no";"cellular";"aug";"tue";191;1;999;0;"nonexistent";1.4;93.444;-36.1;4.966;5228.1;"no"
29;"student";"single";"unknown";"no";"no";"no";"telephone";"may";"mon";1143;4;999;0;"nonexistent";-1.8;92.893;-46.2;1.299;5099.1;"no"
49;"blue-collar";"married";"basic.9y";"unknown";"no";"yes";"telephone";"may";"wed";667;3;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
26;"admin.";"single";"university.degree";"no";"yes";"yes";"cellular";"may";"tue";15;7;999;0;"nonexistent";-1.8;92.893;-46.2;1.291;5099.1;"no"
43;"blue-collar";"married";"unknown";"unknown";"no";"yes";"telephone";"may";"wed";73;1;999;0;"nonexistent";1.1;93.994;-36.4;4.859;5191;"no"
56;"retired";"married";"basic.9y";"no";"yes";"yes";"telephone";"may";"wed";71;4;999;0;"nonexistent";1.1;93.994;-36.4;4.856;5191;"no"
29;"admin.";"single";"university.degree";"no";"yes";"no";"cellular";"aug";"thu";228;3;999;0;"nonexistent";1.4;93.444;-36.1;4.968;5228.1;"no"
31;"technician";"married";"basic.9y";"no";"yes";"no";"cellular";"nov";"wed";17;5;999;1;"failure";-0.1;93.2;-42;4.12;5195.8;"no"
50;"blue-collar";"married";"basic.9y";"unknown";"yes";"no";"cellular";"jul";"tue";215;3;999;0;"nonexistent";1.4;93.918;-42.7;4.961;5228.1;"no"
37;"technician";"married";"professional.course";"no";"yes";"no";"telephone";"jul";"tue";242;6;999;0;"nonexistent";1.4;93.918;-42.7;4.955;5228.1;"no"
42;"blue-collar";"married";"basic.4y";"unknown";"yes";"yes";"telephone";"may";"mon";105;1;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"
30;"services";"married";"basic.9y";"unknown";"yes";"no";"cellular";"nov";"mon";209;1;999;0;"nonexistent";-0.1;93.2;-42;4.191;5195.8;"no"
25;"blue-collar";"married";"basic.6y";"unknown";"yes";"no";"cellular";"jul";"thu";59;3;999;0;"nonexistent";1.4;93.918;-42.7;4.958;5228.1;"no"
35;"self-employed";"single";"university.degree";"no";"no";"yes";"cellular";"nov";"wed";197;1;3;1;"success";-0.1;93.2;-42;4.12;5195.8;"no"
37;"entrepreneur";"married";"high.school";"unknown";"no";"no";"cellular";"nov";"thu";68;1;999;1;"failure";-0.1;93.2;-42;4.076;5195.8;"no"
30;"entrepreneur";"married";"high.school";"no";"yes";"no";"cellular";"nov";"wed";164;3;999;0;"nonexistent";-0.1;93.2;-42;4.12;5195.8;"no"
33;"blue-collar";"married";"basic.6y";"unknown";"yes";"yes";"telephone";"may";"fri";1132;2;999;0;"nonexistent";1.1;93.994;-36.4;4.855;5191;"yes"
36;"technician";"married";"university.degree";"no";"no";"no";"telephone";"may";"wed";146;2;999;0;"nonexistent";1.1;93.994;-36.4;4.857;5191;"no"