-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5. credit_risk_classification.csv
We can't make this file beautiful and searchable because it's too large.
6001 lines (6001 loc) · 919 KB
/
5. credit_risk_classification.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
,checking_status,duration,credit_history,purpose,credit_amount,savings_status,employment,installment_commitment,personal_status,other_parties,residence_since,property_magnitude,age,other_payment_plans,housing,existing_credits,job,num_dependants,own_telephone,foreign_worker,class
0,<0,6,critical/order existing credit,radio/tv,1169,no known savings,>=7,4,male single,none,4,real estate,67,stores,own,2,skilled,1,yes,yes,good
1,0<=X<200,48,existing paid,radio/tv,5951,<100,1<=X<4,2,female div/dep/mar,none,2,real estate,22,stores,own,1,skilled,1,none,yes,bad
2,no checking,12,critical/order existing credit,education,2096,<100,4<=X<7,2,male single,none,3,real estate,49,stores,own,1,unskilled resident,2,none,yes,good
3,<0,42,existing paid,furniture/equipment,7882,<100,4<=X<7,2,male single,guarantor,4,life insurance,45,stores,for free,1,skilled,2,none,yes,good
4,<0,24,delayed previously,new car,4870,<100,1<=X<4,3,male single,none,4,no known property,53,stores,for free,2,skilled,2,none,yes,bad
5,no checking,36,existing paid,education,9055,no known savings,1<=X<4,2,male single,none,4,no known property,35,stores,for free,1,unskilled resident,2,yes,yes,good
6,no checking,24,existing paid,furniture/equipment,2835,500<=X<10000,>=7,3,male single,none,4,life insurance,53,stores,own,1,skilled,1,none,yes,good
7,0<=X<200,36,existing paid,used car,6948,<100,1<=X<4,2,male single,none,2,car,35,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,good
8,no checking,12,existing paid,radio/tv,3059,>=1000,4<=X<7,2,male div/sep,none,4,real estate,61,stores,own,1,unskilled resident,1,none,yes,good
9,0<=X<200,30,critical/order existing credit,new car,5234,<100,unemployed,4,male mar/wid,none,2,car,28,stores,own,2,high qualif/self emp/mgmt,1,none,yes,bad
10,0<=X<200,12,existing paid,new car,1295,<100,<1,3,female div/dep/mar,none,1,car,25,stores,rent,1,skilled,1,none,yes,bad
11,<0,48,existing paid,business,4308,<100,<1,3,female div/dep/mar,none,4,life insurance,24,stores,rent,1,skilled,1,none,yes,bad
12,0<=X<200,12,existing paid,radio/tv,1567,<100,1<=X<4,1,female div/dep/mar,none,1,car,22,stores,own,1,skilled,1,yes,yes,good
13,<0,24,critical/order existing credit,new car,1199,<100,>=7,4,male single,none,4,car,60,stores,own,2,unskilled resident,1,none,yes,bad
14,<0,15,existing paid,new car,1403,<100,1<=X<4,2,female div/dep/mar,none,4,car,28,stores,rent,1,skilled,1,none,yes,good
15,<0,24,existing paid,radio/tv,1282,100<=X<500,1<=X<4,4,female div/dep/mar,none,2,car,32,stores,own,1,unskilled resident,1,none,yes,bad
16,no checking,24,critical/order existing credit,radio/tv,2424,no known savings,>=7,4,male single,none,4,life insurance,53,stores,own,2,skilled,1,none,yes,good
17,<0,30,no credits/all paid,business,8072,no known savings,<1,2,male single,none,3,car,25,bank,own,3,skilled,1,none,yes,good
18,0<=X<200,24,existing paid,used car,12579,<100,>=7,4,female div/dep/mar,none,2,no known property,44,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,bad
19,no checking,24,existing paid,radio/tv,3430,500<=X<10000,>=7,3,male single,none,2,car,31,stores,own,1,skilled,2,yes,yes,good
20,no checking,9,critical/order existing credit,new car,2134,<100,1<=X<4,4,male single,none,4,car,48,stores,own,3,skilled,1,yes,yes,good
21,<0,6,existing paid,radio/tv,2647,500<=X<10000,1<=X<4,2,male single,none,3,real estate,44,stores,rent,1,skilled,2,none,yes,good
22,<0,10,critical/order existing credit,new car,2241,<100,<1,1,male single,none,3,real estate,48,stores,rent,2,unskilled resident,2,none,no,good
23,0<=X<200,12,critical/order existing credit,used car,1804,100<=X<500,<1,3,male single,none,4,life insurance,44,stores,own,1,skilled,1,none,yes,good
24,no checking,10,critical/order existing credit,furniture/equipment,2069,no known savings,1<=X<4,2,male mar/wid,none,1,car,26,stores,own,2,skilled,1,none,no,good
25,<0,6,existing paid,furniture/equipment,1374,<100,1<=X<4,1,male single,none,2,real estate,36,bank,own,1,unskilled resident,1,yes,yes,good
26,no checking,6,no credits/all paid,radio/tv,426,<100,>=7,4,male mar/wid,none,4,car,39,stores,own,1,unskilled resident,1,none,yes,good
27,>=200,12,all paid,radio/tv,409,>=1000,1<=X<4,3,female div/dep/mar,none,3,real estate,42,stores,rent,2,skilled,1,none,yes,good
28,0<=X<200,7,existing paid,radio/tv,2415,<100,1<=X<4,3,male single,guarantor,2,real estate,34,stores,own,1,skilled,1,none,yes,good
29,<0,60,delayed previously,business,6836,<100,>=7,3,male single,none,4,no known property,63,stores,own,2,skilled,1,yes,yes,bad
30,0<=X<200,18,existing paid,business,1913,>=1000,<1,3,male mar/wid,none,3,real estate,36,bank,own,1,skilled,1,yes,yes,good
31,<0,24,existing paid,furniture/equipment,4020,<100,1<=X<4,2,male single,none,2,car,27,,own,1,skilled,1,none,yes,good
32,0<=X<200,18,existing paid,new car,5866,100<=X<500,1<=X<4,2,male single,none,2,car,30,stores,own,2,skilled,1,yes,yes,good
33,no checking,12,critical/order existing credit,business,1264,no known savings,>=7,4,male single,none,4,no known property,57,stores,rent,1,unskilled resident,1,none,yes,good
34,>=200,12,existing paid,furniture/equipment,1474,<100,<1,4,female div/dep/mar,none,1,life insurance,33,bank,own,1,high qualif/self emp/mgmt,1,yes,yes,good
35,0<=X<200,45,critical/order existing credit,radio/tv,4746,<100,<1,4,male single,none,2,life insurance,25,stores,own,2,unskilled resident,1,none,yes,bad
36,no checking,48,critical/order existing credit,education,6110,<100,1<=X<4,1,male single,none,3,no known property,31,bank,for free,1,skilled,1,yes,yes,good
37,>=200,18,existing paid,radio/tv,2100,<100,1<=X<4,4,male single,co applicant,2,real estate,37,,own,1,skilled,1,none,yes,bad
38,>=200,10,existing paid,domestic appliance,1225,<100,1<=X<4,2,male single,none,2,car,37,stores,own,1,skilled,1,yes,yes,good
39,0<=X<200,9,existing paid,radio/tv,458,<100,1<=X<4,4,male single,none,3,real estate,24,stores,own,1,skilled,1,none,yes,good
40,no checking,30,existing paid,radio/tv,2333,500<=X<10000,>=7,4,male single,none,2,car,30,bank,own,1,high qualif/self emp/mgmt,1,none,yes,good
41,0<=X<200,12,existing paid,radio/tv,1158,500<=X<10000,1<=X<4,3,male div/sep,none,1,car,26,stores,own,1,skilled,1,yes,yes,good
42,0<=X<200,18,delayed previously,repairs,6204,<100,1<=X<4,2,male single,none,4,real estate,44,stores,own,1,unskilled resident,2,yes,yes,good
43,<0,30,critical/order existing credit,used car,6187,100<=X<500,4<=X<7,1,male mar/wid,none,4,car,24,stores,rent,2,skilled,1,none,yes,good
44,<0,48,critical/order existing credit,used car,6143,<100,>=7,4,female div/dep/mar,none,4,no known property,58,,for free,2,unskilled resident,1,none,yes,bad
45,no checking,11,critical/order existing credit,new car,1393,<100,<1,4,female div/dep/mar,none,4,car,35,stores,own,2,high qualif/self emp/mgmt,1,none,yes,good
46,no checking,36,existing paid,radio/tv,2299,500<=X<10000,>=7,4,male single,none,4,car,39,stores,own,1,skilled,1,none,yes,good
47,<0,6,existing paid,used car,1352,500<=X<10000,unemployed,1,female div/dep/mar,none,2,life insurance,23,stores,rent,1,unemp/unskilled non res,1,yes,yes,good
48,no checking,11,critical/order existing credit,new car,7228,<100,1<=X<4,1,male single,none,4,life insurance,39,stores,own,2,unskilled resident,1,none,yes,good
49,no checking,12,existing paid,radio/tv,2073,100<=X<500,1<=X<4,4,female div/dep/mar,co applicant,2,real estate,28,stores,own,1,skilled,1,none,yes,good
50,0<=X<200,24,delayed previously,furniture/equipment,2333,no known savings,<1,4,male single,none,2,life insurance,29,bank,own,1,unskilled resident,1,none,yes,good
51,0<=X<200,27,delayed previously,used car,5965,<100,>=7,1,male single,none,2,car,30,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,good
52,no checking,12,existing paid,radio/tv,1262,<100,1<=X<4,3,male single,none,2,car,25,stores,own,1,skilled,1,none,yes,good
53,no checking,18,existing paid,used car,3378,no known savings,1<=X<4,2,male single,none,1,life insurance,31,stores,own,1,skilled,1,yes,yes,good
54,0<=X<200,36,delayed previously,new car,2225,<100,>=7,4,male single,none,4,no known property,57,bank,for free,2,skilled,1,yes,yes,bad
55,no checking,6,all paid,new car,783,no known savings,1<=X<4,1,male single,guarantor,2,real estate,26,,own,1,unskilled resident,2,none,yes,good
56,0<=X<200,12,existing paid,radio/tv,6468,no known savings,unemployed,2,male single,none,1,no known property,52,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
57,no checking,36,critical/order existing credit,radio/tv,9566,<100,1<=X<4,2,female div/dep/mar,none,2,car,31,,own,2,skilled,1,none,yes,good
58,>=200,18,existing paid,new car,1961,<100,>=7,3,female div/dep/mar,none,2,car,23,stores,own,1,high qualif/self emp/mgmt,1,none,yes,good
59,<0,36,critical/order existing credit,furniture/equipment,6229,<100,<1,4,female div/dep/mar,co applicant,4,no known property,23,stores,rent,2,unskilled resident,1,yes,yes,bad
60,0<=X<200,9,existing paid,business,1391,<100,1<=X<4,2,male mar/wid,none,1,real estate,27,bank,own,1,skilled,1,yes,yes,good
61,0<=X<200,15,critical/order existing credit,radio/tv,1537,no known savings,>=7,4,male single,guarantor,4,real estate,50,stores,own,2,skilled,1,yes,yes,good
62,0<=X<200,36,no credits/all paid,business,1953,<100,>=7,4,male single,none,4,no known property,61,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,bad
63,0<=X<200,48,no credits/all paid,business,14421,<100,1<=X<4,2,male single,none,2,car,25,stores,own,1,skilled,1,yes,yes,bad
64,no checking,24,existing paid,radio/tv,3181,<100,<1,4,female div/dep/mar,none,4,life insurance,26,stores,own,1,skilled,1,yes,yes,good
65,no checking,27,existing paid,repairs,5190,no known savings,>=7,4,male single,none,4,life insurance,48,stores,own,4,skilled,2,yes,yes,good
66,no checking,12,existing paid,radio/tv,2171,<100,<1,2,female div/dep/mar,none,2,car,29,bank,own,1,skilled,1,none,yes,good
67,0<=X<200,12,existing paid,new car,1007,>=1000,1<=X<4,4,male mar/wid,none,1,real estate,22,stores,own,1,skilled,1,none,yes,good
68,no checking,36,existing paid,education,1819,<100,1<=X<4,4,male single,none,4,no known property,37,,for free,1,skilled,1,yes,yes,bad
69,no checking,36,existing paid,radio/tv,2394,no known savings,1<=X<4,4,female div/dep/mar,none,4,car,25,stores,own,1,skilled,1,none,yes,good
70,no checking,36,existing paid,used car,8133,<100,1<=X<4,1,female div/dep/mar,none,2,life insurance,30,bank,own,1,skilled,1,none,yes,good
71,no checking,7,critical/order existing credit,radio/tv,730,no known savings,>=7,4,male single,none,2,life insurance,46,stores,rent,2,unskilled resident,1,yes,yes,good
72,<0,8,critical/order existing credit,other,1164,<100,>=7,3,male single,none,4,no known property,51,bank,for free,2,high qualif/self emp/mgmt,2,yes,yes,good
73,0<=X<200,42,critical/order existing credit,business,5954,<100,4<=X<7,2,female div/dep/mar,none,1,real estate,41,bank,own,2,unskilled resident,1,none,yes,good
74,<0,36,existing paid,education,1977,no known savings,>=7,4,male single,none,4,no known property,40,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
75,<0,12,critical/order existing credit,used car,1526,<100,>=7,4,male single,none,4,no known property,66,stores,for free,2,high qualif/self emp/mgmt,1,none,yes,good
76,<0,42,existing paid,radio/tv,3965,<100,<1,4,male single,none,3,car,34,stores,own,1,skilled,1,none,yes,bad
77,0<=X<200,11,delayed previously,radio/tv,4771,<100,4<=X<7,2,male single,none,4,life insurance,51,stores,own,1,skilled,1,none,yes,good
78,no checking,54,no credits/all paid,used car,9436,no known savings,1<=X<4,2,male single,none,2,life insurance,39,stores,own,1,unskilled resident,2,none,yes,good
79,0<=X<200,30,existing paid,furniture/equipment,3832,<100,<1,2,male mar/wid,none,1,life insurance,22,stores,own,1,skilled,1,none,yes,good
80,no checking,24,existing paid,radio/tv,5943,no known savings,<1,1,female div/dep/mar,none,1,car,44,stores,own,2,skilled,1,yes,yes,bad
81,no checking,15,existing paid,radio/tv,1213,500<=X<10000,>=7,4,male single,none,3,life insurance,47,,own,1,skilled,1,yes,yes,good
82,no checking,18,existing paid,business,1568,100<=X<500,1<=X<4,3,female div/dep/mar,none,4,life insurance,24,stores,rent,1,unskilled resident,1,none,yes,good
83,<0,24,existing paid,other,1755,<100,>=7,4,female div/dep/mar,guarantor,4,real estate,58,stores,own,1,unskilled resident,1,yes,yes,good
84,<0,10,existing paid,radio/tv,2315,<100,>=7,3,male single,none,4,real estate,52,stores,own,1,unskilled resident,1,none,yes,good
85,no checking,12,critical/order existing credit,business,1412,<100,1<=X<4,4,female div/dep/mar,guarantor,2,real estate,29,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,good
86,0<=X<200,18,critical/order existing credit,furniture/equipment,1295,<100,<1,4,female div/dep/mar,none,1,life insurance,27,stores,own,2,skilled,1,none,yes,good
87,0<=X<200,36,existing paid,education,12612,100<=X<500,1<=X<4,1,male single,none,4,no known property,47,stores,for free,1,skilled,2,yes,yes,bad
88,<0,18,existing paid,new car,2249,100<=X<500,4<=X<7,4,male single,none,3,car,30,stores,own,1,high qualif/self emp/mgmt,2,yes,yes,good
89,<0,12,no credits/all paid,repairs,1108,<100,4<=X<7,4,male single,none,3,real estate,28,stores,own,2,skilled,1,none,yes,bad
90,no checking,12,critical/order existing credit,radio/tv,618,<100,>=7,4,male single,none,4,real estate,56,stores,own,1,skilled,1,none,yes,good
91,<0,12,critical/order existing credit,used car,1409,<100,>=7,4,male single,none,3,real estate,54,stores,own,1,skilled,1,none,yes,good
92,no checking,12,critical/order existing credit,radio/tv,797,no known savings,>=7,4,female div/dep/mar,none,3,life insurance,33,bank,own,1,unskilled resident,2,none,yes,bad
93,>=200,24,critical/order existing credit,furniture/equipment,3617,no known savings,>=7,4,male single,co applicant,4,no known property,20,stores,rent,2,skilled,1,none,yes,good
94,0<=X<200,12,existing paid,new car,1318,>=1000,>=7,4,male single,none,4,real estate,54,stores,own,1,skilled,1,yes,yes,good
95,0<=X<200,54,no credits/all paid,business,15945,<100,<1,3,male single,none,4,no known property,58,stores,rent,1,skilled,1,yes,yes,bad
96,no checking,12,critical/order existing credit,education,2012,no known savings,4<=X<7,4,female div/dep/mar,none,2,car,61,stores,own,1,skilled,1,none,yes,good
97,0<=X<200,18,existing paid,business,2622,100<=X<500,1<=X<4,4,male single,none,4,car,34,stores,own,1,skilled,1,none,yes,good
98,0<=X<200,36,critical/order existing credit,radio/tv,2337,<100,>=7,4,male single,none,4,real estate,36,stores,own,1,skilled,1,none,yes,good
99,0<=X<200,20,delayed previously,used car,7057,no known savings,4<=X<7,3,male single,none,4,life insurance,36,bank,rent,2,high qualif/self emp/mgmt,2,yes,yes,good
100,no checking,24,existing paid,new car,1469,100<=X<500,>=7,4,male mar/wid,none,4,real estate,41,stores,rent,1,unskilled resident,1,none,yes,good
101,0<=X<200,36,existing paid,radio/tv,2323,<100,4<=X<7,4,male single,none,4,car,24,stores,rent,1,skilled,1,none,yes,good
102,no checking,6,delayed previously,radio/tv,932,<100,1<=X<4,3,female div/dep/mar,none,2,real estate,24,stores,own,1,skilled,1,none,yes,good
103,0<=X<200,9,critical/order existing credit,furniture/equipment,1919,<100,4<=X<7,4,male single,none,3,car,35,stores,rent,1,skilled,1,yes,yes,good
104,no checking,12,existing paid,used car,2445,no known savings,<1,2,male mar/wid,none,4,car,26,stores,rent,1,skilled,1,yes,yes,good
105,0<=X<200,24,critical/order existing credit,other,11938,<100,1<=X<4,2,male single,co applicant,3,car,39,stores,own,2,high qualif/self emp/mgmt,2,yes,yes,bad
106,no checking,18,all paid,new car,6458,<100,>=7,2,male single,none,4,no known property,39,bank,own,2,high qualif/self emp/mgmt,2,yes,yes,bad
107,0<=X<200,12,existing paid,new car,6078,<100,4<=X<7,2,male single,none,2,car,32,stores,own,1,skilled,1,none,yes,good
108,<0,24,existing paid,furniture/equipment,7721,no known savings,<1,1,female div/dep/mar,none,2,life insurance,30,stores,own,1,skilled,1,yes,no,good
109,0<=X<200,14,existing paid,business,1410,500<=X<10000,>=7,1,male mar/wid,none,2,real estate,35,stores,own,1,skilled,1,yes,yes,good
110,0<=X<200,6,delayed previously,business,1449,100<=X<500,>=7,1,male div/sep,none,2,car,31,bank,own,2,skilled,2,none,yes,good
111,>=200,15,existing paid,education,392,<100,<1,4,female div/dep/mar,none,4,life insurance,23,stores,rent,1,skilled,1,yes,yes,good
112,0<=X<200,18,existing paid,new car,6260,<100,4<=X<7,3,male single,none,3,real estate,28,stores,rent,1,unskilled resident,1,none,yes,good
113,no checking,36,critical/order existing credit,new car,7855,<100,1<=X<4,4,female div/dep/mar,none,2,real estate,25,,own,2,skilled,1,yes,yes,bad
114,<0,12,existing paid,radio/tv,1680,500<=X<10000,>=7,3,male mar/wid,none,1,real estate,35,stores,own,1,skilled,1,none,yes,good
115,no checking,48,critical/order existing credit,radio/tv,3578,no known savings,>=7,4,male single,none,1,real estate,47,stores,own,1,skilled,1,yes,yes,good
116,<0,42,existing paid,radio/tv,7174,no known savings,4<=X<7,4,female div/dep/mar,none,3,car,30,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
117,<0,10,critical/order existing credit,furniture/equipment,2132,no known savings,<1,2,female div/dep/mar,co applicant,3,real estate,27,stores,rent,2,skilled,1,none,no,good
118,<0,33,critical/order existing credit,furniture/equipment,4281,500<=X<10000,1<=X<4,1,female div/dep/mar,none,4,car,23,stores,own,2,skilled,1,none,yes,bad
119,0<=X<200,12,critical/order existing credit,new car,2366,500<=X<10000,4<=X<7,3,male div/sep,none,3,car,36,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
120,<0,21,existing paid,radio/tv,1835,<100,1<=X<4,3,female div/dep/mar,none,2,real estate,25,stores,own,2,skilled,1,yes,yes,bad
121,no checking,24,critical/order existing credit,used car,3868,<100,>=7,4,female div/dep/mar,none,2,car,41,stores,rent,2,high qualif/self emp/mgmt,1,yes,yes,good
122,no checking,12,existing paid,furniture/equipment,1768,<100,1<=X<4,3,male single,none,2,real estate,24,stores,rent,1,unskilled resident,1,none,yes,good
123,>=200,10,critical/order existing credit,new car,781,<100,>=7,4,male single,none,4,no known property,63,stores,for free,2,skilled,1,yes,yes,good
124,0<=X<200,18,existing paid,furniture/equipment,1924,no known savings,<1,4,female div/dep/mar,none,3,real estate,27,stores,rent,1,skilled,1,none,yes,bad
125,<0,12,critical/order existing credit,new car,2121,<100,1<=X<4,4,male single,none,2,life insurance,30,stores,own,2,skilled,1,none,yes,good
126,<0,12,existing paid,radio/tv,701,<100,1<=X<4,4,male mar/wid,none,2,real estate,40,stores,own,1,unskilled resident,1,none,yes,good
127,0<=X<200,12,existing paid,repairs,639,<100,1<=X<4,4,male single,none,2,car,30,stores,own,1,skilled,1,none,yes,bad
128,0<=X<200,12,critical/order existing credit,used car,1860,<100,unemployed,4,male single,none,2,car,34,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,good
129,<0,12,critical/order existing credit,new car,3499,<100,1<=X<4,3,female div/dep/mar,co applicant,2,real estate,29,stores,own,2,skilled,1,none,yes,bad
130,0<=X<200,48,existing paid,new car,8487,no known savings,4<=X<7,1,female div/dep/mar,none,2,car,24,stores,own,1,skilled,1,none,yes,good
131,<0,36,delayed previously,education,6887,<100,1<=X<4,4,male single,none,3,life insurance,29,,own,1,skilled,1,yes,yes,bad
132,no checking,15,existing paid,furniture/equipment,2708,<100,<1,2,male single,none,3,life insurance,27,bank,own,2,unskilled resident,1,none,yes,good
133,no checking,18,existing paid,furniture/equipment,1984,<100,1<=X<4,4,male single,none,4,no known property,47,bank,for free,2,skilled,1,none,yes,good
134,no checking,60,existing paid,radio/tv,10144,100<=X<500,4<=X<7,2,female div/dep/mar,none,4,real estate,21,stores,own,1,skilled,1,yes,yes,good
135,no checking,12,critical/order existing credit,radio/tv,1240,no known savings,>=7,4,female div/dep/mar,none,2,real estate,38,stores,own,2,skilled,1,yes,yes,good
136,no checking,27,delayed previously,used car,8613,>=1000,1<=X<4,2,male single,none,2,car,27,stores,own,2,skilled,1,none,yes,good
137,0<=X<200,12,existing paid,radio/tv,766,500<=X<10000,1<=X<4,4,male single,none,3,real estate,66,stores,own,1,unskilled resident,1,none,yes,bad
138,0<=X<200,15,critical/order existing credit,radio/tv,2728,no known savings,4<=X<7,4,male single,guarantor,2,real estate,35,bank,own,3,skilled,1,yes,yes,good
139,>=200,12,existing paid,radio/tv,1881,<100,1<=X<4,2,female div/dep/mar,none,2,car,44,stores,rent,1,unskilled resident,1,yes,yes,good
140,>=200,6,existing paid,new car,709,>=1000,<1,2,male mar/wid,none,2,real estate,27,stores,own,1,unemp/unskilled non res,1,none,no,good
141,0<=X<200,36,existing paid,radio/tv,4795,<100,<1,4,female div/dep/mar,none,1,no known property,30,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
142,<0,27,existing paid,radio/tv,3416,<100,1<=X<4,3,male single,none,2,car,27,stores,own,1,high qualif/self emp/mgmt,1,none,yes,good
143,<0,18,existing paid,furniture/equipment,2462,<100,1<=X<4,2,male single,none,2,car,22,stores,own,1,skilled,1,none,yes,bad
144,no checking,21,critical/order existing credit,furniture/equipment,2288,<100,<1,4,female div/dep/mar,none,4,life insurance,23,stores,own,1,skilled,1,yes,yes,good
145,0<=X<200,48,all paid,business,3566,100<=X<500,4<=X<7,4,male single,none,2,car,30,stores,own,1,skilled,1,none,yes,good
146,<0,6,critical/order existing credit,new car,860,<100,>=7,1,female div/dep/mar,none,4,no known property,39,stores,own,2,skilled,1,yes,yes,good
147,no checking,12,critical/order existing credit,new car,682,100<=X<500,4<=X<7,4,female div/dep/mar,none,3,car,51,stores,own,2,skilled,1,yes,yes,good
148,<0,36,critical/order existing credit,furniture/equipment,5371,<100,1<=X<4,3,male single,guarantor,2,life insurance,28,stores,own,2,skilled,1,none,yes,good
149,no checking,18,critical/order existing credit,radio/tv,1582,>=1000,>=7,4,male single,none,4,car,46,stores,own,2,skilled,1,none,yes,good
150,no checking,6,existing paid,radio/tv,1346,100<=X<500,>=7,2,male single,none,4,no known property,42,bank,for free,1,skilled,2,yes,yes,good
151,no checking,10,existing paid,radio/tv,1924,<100,1<=X<4,1,male single,none,4,life insurance,38,stores,own,1,skilled,1,yes,no,good
152,>=200,36,existing paid,radio/tv,5848,<100,1<=X<4,4,male single,none,1,car,24,stores,own,1,skilled,1,none,yes,good
153,0<=X<200,24,critical/order existing credit,used car,7758,>=1000,>=7,2,female div/dep/mar,none,4,no known property,29,stores,rent,1,skilled,1,none,yes,good
154,0<=X<200,24,delayed previously,business,6967,100<=X<500,4<=X<7,4,male single,none,4,car,36,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,good
155,<0,12,existing paid,furniture/equipment,1282,<100,1<=X<4,2,female div/dep/mar,none,4,car,20,stores,rent,1,skilled,1,none,yes,bad
156,<0,9,critical/order existing credit,repairs,1288,100<=X<500,>=7,3,male single,guarantor,4,real estate,48,stores,own,2,skilled,2,none,no,good
157,<0,12,all paid,retraining,339,<100,>=7,4,male mar/wid,none,1,car,45,bank,own,1,unskilled resident,1,none,yes,good
158,0<=X<200,24,existing paid,new car,3512,100<=X<500,4<=X<7,2,male single,none,3,car,38,bank,own,2,skilled,1,yes,yes,good
159,no checking,6,critical/order existing credit,radio/tv,1898,no known savings,1<=X<4,1,male single,none,2,real estate,34,stores,own,2,unskilled resident,2,none,yes,good
160,no checking,24,critical/order existing credit,radio/tv,2872,100<=X<500,>=7,3,male single,none,4,real estate,36,stores,own,1,skilled,2,yes,yes,good
161,no checking,18,critical/order existing credit,new car,1055,<100,<1,4,female div/dep/mar,none,1,life insurance,30,stores,own,2,skilled,1,none,yes,good
162,no checking,15,existing paid,domestic appliance,1262,500<=X<10000,4<=X<7,4,male single,none,3,life insurance,36,stores,own,2,skilled,1,yes,yes,good
163,0<=X<200,10,existing paid,new car,7308,<100,unemployed,2,male single,none,4,no known property,70,bank,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
164,no checking,36,existing paid,new car,909,500<=X<10000,>=7,4,male single,none,4,life insurance,36,stores,own,1,skilled,1,none,yes,good
165,no checking,6,existing paid,furniture/equipment,2978,500<=X<10000,1<=X<4,1,male single,none,2,car,32,stores,own,1,skilled,1,yes,yes,good
166,<0,18,existing paid,furniture/equipment,1131,<100,unemployed,4,female div/dep/mar,none,2,car,33,stores,own,1,skilled,1,none,yes,bad
167,0<=X<200,11,existing paid,furniture/equipment,1577,>=1000,<1,4,female div/dep/mar,none,1,real estate,20,stores,own,1,skilled,1,none,yes,good
168,no checking,24,existing paid,furniture/equipment,3972,<100,4<=X<7,2,female div/dep/mar,none,4,life insurance,25,stores,rent,1,skilled,1,yes,yes,good
169,0<=X<200,24,critical/order existing credit,business,1935,<100,>=7,4,male div/sep,none,4,real estate,31,stores,own,2,skilled,1,yes,yes,bad
170,<0,15,no credits/all paid,new car,950,<100,>=7,4,male single,none,3,car,33,stores,rent,2,skilled,2,none,yes,bad
171,no checking,12,existing paid,furniture/equipment,763,<100,1<=X<4,4,female div/dep/mar,none,1,real estate,26,stores,own,1,skilled,1,yes,yes,good
172,0<=X<200,24,delayed previously,furniture/equipment,2064,<100,unemployed,3,female div/dep/mar,none,2,life insurance,34,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
173,0<=X<200,8,existing paid,radio/tv,1414,<100,1<=X<4,4,male single,guarantor,2,real estate,33,stores,own,1,skilled,1,none,no,good
174,<0,21,delayed previously,education,3414,<100,<1,2,male single,none,1,life insurance,26,stores,own,2,skilled,1,none,yes,bad
175,no checking,30,all paid,used car,7485,no known savings,unemployed,4,female div/dep/mar,none,1,real estate,53,bank,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
176,<0,12,existing paid,furniture/equipment,2577,<100,1<=X<4,2,male div/sep,none,1,car,42,stores,own,1,skilled,1,none,yes,good
177,<0,6,critical/order existing credit,radio/tv,338,500<=X<10000,>=7,4,male single,none,4,car,52,stores,own,2,skilled,1,none,yes,good
178,no checking,12,existing paid,radio/tv,1963,<100,4<=X<7,4,male single,none,2,car,31,stores,rent,2,high qualif/self emp/mgmt,2,yes,yes,good
179,<0,21,critical/order existing credit,new car,571,<100,>=7,4,male single,none,4,real estate,65,stores,own,2,skilled,1,none,yes,good
180,no checking,36,delayed previously,business,9572,<100,<1,1,male div/sep,none,1,car,28,stores,own,2,skilled,1,none,yes,bad
181,0<=X<200,36,delayed previously,business,4455,<100,1<=X<4,2,male div/sep,none,2,real estate,30,,own,2,high qualif/self emp/mgmt,1,yes,yes,bad
182,<0,21,all paid,new car,1647,no known savings,1<=X<4,4,male single,none,2,life insurance,40,stores,own,2,unskilled resident,2,none,yes,bad
183,no checking,24,critical/order existing credit,furniture/equipment,3777,>=1000,1<=X<4,4,male single,none,4,real estate,50,stores,own,1,skilled,1,yes,yes,good
184,0<=X<200,18,critical/order existing credit,new car,884,<100,>=7,4,male single,none,4,car,36,bank,own,1,skilled,2,yes,yes,bad
185,no checking,15,critical/order existing credit,radio/tv,1360,<100,1<=X<4,4,male single,none,2,life insurance,31,stores,own,2,skilled,1,none,yes,good
186,0<=X<200,9,all paid,used car,5129,<100,>=7,2,female div/dep/mar,none,4,no known property,74,bank,for free,1,high qualif/self emp/mgmt,2,yes,yes,bad
187,0<=X<200,16,critical/order existing credit,new car,1175,<100,unemployed,2,male single,none,3,car,68,stores,for free,3,unemp/unskilled non res,1,yes,yes,good
188,<0,12,existing paid,radio/tv,674,100<=X<500,4<=X<7,4,male mar/wid,none,1,life insurance,20,stores,own,1,skilled,1,none,yes,bad
189,0<=X<200,18,no credits/all paid,furniture/equipment,3244,<100,1<=X<4,1,female div/dep/mar,none,4,car,33,bank,own,2,skilled,1,yes,yes,good
190,no checking,24,existing paid,business,4591,>=1000,1<=X<4,2,male single,none,3,life insurance,54,stores,own,3,high qualif/self emp/mgmt,1,yes,yes,bad
191,0<=X<200,48,no credits/all paid,business,3844,100<=X<500,4<=X<7,4,male single,none,4,no known property,34,stores,for free,1,unskilled resident,2,none,yes,bad
192,0<=X<200,27,existing paid,business,3915,<100,1<=X<4,4,male single,none,2,car,36,stores,own,1,skilled,2,yes,yes,bad
193,no checking,6,existing paid,radio/tv,2108,<100,4<=X<7,2,male mar/wid,none,2,real estate,29,stores,rent,1,skilled,1,none,yes,good
194,0<=X<200,45,existing paid,radio/tv,3031,100<=X<500,1<=X<4,4,male single,guarantor,4,life insurance,21,stores,rent,1,skilled,1,none,yes,bad
195,0<=X<200,9,critical/order existing credit,education,1501,<100,>=7,2,female div/dep/mar,none,3,car,34,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,bad
196,no checking,6,critical/order existing credit,radio/tv,1382,<100,1<=X<4,1,female div/dep/mar,none,1,car,28,stores,own,2,skilled,1,yes,yes,good
197,0<=X<200,12,existing paid,furniture/equipment,951,100<=X<500,<1,4,female div/dep/mar,none,4,car,27,bank,rent,4,skilled,1,none,yes,bad
198,0<=X<200,24,existing paid,used car,2760,no known savings,>=7,4,male single,none,4,no known property,36,bank,for free,1,skilled,1,yes,yes,good
199,0<=X<200,18,delayed previously,furniture/equipment,4297,<100,>=7,4,male div/sep,none,3,no known property,40,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
200,no checking,9,critical/order existing credit,education,936,500<=X<10000,>=7,4,male single,none,2,car,52,stores,own,2,skilled,1,yes,yes,good
201,<0,12,existing paid,new car,1168,<100,1<=X<4,4,male mar/wid,none,3,real estate,27,stores,own,1,unskilled resident,1,none,yes,good
202,no checking,27,delayed previously,business,5117,<100,4<=X<7,3,male single,none,4,car,26,stores,own,2,skilled,1,none,yes,good
203,<0,12,existing paid,retraining,902,<100,4<=X<7,4,male mar/wid,none,4,life insurance,21,stores,rent,1,skilled,1,none,yes,bad
204,no checking,12,critical/order existing credit,new car,1495,<100,>=7,4,male single,none,1,real estate,38,stores,own,2,unskilled resident,2,none,yes,good
205,<0,30,critical/order existing credit,used car,10623,<100,>=7,3,male single,none,4,no known property,38,stores,for free,3,high qualif/self emp/mgmt,2,yes,yes,good
206,no checking,12,critical/order existing credit,furniture/equipment,1935,<100,>=7,4,male single,none,4,real estate,43,stores,own,3,skilled,1,yes,yes,good
207,0<=X<200,12,critical/order existing credit,domestic appliance,1424,<100,4<=X<7,4,male single,none,3,life insurance,26,stores,own,1,skilled,1,none,yes,good
208,<0,24,existing paid,business,6568,<100,1<=X<4,2,male mar/wid,none,2,car,21,,own,1,unskilled resident,1,none,yes,good
209,no checking,12,existing paid,used car,1413,>=1000,4<=X<7,3,male single,none,2,life insurance,55,stores,own,1,skilled,1,none,no,good
210,no checking,9,critical/order existing credit,radio/tv,3074,no known savings,1<=X<4,1,male single,none,2,real estate,33,stores,own,2,skilled,2,none,yes,good
211,no checking,36,existing paid,radio/tv,3835,no known savings,>=7,2,female div/dep/mar,none,4,real estate,45,stores,own,1,unskilled resident,1,yes,yes,good
212,<0,27,no credits/all paid,business,5293,<100,unemployed,2,male single,none,4,life insurance,50,,own,2,skilled,1,yes,yes,bad
213,>=200,30,delayed previously,business,1908,<100,>=7,4,male single,none,4,real estate,66,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
214,no checking,36,critical/order existing credit,radio/tv,3342,no known savings,>=7,4,male single,none,2,car,51,stores,own,1,skilled,1,yes,yes,good
215,0<=X<200,6,critical/order existing credit,retraining,932,no known savings,4<=X<7,1,female div/dep/mar,none,3,life insurance,39,stores,own,2,unskilled resident,1,none,yes,good
216,<0,18,no credits/all paid,business,3104,<100,4<=X<7,3,male single,none,1,life insurance,31,bank,own,1,skilled,1,yes,yes,good
217,>=200,36,existing paid,radio/tv,3913,<100,1<=X<4,2,male single,none,2,real estate,23,stores,own,1,skilled,1,yes,yes,good
218,<0,24,existing paid,furniture/equipment,3021,<100,1<=X<4,2,male div/sep,none,2,real estate,24,stores,rent,1,unskilled resident,1,none,yes,good
219,no checking,10,existing paid,new car,1364,<100,1<=X<4,2,female div/dep/mar,none,4,car,64,stores,own,1,skilled,1,yes,yes,good
220,0<=X<200,12,existing paid,radio/tv,625,<100,<1,4,male mar/wid,guarantor,1,real estate,26,bank,own,1,unskilled resident,1,none,yes,good
221,<0,12,existing paid,education,1200,no known savings,1<=X<4,4,female div/dep/mar,none,4,life insurance,23,bank,rent,1,skilled,1,yes,yes,good
222,no checking,12,existing paid,radio/tv,707,<100,1<=X<4,4,male single,none,2,real estate,30,bank,own,2,skilled,1,none,yes,good
223,no checking,24,delayed previously,business,2978,no known savings,1<=X<4,4,male single,none,4,real estate,32,stores,own,2,skilled,2,yes,yes,good
224,no checking,15,existing paid,used car,4657,<100,1<=X<4,3,male single,none,2,car,30,stores,own,1,skilled,1,yes,yes,good
225,no checking,36,no credits/all paid,repairs,2613,<100,1<=X<4,4,male single,none,2,car,27,stores,own,2,skilled,1,none,yes,good
226,0<=X<200,48,existing paid,radio/tv,10961,>=1000,4<=X<7,1,male single,co applicant,2,no known property,27,bank,own,2,skilled,1,yes,yes,bad
227,<0,12,existing paid,furniture/equipment,7865,<100,>=7,4,male single,none,4,no known property,53,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,bad
228,no checking,9,existing paid,radio/tv,1478,<100,4<=X<7,4,male single,none,2,car,22,stores,own,1,skilled,1,none,yes,bad
229,<0,24,existing paid,furniture/equipment,3149,<100,<1,4,male single,none,1,no known property,22,bank,for free,1,skilled,1,none,yes,good
230,>=200,36,existing paid,radio/tv,4210,<100,1<=X<4,4,male single,none,2,car,26,stores,own,1,skilled,1,none,yes,bad
231,no checking,9,existing paid,new car,2507,500<=X<10000,>=7,2,male single,none,4,no known property,51,stores,for free,1,unskilled resident,1,none,yes,good
232,no checking,12,existing paid,radio/tv,2141,100<=X<500,4<=X<7,3,male single,none,1,no known property,35,stores,own,1,skilled,1,none,yes,good
233,0<=X<200,18,existing paid,radio/tv,866,<100,1<=X<4,4,male mar/wid,guarantor,2,real estate,25,stores,own,1,unskilled resident,1,none,yes,good
234,no checking,4,critical/order existing credit,radio/tv,1544,<100,4<=X<7,2,male single,none,1,real estate,42,stores,own,3,unskilled resident,2,none,yes,good
235,<0,24,existing paid,radio/tv,1823,<100,unemployed,4,male single,none,2,car,30,,own,1,high qualif/self emp/mgmt,2,none,yes,bad
236,0<=X<200,6,existing paid,new car,14555,no known savings,unemployed,1,male single,none,2,life insurance,23,stores,own,1,unemp/unskilled non res,1,yes,yes,bad
237,0<=X<200,21,existing paid,business,2767,100<=X<500,>=7,4,male div/sep,none,2,car,61,bank,rent,2,unskilled resident,1,none,yes,bad
238,no checking,12,critical/order existing credit,radio/tv,1291,<100,1<=X<4,4,female div/dep/mar,none,2,life insurance,35,stores,own,2,skilled,1,none,yes,good
239,<0,30,existing paid,radio/tv,2522,<100,>=7,1,male single,guarantor,3,life insurance,39,stores,own,1,skilled,2,none,yes,good
240,<0,24,existing paid,new car,915,no known savings,>=7,4,female div/dep/mar,none,2,car,29,bank,own,1,skilled,1,none,yes,bad
241,no checking,6,existing paid,radio/tv,1595,<100,4<=X<7,3,male single,none,2,life insurance,51,stores,own,1,skilled,2,none,yes,good
242,<0,48,no credits/all paid,used car,4605,<100,>=7,3,male single,none,4,no known property,24,stores,for free,2,skilled,2,none,yes,bad
243,no checking,12,critical/order existing credit,business,1185,<100,1<=X<4,3,female div/dep/mar,none,2,real estate,27,stores,own,2,skilled,1,none,yes,good
244,no checking,12,all paid,retraining,3447,500<=X<10000,1<=X<4,4,female div/dep/mar,none,3,real estate,35,stores,own,1,unskilled resident,2,none,yes,good
245,no checking,24,existing paid,business,1258,<100,4<=X<7,4,male single,none,1,real estate,25,stores,own,1,skilled,1,yes,yes,good
246,no checking,12,critical/order existing credit,radio/tv,717,<100,>=7,4,male single,none,4,real estate,52,stores,own,3,skilled,1,none,yes,good
247,no checking,6,no credits/all paid,new car,1204,100<=X<500,1<=X<4,4,male single,none,1,no known property,35,bank,rent,1,skilled,1,none,no,good
248,>=200,24,existing paid,furniture/equipment,1925,<100,1<=X<4,2,male single,none,2,real estate,26,stores,own,1,skilled,1,none,yes,good
249,no checking,18,existing paid,radio/tv,433,<100,unemployed,3,female div/dep/mar,co applicant,4,real estate,22,stores,rent,1,skilled,1,none,yes,bad
250,<0,6,critical/order existing credit,new car,666,>=1000,4<=X<7,3,female div/dep/mar,none,4,real estate,39,stores,own,2,unskilled resident,1,yes,yes,good
251,>=200,12,existing paid,furniture/equipment,2251,<100,1<=X<4,1,female div/dep/mar,none,2,car,46,stores,own,1,unskilled resident,1,none,yes,good
252,0<=X<200,30,existing paid,new car,2150,<100,1<=X<4,4,female div/dep/mar,guarantor,2,no known property,24,bank,own,1,skilled,1,none,yes,bad
253,no checking,24,delayed previously,furniture/equipment,4151,100<=X<500,1<=X<4,2,male single,none,3,life insurance,35,stores,own,2,skilled,1,none,yes,good
254,0<=X<200,9,existing paid,furniture/equipment,2030,no known savings,4<=X<7,2,male single,none,1,car,24,stores,own,1,skilled,1,yes,yes,good
255,0<=X<200,60,delayed previously,radio/tv,7418,no known savings,1<=X<4,1,male single,none,1,real estate,27,stores,own,1,unskilled resident,1,none,yes,good
256,no checking,24,critical/order existing credit,radio/tv,2684,<100,1<=X<4,4,male single,none,2,real estate,35,stores,own,2,unskilled resident,1,none,yes,good
257,<0,12,all paid,radio/tv,2149,<100,1<=X<4,4,male div/sep,none,1,no known property,29,stores,for free,1,skilled,1,none,yes,bad
258,no checking,15,existing paid,used car,3812,100<=X<500,<1,1,female div/dep/mar,none,4,car,23,stores,own,1,skilled,1,yes,yes,good
259,no checking,11,critical/order existing credit,radio/tv,1154,100<=X<500,unemployed,4,female div/dep/mar,none,4,real estate,57,stores,own,3,unskilled resident,1,none,yes,good
260,<0,12,existing paid,furniture/equipment,1657,<100,1<=X<4,2,male single,none,2,real estate,27,stores,own,1,skilled,1,none,yes,good
261,<0,24,existing paid,radio/tv,1603,<100,>=7,4,female div/dep/mar,none,4,car,55,stores,own,1,skilled,1,none,yes,good
262,<0,18,critical/order existing credit,new car,5302,<100,>=7,2,male single,none,4,no known property,36,stores,for free,3,high qualif/self emp/mgmt,1,yes,yes,good
263,no checking,12,critical/order existing credit,education,2748,<100,>=7,2,female div/dep/mar,none,4,no known property,57,bank,for free,3,unskilled resident,1,none,yes,good
264,no checking,10,critical/order existing credit,new car,1231,<100,>=7,3,male single,none,4,real estate,32,stores,own,2,unskilled resident,2,none,no,good
265,0<=X<200,15,existing paid,radio/tv,802,<100,>=7,4,male single,none,3,car,37,stores,own,1,skilled,2,none,yes,bad
266,no checking,36,critical/order existing credit,business,6304,no known savings,>=7,4,male single,none,4,real estate,36,stores,own,2,skilled,1,none,yes,good
267,no checking,24,existing paid,radio/tv,1533,<100,<1,4,female div/dep/mar,none,3,car,38,,own,1,skilled,1,yes,yes,good
268,<0,14,existing paid,new car,8978,<100,>=7,1,male div/sep,none,4,life insurance,45,stores,own,1,high qualif/self emp/mgmt,1,yes,no,bad
269,no checking,24,existing paid,radio/tv,999,no known savings,>=7,4,male single,none,2,car,25,stores,own,2,skilled,1,none,yes,good
270,no checking,18,existing paid,new car,2662,no known savings,4<=X<7,4,male single,none,3,life insurance,32,stores,own,1,skilled,1,none,no,good
271,no checking,12,critical/order existing credit,furniture/equipment,1402,500<=X<10000,4<=X<7,3,female div/dep/mar,none,4,car,37,stores,rent,1,skilled,1,yes,yes,good
272,0<=X<200,48,all paid,new car,12169,no known savings,unemployed,4,male single,co applicant,4,no known property,36,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
273,0<=X<200,48,existing paid,radio/tv,3060,<100,4<=X<7,4,male single,none,4,real estate,28,stores,own,2,skilled,1,none,yes,bad
274,<0,30,existing paid,repairs,11998,<100,<1,1,male div/sep,none,1,no known property,34,stores,own,1,unskilled resident,1,yes,yes,bad
275,no checking,9,existing paid,radio/tv,2697,<100,1<=X<4,1,male single,none,2,real estate,32,stores,own,1,skilled,2,none,yes,good
276,no checking,18,critical/order existing credit,radio/tv,2404,<100,1<=X<4,2,female div/dep/mar,none,2,car,26,stores,own,2,skilled,1,none,yes,good
277,<0,12,existing paid,furniture/equipment,1262,no known savings,>=7,2,male div/sep,none,4,life insurance,49,stores,own,1,unskilled resident,1,yes,yes,good
278,no checking,6,existing paid,furniture/equipment,4611,<100,<1,1,female div/dep/mar,none,4,life insurance,32,stores,own,1,skilled,1,none,yes,bad
279,no checking,24,existing paid,radio/tv,1901,100<=X<500,1<=X<4,4,male single,none,4,car,29,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,good
280,no checking,15,critical/order existing credit,used car,3368,>=1000,>=7,3,male single,none,4,no known property,23,stores,rent,2,skilled,1,yes,yes,good
281,no checking,12,existing paid,furniture/equipment,1574,<100,1<=X<4,4,male single,none,2,real estate,50,stores,own,1,skilled,1,none,yes,good
282,>=200,18,all paid,radio/tv,1445,no known savings,4<=X<7,4,male single,none,4,car,49,bank,own,1,unskilled resident,1,none,yes,good
283,no checking,15,critical/order existing credit,furniture/equipment,1520,no known savings,>=7,4,male single,none,4,life insurance,63,stores,own,1,skilled,1,none,yes,good
284,0<=X<200,24,critical/order existing credit,new car,3878,100<=X<500,<1,4,male div/sep,none,2,car,37,stores,own,1,skilled,1,yes,yes,good
285,<0,47,existing paid,new car,10722,<100,<1,1,female div/dep/mar,none,1,real estate,35,stores,own,1,unskilled resident,1,yes,yes,good
286,<0,48,existing paid,used car,4788,<100,4<=X<7,4,male single,none,3,life insurance,26,stores,own,1,skilled,2,none,yes,good
287,0<=X<200,48,delayed previously,other,7582,100<=X<500,unemployed,2,male single,none,4,no known property,31,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
288,0<=X<200,12,existing paid,radio/tv,1092,<100,1<=X<4,4,female div/dep/mar,guarantor,4,real estate,49,stores,own,2,skilled,1,yes,yes,good
289,<0,24,delayed previously,radio/tv,1024,<100,<1,4,male mar/wid,none,4,real estate,48,,own,1,skilled,1,none,yes,bad
290,no checking,12,existing paid,business,1076,<100,1<=X<4,2,male mar/wid,none,2,real estate,26,stores,own,1,skilled,1,yes,no,good
291,0<=X<200,36,existing paid,used car,9398,<100,<1,1,male mar/wid,none,4,car,28,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,bad
292,<0,24,critical/order existing credit,used car,6419,<100,>=7,2,female div/dep/mar,none,4,no known property,44,stores,for free,2,high qualif/self emp/mgmt,2,yes,yes,good
293,>=200,42,critical/order existing credit,used car,4796,<100,>=7,4,male single,none,4,no known property,56,stores,for free,1,skilled,1,none,yes,good
294,no checking,48,critical/order existing credit,business,7629,no known savings,>=7,4,male div/sep,none,2,car,46,bank,own,2,high qualif/self emp/mgmt,2,none,yes,good
295,0<=X<200,48,existing paid,furniture/equipment,9960,<100,<1,1,female div/dep/mar,none,2,car,26,stores,own,1,skilled,1,yes,yes,bad
296,no checking,12,existing paid,used car,4675,no known savings,<1,1,female div/dep/mar,none,4,car,20,stores,rent,1,skilled,1,none,yes,good
297,no checking,10,existing paid,new car,1287,no known savings,>=7,4,male single,co applicant,2,life insurance,45,stores,own,1,unskilled resident,1,none,no,good
298,no checking,18,existing paid,furniture/equipment,2515,<100,1<=X<4,3,male single,none,4,real estate,43,stores,own,1,skilled,1,yes,yes,good
299,0<=X<200,21,critical/order existing credit,furniture/equipment,2745,>=1000,4<=X<7,3,male single,none,2,car,32,stores,own,2,skilled,1,yes,yes,good
300,no checking,6,existing paid,new car,672,<100,unemployed,1,female div/dep/mar,none,4,real estate,54,stores,own,1,unemp/unskilled non res,1,yes,yes,good
301,0<=X<200,36,no credits/all paid,radio/tv,3804,<100,1<=X<4,4,female div/dep/mar,none,1,car,42,stores,own,1,skilled,1,yes,yes,bad
302,>=200,24,critical/order existing credit,new car,1344,no known savings,4<=X<7,4,male single,none,2,real estate,37,bank,own,2,unskilled resident,2,none,yes,bad
303,<0,10,critical/order existing credit,new car,1038,<100,4<=X<7,4,male single,co applicant,3,life insurance,49,stores,own,2,skilled,1,yes,yes,good
304,no checking,48,critical/order existing credit,new car,10127,500<=X<10000,1<=X<4,2,male single,none,2,no known property,44,bank,for free,1,skilled,1,none,yes,bad
305,no checking,6,existing paid,furniture/equipment,1543,>=1000,1<=X<4,4,male div/sep,none,2,real estate,33,stores,own,1,skilled,1,none,yes,good
306,no checking,30,existing paid,used car,4811,no known savings,4<=X<7,2,female div/dep/mar,none,4,life insurance,24,,rent,1,unskilled resident,1,none,yes,good
307,<0,12,existing paid,radio/tv,727,100<=X<500,<1,4,male mar/wid,none,3,no known property,33,stores,own,1,unskilled resident,1,yes,yes,bad
308,0<=X<200,8,existing paid,furniture/equipment,1237,<100,1<=X<4,3,female div/dep/mar,none,4,real estate,24,stores,own,1,skilled,1,none,yes,bad
309,0<=X<200,9,existing paid,new car,276,<100,1<=X<4,4,male mar/wid,none,4,real estate,22,stores,rent,1,unskilled resident,1,none,yes,good
310,0<=X<200,48,existing paid,other,5381,no known savings,unemployed,3,male single,none,4,no known property,40,bank,for free,1,unemp/unskilled non res,1,yes,yes,good
311,no checking,24,existing paid,furniture/equipment,5511,100<=X<500,1<=X<4,4,male single,none,1,car,25,,own,1,skilled,1,none,yes,good
312,>=200,24,existing paid,furniture/equipment,3749,<100,<1,2,female div/dep/mar,none,4,car,26,stores,own,1,skilled,1,none,yes,good
313,0<=X<200,12,existing paid,new car,685,<100,4<=X<7,2,male mar/wid,none,3,car,25,bank,own,1,unskilled resident,1,none,yes,bad
314,>=200,4,existing paid,new car,1494,no known savings,<1,1,male single,none,2,real estate,29,stores,own,1,unskilled resident,2,none,no,good
315,<0,36,all paid,furniture/equipment,2746,<100,>=7,4,male single,none,4,car,31,bank,own,1,skilled,1,none,yes,bad
316,<0,12,existing paid,furniture/equipment,708,<100,1<=X<4,2,male single,guarantor,3,life insurance,38,stores,own,1,unskilled resident,2,none,yes,good
317,0<=X<200,24,existing paid,furniture/equipment,4351,no known savings,1<=X<4,1,female div/dep/mar,none,4,life insurance,48,stores,own,1,unskilled resident,1,yes,yes,good
318,no checking,12,critical/order existing credit,education,701,<100,1<=X<4,4,male single,none,2,car,32,stores,own,2,skilled,1,none,yes,good
319,<0,15,delayed previously,furniture/equipment,3643,<100,>=7,1,female div/dep/mar,none,4,life insurance,27,stores,own,2,unskilled resident,1,none,yes,good
320,0<=X<200,30,critical/order existing credit,new car,4249,<100,unemployed,4,male mar/wid,none,2,car,28,stores,own,2,high qualif/self emp/mgmt,1,none,yes,bad
321,<0,24,existing paid,radio/tv,1938,<100,<1,4,male div/sep,none,3,life insurance,32,stores,own,1,skilled,1,none,yes,bad
322,<0,24,existing paid,used car,2910,<100,4<=X<7,2,male single,none,1,no known property,34,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
323,<0,18,existing paid,furniture/equipment,2659,>=1000,1<=X<4,4,male single,none,2,car,28,stores,own,1,skilled,1,none,yes,good
324,no checking,18,critical/order existing credit,new car,1028,<100,1<=X<4,4,female div/dep/mar,none,3,real estate,36,stores,own,2,skilled,1,none,yes,good
325,<0,8,critical/order existing credit,new car,3398,<100,4<=X<7,1,male single,none,4,real estate,39,stores,own,2,unskilled resident,1,none,no,good
326,no checking,12,critical/order existing credit,furniture/equipment,5801,no known savings,>=7,2,male single,none,4,life insurance,49,stores,rent,1,skilled,1,yes,yes,good
327,no checking,24,existing paid,new car,1525,>=1000,4<=X<7,4,female div/dep/mar,none,3,car,34,stores,own,1,skilled,2,yes,yes,good
328,>=200,36,existing paid,radio/tv,4473,<100,>=7,4,male single,none,2,car,31,stores,own,1,skilled,1,none,yes,good
329,0<=X<200,6,existing paid,radio/tv,1068,<100,>=7,4,male single,none,4,car,28,stores,own,1,skilled,2,none,yes,good
330,<0,24,critical/order existing credit,used car,6615,<100,unemployed,2,male single,none,4,no known property,75,stores,for free,2,high qualif/self emp/mgmt,1,yes,yes,good
331,no checking,18,critical/order existing credit,education,1864,100<=X<500,1<=X<4,4,female div/dep/mar,none,2,real estate,30,stores,own,2,skilled,1,none,yes,bad
332,0<=X<200,60,existing paid,new car,7408,100<=X<500,<1,4,female div/dep/mar,none,2,life insurance,24,stores,own,1,high qualif/self emp/mgmt,1,none,yes,bad
333,no checking,48,critical/order existing credit,used car,11590,100<=X<500,1<=X<4,2,female div/dep/mar,none,4,car,24,bank,rent,2,unskilled resident,1,none,yes,bad
334,<0,24,no credits/all paid,furniture/equipment,4110,<100,>=7,3,male single,none,4,no known property,23,bank,rent,2,skilled,2,none,yes,bad
335,<0,6,critical/order existing credit,furniture/equipment,3384,<100,1<=X<4,1,male div/sep,none,4,real estate,44,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,bad
336,0<=X<200,13,existing paid,radio/tv,2101,<100,<1,2,female div/dep/mar,guarantor,4,life insurance,23,stores,own,1,unskilled resident,1,none,yes,good
337,<0,15,existing paid,domestic appliance,1275,no known savings,1<=X<4,4,female div/dep/mar,none,2,car,24,stores,rent,1,skilled,1,none,yes,bad
338,<0,24,existing paid,furniture/equipment,4169,<100,1<=X<4,4,male single,none,4,life insurance,28,stores,own,1,skilled,1,none,yes,good
339,0<=X<200,10,existing paid,furniture/equipment,1521,<100,1<=X<4,4,male div/sep,none,2,car,31,stores,own,1,unskilled resident,1,none,yes,good
340,0<=X<200,24,critical/order existing credit,education,5743,<100,<1,2,female div/dep/mar,none,4,no known property,24,stores,for free,2,skilled,1,yes,yes,good
341,<0,21,existing paid,furniture/equipment,3599,<100,4<=X<7,1,female div/dep/mar,none,4,car,26,stores,rent,1,unskilled resident,1,none,yes,good
342,0<=X<200,18,existing paid,radio/tv,3213,500<=X<10000,<1,1,male mar/wid,none,3,real estate,25,stores,rent,1,skilled,1,none,yes,good
343,0<=X<200,18,existing paid,business,4439,<100,>=7,1,male single,co applicant,1,real estate,33,bank,own,1,high qualif/self emp/mgmt,1,yes,yes,good
344,>=200,10,existing paid,new car,3949,<100,<1,1,male single,guarantor,1,life insurance,37,stores,own,1,unskilled resident,2,none,yes,good
345,no checking,15,critical/order existing credit,radio/tv,1459,<100,1<=X<4,4,female div/dep/mar,none,2,car,43,stores,own,1,unskilled resident,1,none,yes,good
346,0<=X<200,13,critical/order existing credit,radio/tv,882,<100,<1,4,male single,guarantor,4,real estate,23,stores,own,2,skilled,1,none,yes,good
347,0<=X<200,24,existing paid,radio/tv,3758,500<=X<10000,unemployed,1,female div/dep/mar,none,4,no known property,23,stores,rent,1,unemp/unskilled non res,1,none,yes,good
348,no checking,6,delayed previously,business,1743,100<=X<500,1<=X<4,1,male single,none,2,real estate,34,stores,own,2,unskilled resident,1,none,yes,good
349,0<=X<200,9,critical/order existing credit,education,1136,>=1000,>=7,4,male single,none,3,no known property,32,stores,for free,2,skilled,2,none,yes,bad
350,no checking,9,existing paid,domestic appliance,1236,<100,<1,1,female div/dep/mar,none,4,real estate,23,stores,rent,1,skilled,1,yes,yes,good
351,0<=X<200,9,existing paid,furniture/equipment,959,<100,1<=X<4,1,female div/dep/mar,none,2,car,29,stores,own,1,skilled,1,none,no,bad
352,no checking,18,critical/order existing credit,used car,3229,no known savings,unemployed,2,male single,none,4,no known property,38,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
353,<0,12,no credits/all paid,radio/tv,6199,<100,1<=X<4,4,male single,none,2,life insurance,28,stores,rent,2,skilled,1,yes,yes,bad
354,no checking,10,existing paid,education,727,500<=X<10000,>=7,4,male single,none,4,no known property,46,stores,for free,1,skilled,1,yes,yes,good
355,0<=X<200,24,existing paid,new car,1246,<100,<1,4,male single,none,2,real estate,23,,own,1,unskilled resident,1,none,yes,bad
356,no checking,12,critical/order existing credit,radio/tv,2331,no known savings,>=7,1,male single,co applicant,4,real estate,49,stores,own,1,skilled,1,yes,yes,good
357,no checking,36,delayed previously,radio/tv,4463,<100,1<=X<4,4,male single,none,2,car,26,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,bad
358,no checking,12,existing paid,radio/tv,776,<100,1<=X<4,4,male mar/wid,none,2,real estate,28,stores,own,1,skilled,1,none,yes,good
359,<0,30,existing paid,furniture/equipment,2406,<100,4<=X<7,4,female div/dep/mar,none,4,real estate,23,stores,rent,1,skilled,1,none,yes,bad
360,0<=X<200,18,existing paid,education,1239,no known savings,1<=X<4,4,male single,none,4,no known property,61,stores,for free,1,skilled,1,none,yes,good
361,>=200,12,existing paid,radio/tv,3399,no known savings,>=7,2,male single,none,3,car,37,stores,own,1,high qualif/self emp/mgmt,1,none,yes,good
362,>=200,12,delayed previously,new car,2247,<100,1<=X<4,2,female div/dep/mar,none,2,car,36,,own,2,skilled,1,yes,yes,good
363,no checking,6,existing paid,furniture/equipment,1766,<100,1<=X<4,1,male mar/wid,none,2,life insurance,21,stores,rent,1,skilled,1,none,yes,good
364,<0,18,existing paid,furniture/equipment,2473,<100,unemployed,4,male single,none,1,car,25,stores,own,1,unemp/unskilled non res,1,none,yes,bad
365,no checking,12,existing paid,business,1542,<100,4<=X<7,2,male single,none,4,car,36,stores,own,1,skilled,1,yes,yes,good
366,no checking,18,critical/order existing credit,used car,3850,<100,4<=X<7,3,male single,none,1,car,27,stores,own,2,skilled,1,none,yes,good
367,<0,18,existing paid,furniture/equipment,3650,<100,<1,1,female div/dep/mar,none,4,car,22,stores,rent,1,skilled,1,none,yes,good
368,<0,36,existing paid,furniture/equipment,3446,<100,>=7,4,male single,none,2,car,42,stores,own,1,skilled,2,none,yes,bad
369,0<=X<200,18,existing paid,furniture/equipment,3001,<100,4<=X<7,2,female div/dep/mar,none,4,real estate,40,stores,rent,1,skilled,1,none,yes,good
370,no checking,36,existing paid,new car,3079,no known savings,1<=X<4,4,male single,none,4,real estate,36,stores,own,1,skilled,1,none,yes,good
371,no checking,18,critical/order existing credit,radio/tv,6070,<100,>=7,3,male single,none,4,car,33,stores,own,2,skilled,1,yes,yes,good
372,no checking,10,critical/order existing credit,furniture/equipment,2146,<100,<1,1,female div/dep/mar,none,3,real estate,23,stores,rent,2,skilled,1,none,yes,good
373,no checking,60,critical/order existing credit,new car,13756,no known savings,>=7,2,male single,none,4,no known property,63,bank,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
374,0<=X<200,60,all paid,other,14782,100<=X<500,>=7,3,female div/dep/mar,none,4,no known property,60,bank,for free,2,high qualif/self emp/mgmt,1,yes,yes,bad
375,<0,48,all paid,business,7685,<100,4<=X<7,2,female div/dep/mar,guarantor,4,car,37,stores,rent,1,skilled,1,none,yes,bad
376,no checking,18,delayed previously,radio/tv,2320,<100,unemployed,2,male mar/wid,none,3,real estate,34,stores,own,2,skilled,1,none,yes,good
377,no checking,7,delayed previously,radio/tv,846,no known savings,>=7,3,male single,none,4,no known property,36,stores,for free,1,skilled,1,none,yes,good
378,0<=X<200,36,existing paid,new car,14318,<100,>=7,4,male single,none,2,no known property,57,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,bad
379,no checking,6,critical/order existing credit,new car,362,100<=X<500,1<=X<4,4,female div/dep/mar,none,4,car,52,stores,own,2,unskilled resident,1,none,yes,good
380,<0,20,existing paid,furniture/equipment,2212,no known savings,4<=X<7,4,male single,none,4,car,39,stores,own,1,skilled,1,yes,yes,good
381,0<=X<200,18,existing paid,used car,12976,<100,unemployed,3,female div/dep/mar,none,4,no known property,38,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,bad
382,no checking,22,existing paid,new car,1283,no known savings,4<=X<7,4,female div/dep/mar,none,4,life insurance,25,stores,rent,1,skilled,1,none,yes,good
383,>=200,12,existing paid,new car,1330,<100,<1,4,male single,none,1,real estate,26,stores,own,1,skilled,1,none,yes,good
384,no checking,30,delayed previously,business,4272,100<=X<500,1<=X<4,2,male single,none,2,life insurance,26,stores,own,2,unskilled resident,1,none,yes,good
385,no checking,18,critical/order existing credit,radio/tv,2238,<100,1<=X<4,2,female div/dep/mar,none,1,car,25,stores,own,2,skilled,1,none,yes,good
386,no checking,18,existing paid,radio/tv,1126,no known savings,<1,4,female div/dep/mar,none,2,real estate,21,stores,rent,1,skilled,1,yes,yes,good
387,0<=X<200,18,critical/order existing credit,furniture/equipment,7374,<100,unemployed,4,male single,none,4,life insurance,40,,own,2,high qualif/self emp/mgmt,1,yes,yes,good
388,0<=X<200,15,critical/order existing credit,business,2326,500<=X<10000,1<=X<4,2,male single,none,4,car,27,bank,own,1,skilled,1,none,yes,good
389,no checking,9,existing paid,business,1449,<100,4<=X<7,3,female div/dep/mar,none,2,car,27,stores,own,2,skilled,1,none,yes,good
390,no checking,18,existing paid,new car,1820,<100,1<=X<4,2,male mar/wid,none,2,life insurance,30,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
391,0<=X<200,12,existing paid,furniture/equipment,983,>=1000,<1,1,female div/dep/mar,none,4,real estate,19,stores,rent,1,unskilled resident,1,none,yes,good
392,<0,36,existing paid,new car,3249,<100,4<=X<7,2,male single,none,4,no known property,39,bank,for free,1,high qualif/self emp/mgmt,2,yes,yes,good
393,<0,6,critical/order existing credit,radio/tv,1957,<100,4<=X<7,1,female div/dep/mar,none,4,car,31,stores,own,1,skilled,1,none,yes,good
394,no checking,9,critical/order existing credit,furniture/equipment,2406,<100,unemployed,2,male single,none,3,car,31,stores,own,1,high qualif/self emp/mgmt,1,none,yes,good
395,0<=X<200,39,delayed previously,education,11760,100<=X<500,4<=X<7,2,male single,none,3,no known property,32,stores,rent,1,skilled,1,yes,yes,good
396,<0,12,existing paid,furniture/equipment,2578,<100,unemployed,3,female div/dep/mar,none,4,no known property,55,stores,for free,1,high qualif/self emp/mgmt,1,none,yes,good
397,<0,36,critical/order existing credit,furniture/equipment,2348,<100,1<=X<4,3,male mar/wid,none,2,life insurance,46,stores,own,2,skilled,1,yes,yes,good
398,0<=X<200,12,existing paid,new car,1223,<100,>=7,1,male div/sep,none,1,real estate,46,stores,rent,2,skilled,1,none,yes,bad
399,no checking,24,critical/order existing credit,radio/tv,1516,>=1000,1<=X<4,4,female div/dep/mar,none,1,real estate,43,stores,own,2,unskilled resident,1,none,yes,good
400,no checking,18,existing paid,radio/tv,1473,<100,<1,3,male mar/wid,none,4,real estate,39,stores,own,1,skilled,1,yes,yes,good
401,0<=X<200,18,critical/order existing credit,business,1887,no known savings,1<=X<4,4,male mar/wid,none,4,real estate,28,bank,own,2,skilled,1,none,yes,good
402,no checking,24,delayed previously,business,8648,<100,<1,2,male single,none,2,car,27,bank,own,2,skilled,1,yes,yes,bad
403,no checking,14,delayed previously,new car,802,<100,1<=X<4,4,male single,none,2,car,27,stores,own,2,unskilled resident,1,none,yes,good
404,0<=X<200,18,delayed previously,new car,2899,no known savings,>=7,4,male single,none,4,car,43,stores,own,1,skilled,2,none,yes,good
405,0<=X<200,24,existing paid,radio/tv,2039,<100,<1,1,male mar/wid,none,1,life insurance,22,stores,own,1,skilled,1,yes,yes,bad
406,no checking,24,critical/order existing credit,used car,2197,no known savings,4<=X<7,4,male single,none,4,car,43,stores,own,2,skilled,2,yes,yes,good
407,<0,15,existing paid,radio/tv,1053,<100,<1,4,male mar/wid,none,2,real estate,27,stores,own,1,skilled,1,none,no,good
408,no checking,24,existing paid,radio/tv,3235,500<=X<10000,>=7,3,male div/sep,none,2,car,26,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
409,>=200,12,critical/order existing credit,new car,939,500<=X<10000,4<=X<7,4,male mar/wid,none,2,real estate,28,stores,own,3,skilled,1,yes,yes,bad
410,0<=X<200,24,existing paid,radio/tv,1967,<100,>=7,4,female div/dep/mar,none,4,car,20,stores,own,1,skilled,1,yes,yes,good
411,no checking,33,critical/order existing credit,used car,7253,<100,4<=X<7,3,male single,none,2,car,35,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,good
412,no checking,12,critical/order existing credit,business,2292,<100,unemployed,4,male single,none,2,car,42,,own,2,high qualif/self emp/mgmt,1,yes,yes,bad
413,no checking,10,existing paid,new car,1597,500<=X<10000,1<=X<4,3,male single,none,2,no known property,40,stores,rent,1,unskilled resident,2,none,no,good
414,<0,24,existing paid,new car,1381,no known savings,1<=X<4,4,female div/dep/mar,none,2,life insurance,35,stores,own,1,skilled,1,none,yes,bad
415,no checking,36,critical/order existing credit,used car,5842,<100,>=7,2,male single,none,2,life insurance,35,stores,own,2,skilled,2,yes,yes,good
416,<0,12,existing paid,new car,2579,<100,<1,4,male single,none,1,real estate,33,stores,own,1,unskilled resident,2,none,yes,bad
417,<0,18,delayed previously,education,8471,no known savings,1<=X<4,1,female div/dep/mar,none,2,car,23,stores,rent,2,skilled,1,yes,yes,good
418,no checking,21,existing paid,new car,2782,500<=X<10000,4<=X<7,1,female div/dep/mar,none,2,car,31,bank,own,1,high qualif/self emp/mgmt,1,none,yes,good
419,0<=X<200,18,existing paid,new car,1042,no known savings,1<=X<4,4,female div/dep/mar,none,2,life insurance,33,stores,own,1,skilled,1,none,yes,bad
420,no checking,15,existing paid,new car,3186,>=1000,4<=X<7,2,female div/dep/mar,none,3,car,20,stores,rent,1,skilled,1,none,yes,good
421,0<=X<200,12,existing paid,used car,2028,no known savings,1<=X<4,4,male single,none,2,car,30,stores,own,1,skilled,1,none,yes,good
422,0<=X<200,12,critical/order existing credit,new car,958,<100,4<=X<7,2,male single,none,3,real estate,47,stores,own,2,unskilled resident,2,none,yes,good
423,no checking,21,delayed previously,furniture/equipment,1591,100<=X<500,4<=X<7,4,male single,none,3,real estate,34,stores,own,2,high qualif/self emp/mgmt,1,none,yes,good
424,0<=X<200,12,existing paid,furniture/equipment,2762,no known savings,>=7,1,female div/dep/mar,none,2,life insurance,25,bank,own,1,skilled,1,yes,yes,bad
425,0<=X<200,18,existing paid,used car,2779,<100,1<=X<4,1,male mar/wid,none,3,car,21,stores,rent,1,skilled,1,yes,yes,good
426,no checking,28,critical/order existing credit,radio/tv,2743,<100,>=7,4,male single,none,2,car,29,stores,own,2,skilled,1,none,yes,good
427,no checking,18,critical/order existing credit,radio/tv,1149,>=1000,1<=X<4,4,male single,none,3,real estate,46,stores,own,2,skilled,1,none,yes,good
428,no checking,9,existing paid,furniture/equipment,1313,<100,>=7,1,male single,none,4,car,20,stores,own,1,skilled,1,none,yes,good
429,<0,18,critical/order existing credit,repairs,1190,<100,unemployed,2,female div/dep/mar,none,4,no known property,55,stores,for free,3,unemp/unskilled non res,2,none,yes,bad
430,no checking,5,existing paid,business,3448,<100,4<=X<7,1,male single,none,4,real estate,74,stores,own,1,unskilled resident,1,none,yes,good
431,0<=X<200,24,existing paid,other,11328,<100,1<=X<4,2,male single,co applicant,3,car,29,bank,own,2,high qualif/self emp/mgmt,1,yes,yes,bad
432,<0,6,critical/order existing credit,furniture/equipment,1872,<100,unemployed,4,male single,none,4,no known property,36,stores,for free,3,high qualif/self emp/mgmt,1,yes,yes,good
433,no checking,24,critical/order existing credit,repairs,2058,<100,1<=X<4,4,male div/sep,none,2,real estate,33,stores,own,2,skilled,1,yes,yes,good
434,<0,9,existing paid,furniture/equipment,2136,<100,1<=X<4,3,male single,none,2,real estate,25,stores,own,1,skilled,1,none,yes,good
435,0<=X<200,12,existing paid,radio/tv,1484,no known savings,1<=X<4,2,male mar/wid,none,1,real estate,25,stores,own,1,skilled,1,yes,yes,bad
436,no checking,6,existing paid,repairs,660,500<=X<10000,4<=X<7,2,male mar/wid,none,4,real estate,23,stores,rent,1,unskilled resident,1,none,yes,good
437,no checking,24,critical/order existing credit,new car,1287,>=1000,>=7,4,female div/dep/mar,none,4,real estate,37,stores,own,2,skilled,1,yes,yes,good
438,<0,42,critical/order existing credit,repairs,3394,<100,unemployed,4,male single,co applicant,4,car,65,stores,own,2,unemp/unskilled non res,1,none,yes,good
439,>=200,12,all paid,business,609,<100,<1,4,female div/dep/mar,none,1,real estate,26,stores,own,1,unemp/unskilled non res,1,none,yes,bad
440,no checking,12,existing paid,new car,1884,<100,>=7,4,male single,none,4,car,39,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
441,<0,12,existing paid,furniture/equipment,1620,<100,1<=X<4,2,female div/dep/mar,co applicant,3,life insurance,30,stores,own,1,skilled,1,none,yes,good
442,0<=X<200,20,delayed previously,other,2629,<100,1<=X<4,2,male single,none,3,car,29,bank,own,2,skilled,1,yes,yes,good
443,no checking,12,existing paid,education,719,<100,>=7,4,male single,none,4,car,41,bank,own,1,unskilled resident,2,none,yes,bad
444,0<=X<200,48,critical/order existing credit,furniture/equipment,5096,<100,1<=X<4,2,female div/dep/mar,none,3,car,30,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
445,no checking,9,critical/order existing credit,education,1244,no known savings,>=7,4,female div/dep/mar,none,4,life insurance,41,stores,rent,2,unskilled resident,1,none,yes,good
446,<0,36,existing paid,new car,1842,<100,<1,4,female div/dep/mar,none,4,car,34,stores,own,1,skilled,1,yes,yes,bad
447,0<=X<200,7,existing paid,radio/tv,2576,<100,1<=X<4,2,male single,guarantor,2,real estate,35,stores,own,1,skilled,1,none,yes,good
448,>=200,12,existing paid,furniture/equipment,1424,no known savings,>=7,3,female div/dep/mar,none,4,real estate,55,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
449,0<=X<200,15,delayed previously,repairs,1512,>=1000,1<=X<4,3,male mar/wid,none,3,life insurance,61,,own,2,skilled,1,none,yes,bad
450,no checking,36,critical/order existing credit,used car,11054,no known savings,1<=X<4,4,male single,none,2,car,30,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
451,no checking,6,existing paid,radio/tv,518,<100,1<=X<4,3,female div/dep/mar,none,1,real estate,29,stores,own,1,skilled,1,none,yes,good
452,no checking,12,no credits/all paid,furniture/equipment,2759,<100,>=7,2,male single,none,4,life insurance,34,stores,own,2,skilled,1,none,yes,good
453,no checking,24,existing paid,used car,2670,<100,>=7,4,male single,none,4,car,35,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
454,<0,24,existing paid,new car,4817,<100,4<=X<7,2,male single,co applicant,3,life insurance,31,stores,own,1,skilled,1,yes,yes,bad
455,no checking,24,existing paid,used car,2679,<100,<1,4,female div/dep/mar,none,1,no known property,29,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
456,<0,11,critical/order existing credit,new car,3905,<100,1<=X<4,2,male single,none,2,real estate,36,stores,rent,2,skilled,2,none,yes,good
457,<0,12,existing paid,used car,3386,<100,>=7,3,male single,none,4,no known property,35,stores,for free,1,skilled,1,yes,yes,bad
458,<0,6,existing paid,domestic appliance,343,<100,<1,4,female div/dep/mar,none,1,real estate,27,stores,own,1,skilled,1,none,yes,good
459,no checking,18,existing paid,radio/tv,4594,<100,<1,3,male single,none,2,car,32,stores,own,1,skilled,1,yes,yes,good
460,<0,36,existing paid,furniture/equipment,3620,<100,1<=X<4,1,male single,guarantor,2,life insurance,37,stores,own,1,skilled,2,none,yes,good
461,<0,15,existing paid,new car,1721,<100,<1,2,male single,none,3,real estate,36,stores,own,1,skilled,1,none,yes,good
462,0<=X<200,12,existing paid,furniture/equipment,3017,<100,<1,3,female div/dep/mar,none,1,real estate,34,stores,rent,1,high qualif/self emp/mgmt,1,none,yes,good
463,0<=X<200,12,existing paid,retraining,754,no known savings,>=7,4,male single,none,4,life insurance,38,stores,own,2,skilled,1,none,yes,good
464,no checking,18,existing paid,business,1950,<100,4<=X<7,4,male single,none,1,car,34,,own,2,skilled,1,yes,yes,good
465,<0,24,existing paid,used car,2924,<100,1<=X<4,3,male single,guarantor,4,no known property,63,bank,own,1,skilled,2,yes,yes,good
466,<0,24,delayed previously,radio/tv,1659,<100,<1,4,female div/dep/mar,none,2,car,29,stores,rent,1,unskilled resident,1,yes,yes,bad
467,no checking,48,delayed previously,radio/tv,7238,no known savings,>=7,3,male single,none,3,car,32,bank,own,2,skilled,2,none,yes,good
468,no checking,33,delayed previously,business,2764,<100,1<=X<4,2,female div/dep/mar,none,2,car,26,stores,own,2,skilled,1,yes,yes,good
469,no checking,24,delayed previously,used car,4679,<100,4<=X<7,3,male single,none,3,car,35,stores,own,2,unskilled resident,1,yes,yes,good
470,0<=X<200,24,existing paid,radio/tv,3092,100<=X<500,<1,3,male mar/wid,none,2,car,22,stores,rent,1,skilled,1,yes,yes,bad
471,<0,6,existing paid,education,448,<100,<1,4,female div/dep/mar,none,4,life insurance,23,stores,own,1,skilled,1,none,yes,bad
472,<0,9,existing paid,new car,654,<100,1<=X<4,4,male single,none,3,car,28,stores,own,1,unskilled resident,1,none,yes,bad
473,no checking,6,existing paid,retraining,1238,no known savings,unemployed,4,male single,none,4,life insurance,36,stores,own,1,high qualif/self emp/mgmt,2,yes,yes,good
474,0<=X<200,18,critical/order existing credit,radio/tv,1245,<100,1<=X<4,4,male mar/wid,none,2,car,33,stores,own,1,skilled,1,none,yes,bad
475,<0,18,no credits/all paid,furniture/equipment,3114,<100,<1,1,female div/dep/mar,none,4,life insurance,26,stores,rent,1,skilled,1,none,yes,bad
476,no checking,39,existing paid,used car,2569,500<=X<10000,1<=X<4,4,male single,none,4,car,24,stores,own,1,skilled,1,none,yes,good
477,>=200,24,existing paid,radio/tv,5152,<100,4<=X<7,4,male single,none,2,car,25,bank,own,1,skilled,1,none,yes,good
478,0<=X<200,12,existing paid,business,1037,100<=X<500,4<=X<7,3,male single,none,4,real estate,39,stores,own,1,unskilled resident,1,none,yes,good
479,<0,15,critical/order existing credit,furniture/equipment,1478,<100,>=7,4,male single,none,4,car,44,stores,own,2,skilled,2,yes,yes,good
480,0<=X<200,12,critical/order existing credit,radio/tv,3573,<100,1<=X<4,1,female div/dep/mar,none,1,real estate,23,stores,own,1,unskilled resident,1,none,yes,good
481,0<=X<200,24,existing paid,new car,1201,<100,<1,4,male single,none,1,life insurance,26,stores,own,1,skilled,1,none,yes,good
482,<0,30,existing paid,furniture/equipment,3622,>=1000,>=7,4,female div/dep/mar,none,4,life insurance,57,stores,rent,2,skilled,1,yes,yes,good
483,no checking,15,delayed previously,furniture/equipment,960,>=1000,4<=X<7,3,female div/dep/mar,none,2,life insurance,30,stores,own,2,skilled,1,none,yes,good
484,no checking,12,critical/order existing credit,new car,1163,500<=X<10000,1<=X<4,4,male single,none,4,real estate,44,stores,own,1,skilled,1,yes,yes,good
485,0<=X<200,6,delayed previously,new car,1209,<100,unemployed,4,male single,none,4,life insurance,47,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
486,no checking,12,existing paid,radio/tv,3077,<100,1<=X<4,2,male single,none,4,car,52,stores,own,1,skilled,1,yes,yes,good
487,no checking,24,existing paid,new car,3757,<100,>=7,4,female div/dep/mar,co applicant,4,no known property,62,stores,for free,1,skilled,1,yes,yes,good
488,no checking,10,existing paid,new car,1418,100<=X<500,1<=X<4,3,male single,none,2,real estate,35,stores,rent,1,unskilled resident,1,none,no,good
489,no checking,6,existing paid,new car,3518,<100,1<=X<4,2,male single,guarantor,3,life insurance,26,stores,rent,1,skilled,1,none,yes,good
490,no checking,12,critical/order existing credit,radio/tv,1934,<100,>=7,2,male single,none,2,no known property,26,stores,own,2,skilled,1,none,yes,good
491,0<=X<200,27,no credits/all paid,business,8318,<100,>=7,2,female div/dep/mar,none,4,no known property,42,stores,for free,2,high qualif/self emp/mgmt,1,yes,yes,bad
492,no checking,6,critical/order existing credit,radio/tv,1237,100<=X<500,1<=X<4,1,female div/dep/mar,none,1,life insurance,27,stores,own,2,skilled,1,none,yes,good
493,0<=X<200,6,existing paid,radio/tv,368,no known savings,>=7,4,male single,none,4,life insurance,38,stores,own,1,skilled,1,none,yes,good
494,<0,12,critical/order existing credit,new car,2122,<100,1<=X<4,3,male single,none,2,real estate,39,stores,rent,2,unskilled resident,2,none,no,good
495,<0,24,existing paid,furniture/equipment,2996,no known savings,1<=X<4,2,male mar/wid,none,4,car,20,stores,own,1,skilled,1,none,yes,bad
496,0<=X<200,36,existing paid,furniture/equipment,9034,100<=X<500,<1,4,male single,co applicant,1,no known property,29,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,bad
497,no checking,24,critical/order existing credit,furniture/equipment,1585,<100,4<=X<7,4,male single,none,3,life insurance,40,stores,own,2,skilled,1,none,yes,good
498,0<=X<200,18,existing paid,radio/tv,1301,<100,>=7,4,male mar/wid,guarantor,2,real estate,32,stores,own,1,unskilled resident,1,none,yes,good
499,>=200,6,critical/order existing credit,new car,1323,100<=X<500,>=7,2,male div/sep,none,4,car,28,stores,own,2,skilled,2,yes,yes,good
500,<0,24,existing paid,new car,3123,<100,<1,4,female div/dep/mar,none,1,life insurance,27,stores,own,1,skilled,1,none,yes,bad
501,<0,36,existing paid,used car,5493,<100,>=7,2,male single,none,4,no known property,42,stores,for free,1,skilled,2,none,yes,good
502,>=200,9,existing paid,radio/tv,1126,100<=X<500,>=7,2,male div/sep,none,4,real estate,49,stores,own,1,skilled,1,none,yes,good
503,0<=X<200,24,critical/order existing credit,radio/tv,1216,100<=X<500,<1,4,male single,none,4,no known property,38,bank,own,2,skilled,2,none,yes,bad
504,<0,24,existing paid,new car,1207,<100,<1,4,female div/dep/mar,none,4,life insurance,24,stores,rent,1,skilled,1,none,yes,bad
505,no checking,10,existing paid,new car,1309,no known savings,1<=X<4,4,male single,guarantor,4,life insurance,27,stores,own,1,unskilled resident,1,none,yes,bad
506,>=200,15,critical/order existing credit,used car,2360,500<=X<10000,1<=X<4,2,male single,none,2,car,36,stores,own,1,skilled,1,yes,yes,good
507,0<=X<200,15,all paid,new car,6850,100<=X<500,unemployed,1,male single,none,2,life insurance,34,stores,own,1,high qualif/self emp/mgmt,2,yes,yes,bad
508,no checking,24,existing paid,radio/tv,1413,<100,1<=X<4,4,male mar/wid,none,2,life insurance,28,stores,own,1,skilled,1,none,yes,good
509,no checking,39,existing paid,used car,8588,100<=X<500,>=7,4,male single,none,2,car,45,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
510,<0,12,existing paid,new car,759,<100,4<=X<7,4,male single,none,2,real estate,26,stores,own,1,skilled,1,none,yes,bad
511,no checking,36,existing paid,used car,4686,<100,1<=X<4,2,male single,none,2,no known property,32,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
512,>=200,15,existing paid,business,2687,<100,4<=X<7,2,male single,none,4,life insurance,26,stores,rent,1,skilled,1,yes,yes,good
513,0<=X<200,12,delayed previously,radio/tv,585,<100,1<=X<4,4,male mar/wid,co applicant,4,real estate,20,stores,rent,2,skilled,1,none,yes,good
514,no checking,24,existing paid,new car,2255,no known savings,<1,4,male single,none,1,life insurance,54,stores,own,1,skilled,1,none,yes,good
515,<0,6,critical/order existing credit,new car,609,<100,4<=X<7,4,female div/dep/mar,none,3,life insurance,37,stores,own,2,skilled,1,none,no,good
516,<0,6,critical/order existing credit,new car,1361,<100,<1,2,male single,none,4,real estate,40,stores,own,1,unskilled resident,2,none,no,good
517,no checking,36,critical/order existing credit,furniture/equipment,7127,<100,<1,2,female div/dep/mar,none,4,life insurance,23,stores,rent,2,skilled,1,yes,yes,bad
518,<0,6,existing paid,new car,1203,100<=X<500,>=7,3,male single,none,2,life insurance,43,stores,own,1,skilled,1,yes,yes,good
519,no checking,6,critical/order existing credit,radio/tv,700,no known savings,>=7,4,male single,none,4,no known property,36,stores,for free,2,skilled,1,none,yes,good
520,no checking,24,critical/order existing credit,repairs,5507,<100,>=7,3,male single,none,4,no known property,44,stores,for free,2,skilled,1,none,yes,good
521,<0,18,existing paid,radio/tv,3190,<100,1<=X<4,2,female div/dep/mar,none,2,real estate,24,stores,own,1,skilled,1,none,yes,bad
522,<0,48,no credits/all paid,furniture/equipment,7119,<100,1<=X<4,3,male single,none,4,no known property,53,stores,for free,2,skilled,2,none,yes,bad
523,no checking,24,existing paid,used car,3488,100<=X<500,4<=X<7,3,female div/dep/mar,none,4,car,23,stores,own,1,skilled,1,none,yes,good
524,0<=X<200,18,existing paid,radio/tv,1113,<100,1<=X<4,4,female div/dep/mar,guarantor,4,real estate,26,stores,own,1,unskilled resident,2,none,yes,good
525,0<=X<200,26,existing paid,used car,7966,<100,<1,2,male single,none,3,car,30,stores,own,2,skilled,1,none,yes,good
526,no checking,15,critical/order existing credit,education,1532,100<=X<500,1<=X<4,4,female div/dep/mar,none,3,car,31,stores,own,1,skilled,1,none,yes,good
527,no checking,4,critical/order existing credit,radio/tv,1503,<100,4<=X<7,2,male single,none,1,real estate,42,stores,own,2,unskilled resident,2,none,yes,good
528,<0,36,existing paid,radio/tv,2302,<100,1<=X<4,4,male div/sep,none,4,car,31,stores,rent,1,skilled,1,none,yes,bad
529,<0,6,existing paid,new car,662,<100,<1,3,male single,none,4,real estate,41,stores,own,1,unskilled resident,2,yes,yes,good
530,0<=X<200,36,existing paid,education,2273,<100,4<=X<7,3,male single,none,1,car,32,stores,own,2,skilled,2,none,yes,good
531,0<=X<200,15,existing paid,new car,2631,100<=X<500,1<=X<4,2,female div/dep/mar,none,4,car,28,stores,rent,2,skilled,1,yes,yes,bad
532,no checking,12,delayed previously,used car,1503,<100,1<=X<4,4,male mar/wid,none,4,real estate,41,stores,rent,1,skilled,1,none,yes,good
533,no checking,24,existing paid,radio/tv,1311,100<=X<500,4<=X<7,4,male mar/wid,none,3,life insurance,26,stores,own,1,skilled,1,yes,yes,good
534,no checking,24,existing paid,radio/tv,3105,no known savings,<1,4,male single,none,2,car,25,stores,own,2,skilled,1,none,yes,good
535,>=200,21,critical/order existing credit,education,2319,<100,<1,2,male div/sep,none,1,car,33,stores,rent,1,skilled,1,none,yes,bad
536,<0,6,existing paid,new car,1374,no known savings,unemployed,4,female div/dep/mar,none,3,life insurance,75,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
537,0<=X<200,18,critical/order existing credit,furniture/equipment,3612,<100,>=7,3,female div/dep/mar,none,4,life insurance,37,stores,own,1,skilled,1,yes,yes,good
538,<0,48,existing paid,new car,7763,<100,>=7,4,male single,none,4,no known property,42,bank,for free,1,high qualif/self emp/mgmt,1,none,yes,bad
539,>=200,18,existing paid,furniture/equipment,3049,<100,<1,1,female div/dep/mar,none,1,life insurance,45,,own,1,unskilled resident,1,none,yes,good
540,0<=X<200,12,existing paid,radio/tv,1534,<100,<1,1,male mar/wid,none,1,real estate,23,stores,rent,1,skilled,1,none,yes,bad
541,no checking,24,delayed previously,new car,2032,<100,>=7,4,male single,none,4,no known property,60,stores,for free,2,skilled,1,yes,yes,good
542,<0,30,existing paid,furniture/equipment,6350,no known savings,>=7,4,male single,none,4,life insurance,31,stores,own,1,skilled,1,none,yes,bad
543,>=200,18,existing paid,furniture/equipment,2864,<100,1<=X<4,2,male single,none,1,real estate,34,stores,own,1,unskilled resident,2,none,yes,bad
544,no checking,12,critical/order existing credit,new car,1255,<100,>=7,4,male single,none,4,real estate,61,stores,own,2,unskilled resident,1,none,yes,good
545,<0,24,delayed previously,new car,1333,<100,unemployed,4,male single,none,2,real estate,43,stores,for free,2,skilled,2,none,yes,bad
546,no checking,24,critical/order existing credit,new car,2022,<100,1<=X<4,4,female div/dep/mar,none,4,car,37,stores,own,1,skilled,1,yes,yes,good
547,no checking,24,existing paid,radio/tv,1552,<100,4<=X<7,3,male single,none,1,car,32,bank,own,1,skilled,2,none,yes,good
548,<0,12,all paid,radio/tv,626,<100,1<=X<4,4,female div/dep/mar,none,4,real estate,24,bank,own,1,unskilled resident,1,none,yes,bad
549,no checking,48,critical/order existing credit,used car,8858,no known savings,4<=X<7,2,male single,none,1,no known property,35,stores,for free,2,skilled,1,yes,yes,good
550,no checking,12,critical/order existing credit,repairs,996,no known savings,4<=X<7,4,female div/dep/mar,none,4,real estate,23,stores,own,2,skilled,1,none,yes,good
551,no checking,6,all paid,radio/tv,1750,500<=X<10000,>=7,2,male single,none,4,life insurance,45,bank,own,1,unskilled resident,2,none,yes,good
552,<0,48,existing paid,radio/tv,6999,<100,4<=X<7,1,male mar/wid,guarantor,1,real estate,34,stores,own,2,skilled,1,yes,yes,bad
553,0<=X<200,12,critical/order existing credit,new car,1995,100<=X<500,<1,4,male single,none,1,car,27,stores,own,1,skilled,1,none,yes,good
554,0<=X<200,9,existing paid,education,1199,<100,4<=X<7,4,female div/dep/mar,none,4,life insurance,67,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,good
555,0<=X<200,12,existing paid,radio/tv,1331,<100,<1,2,male single,none,1,car,22,,own,1,skilled,1,none,yes,bad
556,0<=X<200,18,no credits/all paid,new car,2278,100<=X<500,<1,3,female div/dep/mar,none,3,car,28,stores,own,2,skilled,1,none,yes,bad
557,no checking,21,no credits/all paid,new car,5003,no known savings,1<=X<4,1,female div/dep/mar,none,4,life insurance,29,bank,own,2,skilled,1,yes,yes,bad
558,<0,24,all paid,furniture/equipment,3552,<100,4<=X<7,3,male single,none,4,car,27,bank,own,1,skilled,1,none,yes,bad
559,0<=X<200,18,critical/order existing credit,furniture/equipment,1928,<100,<1,2,male single,none,2,real estate,31,stores,own,2,unskilled resident,1,none,yes,bad
560,<0,24,existing paid,used car,2964,no known savings,>=7,4,male single,none,4,no known property,49,bank,for free,1,skilled,2,yes,yes,good
561,<0,24,all paid,radio/tv,1546,<100,4<=X<7,4,male single,guarantor,4,car,24,bank,rent,1,unskilled resident,1,none,yes,bad
562,>=200,6,delayed previously,radio/tv,683,<100,<1,2,female div/dep/mar,none,1,life insurance,29,bank,own,1,skilled,1,none,yes,good
563,0<=X<200,36,existing paid,new car,12389,no known savings,1<=X<4,1,male single,none,4,no known property,37,stores,for free,1,skilled,1,yes,yes,bad
564,0<=X<200,24,delayed previously,business,4712,no known savings,1<=X<4,4,male single,none,2,life insurance,37,bank,own,2,high qualif/self emp/mgmt,1,yes,yes,good
565,0<=X<200,24,delayed previously,radio/tv,1553,100<=X<500,4<=X<7,3,female div/dep/mar,none,2,life insurance,23,stores,rent,2,skilled,1,yes,yes,good
566,<0,12,existing paid,new car,1372,<100,4<=X<7,2,male div/sep,none,3,car,36,stores,own,1,skilled,1,none,yes,bad
567,no checking,24,critical/order existing credit,radio/tv,2578,>=1000,>=7,2,male single,none,2,car,34,stores,own,1,skilled,1,none,yes,good
568,0<=X<200,48,existing paid,radio/tv,3979,no known savings,4<=X<7,4,male single,none,1,car,41,stores,own,2,skilled,2,yes,yes,good
569,<0,48,existing paid,radio/tv,6758,<100,1<=X<4,3,female div/dep/mar,none,2,car,31,stores,own,1,skilled,1,yes,yes,bad
570,<0,24,existing paid,furniture/equipment,3234,<100,<1,4,female div/dep/mar,none,4,real estate,23,stores,rent,1,unskilled resident,1,yes,yes,bad
571,no checking,30,critical/order existing credit,radio/tv,5954,<100,4<=X<7,3,male single,co applicant,2,car,38,stores,own,1,skilled,1,none,yes,good
572,no checking,24,existing paid,used car,5433,no known savings,unemployed,2,female div/dep/mar,none,4,life insurance,26,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,good
573,<0,15,existing paid,business,806,<100,1<=X<4,4,female div/dep/mar,none,4,life insurance,22,stores,own,1,unskilled resident,1,none,yes,good
574,0<=X<200,9,existing paid,radio/tv,1082,<100,>=7,4,male single,none,4,car,27,stores,own,2,unskilled resident,1,none,yes,good
575,no checking,15,critical/order existing credit,furniture/equipment,2788,<100,4<=X<7,2,female div/dep/mar,co applicant,3,car,24,bank,own,2,skilled,1,none,yes,good
576,0<=X<200,12,existing paid,radio/tv,2930,<100,4<=X<7,2,female div/dep/mar,none,1,real estate,27,stores,own,1,skilled,1,none,yes,good
577,no checking,24,critical/order existing credit,education,1927,no known savings,1<=X<4,3,female div/dep/mar,none,2,car,33,stores,own,2,skilled,1,yes,yes,good
578,0<=X<200,36,critical/order existing credit,new car,2820,<100,<1,4,male div/sep,none,4,car,27,stores,own,2,skilled,1,none,yes,bad
579,no checking,24,existing paid,retraining,937,<100,<1,4,male mar/wid,none,3,car,27,stores,own,2,unskilled resident,1,none,yes,good
580,0<=X<200,18,critical/order existing credit,new car,1056,<100,>=7,3,male single,guarantor,3,real estate,30,bank,own,2,skilled,1,none,yes,bad
581,0<=X<200,12,critical/order existing credit,new car,3124,<100,<1,1,male single,none,3,real estate,49,bank,own,2,unskilled resident,2,none,yes,good
582,no checking,9,existing paid,furniture/equipment,1388,<100,1<=X<4,4,female div/dep/mar,none,2,real estate,26,stores,rent,1,skilled,1,none,yes,good
583,0<=X<200,36,existing paid,repairs,2384,<100,<1,4,male single,none,1,no known property,33,stores,rent,1,unskilled resident,1,none,yes,bad
584,no checking,12,existing paid,new car,2133,no known savings,>=7,4,female div/dep/mar,none,4,no known property,52,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
585,<0,18,existing paid,furniture/equipment,2039,<100,1<=X<4,1,female div/dep/mar,none,4,real estate,20,bank,rent,1,skilled,1,none,yes,bad
586,<0,9,critical/order existing credit,new car,2799,<100,1<=X<4,2,male single,none,2,real estate,36,stores,rent,2,skilled,2,none,yes,good
587,<0,12,existing paid,furniture/equipment,1289,<100,1<=X<4,4,male single,guarantor,1,life insurance,21,stores,own,1,unskilled resident,1,none,yes,good
588,<0,18,existing paid,domestic appliance,1217,<100,1<=X<4,4,male mar/wid,none,3,real estate,47,stores,own,1,unskilled resident,1,yes,yes,bad
589,<0,12,critical/order existing credit,furniture/equipment,2246,<100,>=7,3,male single,none,3,life insurance,60,stores,own,2,skilled,1,none,yes,bad
590,<0,12,critical/order existing credit,radio/tv,385,<100,4<=X<7,4,female div/dep/mar,none,3,real estate,58,stores,own,4,unskilled resident,1,yes,yes,good
591,0<=X<200,24,delayed previously,new car,1965,no known savings,1<=X<4,4,female div/dep/mar,none,4,car,42,stores,rent,2,skilled,1,yes,yes,good
592,no checking,21,existing paid,business,1572,>=1000,>=7,4,female div/dep/mar,none,4,real estate,36,bank,own,1,unskilled resident,1,none,yes,good
593,0<=X<200,24,existing paid,new car,2718,<100,1<=X<4,3,female div/dep/mar,none,4,life insurance,20,stores,rent,1,unskilled resident,1,yes,yes,bad
594,<0,24,all paid,other,1358,no known savings,>=7,4,male single,none,3,car,40,,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
595,0<=X<200,6,all paid,new car,931,100<=X<500,<1,1,female div/dep/mar,none,1,life insurance,32,,own,1,unskilled resident,1,none,yes,bad
596,<0,24,existing paid,new car,1442,<100,4<=X<7,4,female div/dep/mar,none,4,car,23,stores,rent,2,skilled,1,none,yes,bad
597,0<=X<200,24,no credits/all paid,business,4241,<100,1<=X<4,1,male single,none,4,real estate,36,stores,own,3,unskilled resident,1,yes,yes,bad
598,no checking,18,critical/order existing credit,new car,2775,<100,4<=X<7,2,male single,none,2,life insurance,31,bank,own,2,skilled,1,none,yes,bad
599,no checking,24,delayed previously,business,3863,<100,1<=X<4,1,male single,none,2,no known property,32,stores,for free,1,skilled,1,none,yes,good
600,0<=X<200,7,existing paid,radio/tv,2329,<100,<1,1,female div/dep/mar,guarantor,1,real estate,45,stores,own,1,skilled,1,none,yes,good
601,0<=X<200,9,existing paid,furniture/equipment,918,<100,1<=X<4,4,female div/dep/mar,none,1,life insurance,30,stores,own,1,skilled,1,none,yes,bad
602,0<=X<200,24,all paid,education,1837,<100,4<=X<7,4,female div/dep/mar,none,4,no known property,34,bank,for free,1,unskilled resident,1,none,yes,bad
603,no checking,36,existing paid,furniture/equipment,3349,<100,1<=X<4,4,female div/dep/mar,none,2,car,28,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
604,>=200,10,existing paid,furniture/equipment,1275,<100,<1,4,female div/dep/mar,none,2,life insurance,23,stores,own,1,skilled,1,none,yes,good
605,<0,24,all paid,furniture/equipment,2828,500<=X<10000,1<=X<4,4,male single,none,4,real estate,22,,own,1,skilled,1,yes,yes,good
606,no checking,24,critical/order existing credit,business,4526,<100,1<=X<4,3,male single,none,2,real estate,74,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
607,0<=X<200,36,existing paid,radio/tv,2671,100<=X<500,1<=X<4,4,female div/dep/mar,co applicant,4,no known property,50,stores,for free,1,skilled,1,none,yes,bad
608,no checking,18,existing paid,radio/tv,2051,<100,<1,4,male single,none,1,real estate,33,stores,own,1,skilled,1,none,yes,good
609,no checking,15,existing paid,used car,1300,no known savings,>=7,4,male single,none,4,no known property,45,bank,for free,1,skilled,2,none,yes,good
610,<0,12,existing paid,domestic appliance,741,100<=X<500,unemployed,4,female div/dep/mar,none,3,life insurance,22,stores,own,1,skilled,1,none,yes,bad
611,>=200,10,existing paid,new car,1240,100<=X<500,>=7,1,female div/dep/mar,none,4,no known property,48,stores,for free,1,unskilled resident,2,none,yes,bad
612,<0,21,existing paid,radio/tv,3357,>=1000,<1,4,female div/dep/mar,none,2,car,29,bank,own,1,skilled,1,none,yes,good
613,<0,24,all paid,used car,3632,<100,1<=X<4,1,female div/dep/mar,guarantor,4,car,22,bank,rent,1,skilled,1,none,no,good
614,no checking,18,delayed previously,furniture/equipment,1808,<100,4<=X<7,4,female div/dep/mar,none,1,real estate,22,stores,own,1,skilled,1,none,yes,bad
615,0<=X<200,48,no credits/all paid,business,12204,no known savings,1<=X<4,2,male single,none,2,car,48,bank,own,1,high qualif/self emp/mgmt,1,yes,yes,good
616,0<=X<200,60,delayed previously,radio/tv,9157,no known savings,1<=X<4,2,male single,none,2,no known property,27,stores,for free,1,high qualif/self emp/mgmt,1,none,yes,good
617,<0,6,critical/order existing credit,new car,3676,<100,1<=X<4,1,male single,none,3,real estate,37,stores,rent,3,skilled,2,none,yes,good
618,0<=X<200,30,existing paid,furniture/equipment,3441,100<=X<500,1<=X<4,2,female div/dep/mar,co applicant,4,car,21,stores,rent,1,skilled,1,none,yes,bad
619,no checking,12,existing paid,new car,640,<100,1<=X<4,4,male div/sep,none,2,real estate,49,stores,own,1,unskilled resident,1,none,yes,good
620,0<=X<200,21,critical/order existing credit,business,3652,<100,4<=X<7,2,male single,none,3,life insurance,27,stores,own,2,skilled,1,none,yes,good
621,no checking,18,critical/order existing credit,new car,1530,<100,1<=X<4,3,male single,none,2,life insurance,32,bank,own,2,skilled,1,none,yes,bad
622,no checking,48,existing paid,business,3914,no known savings,1<=X<4,4,male div/sep,none,2,real estate,38,bank,own,1,skilled,1,none,yes,bad
623,<0,12,existing paid,furniture/equipment,1858,<100,<1,4,female div/dep/mar,none,1,car,22,stores,rent,1,skilled,1,none,yes,good
624,<0,18,existing paid,radio/tv,2600,<100,1<=X<4,4,male single,none,4,no known property,65,stores,for free,2,skilled,1,none,yes,bad
625,no checking,15,existing paid,radio/tv,1979,no known savings,>=7,4,male single,none,2,car,35,stores,own,1,skilled,1,none,yes,good
626,>=200,6,existing paid,furniture/equipment,2116,<100,1<=X<4,2,male single,none,2,real estate,41,stores,own,1,skilled,1,yes,yes,good
627,0<=X<200,9,all paid,new car,1437,100<=X<500,4<=X<7,2,male single,none,3,no known property,29,stores,own,1,skilled,1,none,yes,bad
628,no checking,42,critical/order existing credit,furniture/equipment,4042,500<=X<10000,1<=X<4,4,male single,none,4,real estate,36,stores,own,2,skilled,1,yes,yes,good
629,no checking,9,existing paid,education,3832,no known savings,>=7,1,male single,none,4,real estate,64,stores,own,1,unskilled resident,1,none,yes,good
630,<0,24,existing paid,radio/tv,3660,<100,1<=X<4,2,female div/dep/mar,none,4,car,28,stores,own,1,skilled,1,none,yes,good
631,<0,18,all paid,furniture/equipment,1553,<100,1<=X<4,4,male single,none,3,car,44,bank,own,1,skilled,1,none,yes,bad
632,0<=X<200,15,existing paid,radio/tv,1444,no known savings,<1,4,male single,none,1,life insurance,23,stores,own,1,skilled,1,none,yes,good
633,no checking,9,existing paid,furniture/equipment,1980,<100,<1,2,female div/dep/mar,co applicant,2,car,19,stores,rent,2,skilled,1,none,yes,bad
634,0<=X<200,24,existing paid,new car,1355,<100,<1,3,female div/dep/mar,none,4,car,25,stores,own,1,unskilled resident,1,yes,yes,bad
635,no checking,12,existing paid,education,1393,<100,>=7,4,male single,none,4,life insurance,47,bank,own,3,skilled,2,yes,yes,good
636,no checking,24,existing paid,radio/tv,1376,500<=X<10000,4<=X<7,4,female div/dep/mar,none,1,car,28,stores,own,1,skilled,1,none,yes,good
637,no checking,60,delayed previously,radio/tv,15653,<100,4<=X<7,2,male single,none,4,car,21,stores,own,2,skilled,1,yes,yes,good
638,no checking,12,existing paid,radio/tv,1493,<100,<1,4,female div/dep/mar,none,3,car,34,stores,own,1,skilled,2,none,yes,good
639,<0,42,delayed previously,radio/tv,4370,<100,4<=X<7,3,male single,none,2,life insurance,26,bank,own,2,skilled,2,yes,yes,bad
640,<0,18,existing paid,education,750,<100,unemployed,4,female div/dep/mar,none,1,real estate,27,stores,own,1,unemp/unskilled non res,1,none,yes,bad
641,0<=X<200,15,existing paid,repairs,1308,<100,>=7,4,male single,none,4,car,38,stores,own,2,unskilled resident,1,none,yes,good
642,no checking,15,existing paid,education,4623,100<=X<500,1<=X<4,3,male single,none,2,life insurance,40,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
643,no checking,24,critical/order existing credit,radio/tv,1851,<100,4<=X<7,4,male mar/wid,guarantor,2,car,33,stores,own,2,skilled,1,yes,yes,good
644,<0,18,critical/order existing credit,radio/tv,1880,<100,4<=X<7,4,male mar/wid,none,1,life insurance,32,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,good
645,no checking,36,delayed previously,business,7980,no known savings,<1,4,male single,none,4,car,27,stores,rent,2,skilled,1,yes,yes,bad
646,<0,30,no credits/all paid,furniture/equipment,4583,<100,1<=X<4,2,male div/sep,guarantor,2,real estate,32,stores,own,2,skilled,1,none,yes,good
647,no checking,12,existing paid,new car,1386,500<=X<10000,1<=X<4,2,female div/dep/mar,none,2,life insurance,26,stores,own,1,skilled,1,none,yes,bad
648,>=200,24,existing paid,new car,947,<100,4<=X<7,4,male single,none,3,no known property,38,bank,for free,1,skilled,2,none,yes,bad
649,<0,12,existing paid,education,684,<100,1<=X<4,4,male single,none,4,car,40,stores,rent,1,unskilled resident,2,none,yes,bad
650,<0,48,existing paid,education,7476,<100,4<=X<7,4,male single,none,1,no known property,50,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
651,0<=X<200,12,existing paid,furniture/equipment,1922,<100,1<=X<4,4,male single,none,2,life insurance,37,stores,own,1,unskilled resident,1,none,yes,bad
652,<0,24,existing paid,new car,2303,<100,>=7,4,male single,co applicant,1,real estate,45,stores,own,1,skilled,1,none,yes,bad
653,0<=X<200,36,delayed previously,new car,8086,100<=X<500,>=7,2,male single,none,4,car,42,stores,own,4,high qualif/self emp/mgmt,1,yes,yes,bad
654,no checking,24,critical/order existing credit,used car,2346,<100,4<=X<7,4,male single,none,3,car,35,stores,own,2,skilled,1,yes,yes,good
655,<0,14,existing paid,new car,3973,<100,unemployed,1,male single,none,4,no known property,22,stores,for free,1,skilled,1,none,yes,good
656,0<=X<200,12,existing paid,new car,888,<100,>=7,4,male single,none,4,car,41,bank,own,1,unskilled resident,2,none,yes,bad
657,no checking,48,existing paid,radio/tv,10222,no known savings,4<=X<7,4,male single,none,3,car,37,,own,1,skilled,1,yes,yes,good
658,0<=X<200,30,no credits/all paid,business,4221,<100,1<=X<4,2,female div/dep/mar,none,1,car,28,stores,own,2,skilled,1,none,yes,good
659,0<=X<200,18,critical/order existing credit,furniture/equipment,6361,<100,>=7,2,male single,none,1,no known property,41,stores,own,1,skilled,1,yes,yes,good
660,>=200,12,existing paid,radio/tv,1297,<100,1<=X<4,3,male mar/wid,none,4,real estate,23,stores,rent,1,skilled,1,none,yes,good
661,<0,12,existing paid,new car,900,no known savings,1<=X<4,4,male mar/wid,none,2,car,23,stores,own,1,skilled,1,none,yes,bad
662,no checking,21,existing paid,furniture/equipment,2241,<100,>=7,4,male single,none,2,real estate,50,stores,own,2,skilled,1,none,yes,good
663,0<=X<200,6,delayed previously,furniture/equipment,1050,<100,unemployed,4,male single,none,1,life insurance,35,,own,2,high qualif/self emp/mgmt,1,yes,yes,good
664,>=200,6,critical/order existing credit,education,1047,<100,1<=X<4,2,female div/dep/mar,none,4,life insurance,50,stores,own,1,unskilled resident,1,none,yes,good
665,no checking,24,critical/order existing credit,other,6314,<100,unemployed,4,male single,co applicant,2,no known property,27,bank,own,2,high qualif/self emp/mgmt,1,yes,yes,good
666,0<=X<200,30,all paid,furniture/equipment,3496,>=1000,1<=X<4,4,male single,none,2,car,34,,own,1,skilled,2,yes,yes,good
667,no checking,48,all paid,business,3609,<100,1<=X<4,1,female div/dep/mar,none,1,real estate,27,,own,1,skilled,1,none,yes,good
668,<0,12,critical/order existing credit,new car,4843,<100,>=7,3,male single,co applicant,4,life insurance,43,stores,rent,2,skilled,1,yes,yes,bad
669,>=200,30,critical/order existing credit,radio/tv,3017,<100,>=7,4,male single,none,4,life insurance,47,stores,own,1,skilled,1,none,yes,good
670,no checking,24,critical/order existing credit,business,4139,100<=X<500,1<=X<4,3,male single,none,3,life insurance,27,stores,own,2,unskilled resident,1,yes,yes,good
671,no checking,36,existing paid,business,5742,100<=X<500,4<=X<7,2,male single,none,2,car,31,stores,own,2,skilled,1,yes,yes,good
672,no checking,60,existing paid,new car,10366,<100,>=7,2,male single,none,4,life insurance,42,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
673,no checking,6,critical/order existing credit,new car,2080,500<=X<10000,1<=X<4,1,male mar/wid,none,2,car,24,stores,own,1,skilled,1,none,yes,good
674,no checking,21,delayed previously,business,2580,500<=X<10000,<1,4,male single,none,2,real estate,41,bank,own,1,unskilled resident,2,none,yes,bad
675,no checking,30,critical/order existing credit,radio/tv,4530,<100,4<=X<7,4,female div/dep/mar,none,4,car,26,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,good
676,no checking,24,critical/order existing credit,furniture/equipment,5150,<100,>=7,4,male single,none,4,car,33,stores,own,1,skilled,1,yes,yes,good
677,0<=X<200,72,existing paid,radio/tv,5595,100<=X<500,1<=X<4,2,male mar/wid,none,2,car,24,stores,own,1,skilled,1,none,yes,bad
678,<0,24,existing paid,radio/tv,2384,<100,>=7,4,male single,none,4,real estate,64,bank,rent,1,unskilled resident,1,none,yes,good
679,no checking,18,existing paid,radio/tv,1453,<100,<1,3,female div/dep/mar,none,1,real estate,26,stores,own,1,skilled,1,none,yes,good
680,no checking,6,existing paid,education,1538,<100,<1,1,female div/dep/mar,none,2,no known property,56,stores,own,1,skilled,1,none,yes,good
681,no checking,12,existing paid,radio/tv,2279,no known savings,1<=X<4,4,male single,none,4,no known property,37,stores,for free,1,skilled,1,yes,yes,good
682,no checking,15,delayed previously,radio/tv,1478,<100,1<=X<4,4,male mar/wid,none,3,real estate,33,bank,own,2,skilled,1,none,yes,good
683,no checking,24,critical/order existing credit,radio/tv,5103,<100,<1,3,male mar/wid,none,3,no known property,47,stores,for free,3,skilled,1,yes,yes,good
684,0<=X<200,36,delayed previously,business,9857,100<=X<500,4<=X<7,1,male single,none,3,life insurance,31,stores,own,2,unskilled resident,2,yes,yes,good
685,no checking,60,existing paid,new car,6527,no known savings,1<=X<4,4,male single,none,4,no known property,34,stores,for free,1,skilled,2,yes,yes,good
686,>=200,10,critical/order existing credit,radio/tv,1347,no known savings,4<=X<7,4,male single,none,2,life insurance,27,stores,own,2,skilled,1,yes,yes,good
687,0<=X<200,36,delayed previously,new car,2862,100<=X<500,>=7,4,male single,none,3,no known property,30,stores,for free,1,skilled,1,none,yes,good
688,no checking,9,existing paid,radio/tv,2753,100<=X<500,>=7,3,male single,co applicant,4,car,35,stores,own,1,skilled,1,yes,yes,good
689,<0,12,existing paid,new car,3651,>=1000,1<=X<4,1,male single,none,3,life insurance,31,stores,own,1,skilled,2,none,yes,good
690,<0,15,critical/order existing credit,furniture/equipment,975,<100,1<=X<4,2,male div/sep,none,3,life insurance,25,stores,own,2,skilled,1,none,yes,good
691,0<=X<200,15,existing paid,repairs,2631,100<=X<500,1<=X<4,3,female div/dep/mar,none,2,real estate,25,stores,own,1,unskilled resident,1,none,yes,good
692,0<=X<200,24,existing paid,radio/tv,2896,100<=X<500,<1,2,male single,none,1,car,29,stores,own,1,skilled,1,none,yes,good
693,<0,6,critical/order existing credit,new car,4716,no known savings,<1,1,male single,none,3,real estate,44,stores,own,2,unskilled resident,2,none,yes,good
694,no checking,24,existing paid,radio/tv,2284,<100,4<=X<7,4,male single,none,2,car,28,stores,own,1,skilled,1,yes,yes,good
695,no checking,6,existing paid,used car,1236,500<=X<10000,1<=X<4,2,male single,none,4,life insurance,50,stores,rent,1,skilled,1,none,yes,good
696,0<=X<200,12,existing paid,radio/tv,1103,<100,4<=X<7,4,male single,guarantor,3,real estate,29,stores,own,2,skilled,1,none,no,good
697,no checking,12,critical/order existing credit,new car,926,<100,unemployed,1,female div/dep/mar,none,2,life insurance,38,stores,own,1,unemp/unskilled non res,1,none,yes,good
698,no checking,18,critical/order existing credit,radio/tv,1800,<100,1<=X<4,4,male single,none,2,car,24,stores,own,2,skilled,1,none,yes,good
699,>=200,15,existing paid,education,1905,<100,>=7,4,male single,none,4,car,40,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,good
700,no checking,12,existing paid,furniture/equipment,1123,500<=X<10000,1<=X<4,4,female div/dep/mar,none,4,car,29,stores,rent,1,unskilled resident,1,none,yes,bad
701,<0,48,critical/order existing credit,used car,6331,<100,>=7,4,male single,none,4,no known property,46,stores,for free,2,skilled,1,yes,yes,bad
702,>=200,24,existing paid,radio/tv,1377,100<=X<500,>=7,4,female div/dep/mar,none,2,no known property,47,stores,for free,1,skilled,1,yes,yes,good
703,0<=X<200,30,delayed previously,business,2503,100<=X<500,>=7,4,male single,none,2,life insurance,41,,own,2,skilled,1,none,yes,good
704,0<=X<200,27,existing paid,business,2528,<100,<1,4,female div/dep/mar,none,1,life insurance,32,stores,own,1,skilled,2,yes,yes,good
705,no checking,15,existing paid,new car,5324,500<=X<10000,>=7,1,female div/dep/mar,none,4,no known property,35,stores,for free,1,skilled,1,none,yes,good
706,0<=X<200,48,existing paid,new car,6560,100<=X<500,4<=X<7,3,male single,none,2,life insurance,24,stores,own,1,skilled,1,none,yes,bad
707,0<=X<200,12,no credits/all paid,furniture/equipment,2969,<100,<1,4,female div/dep/mar,none,3,life insurance,25,stores,rent,2,skilled,1,none,yes,bad
708,0<=X<200,9,existing paid,radio/tv,1206,<100,>=7,4,female div/dep/mar,none,4,real estate,25,stores,own,1,skilled,1,none,yes,good
709,0<=X<200,9,existing paid,radio/tv,2118,<100,1<=X<4,2,male single,none,2,real estate,37,stores,own,1,unskilled resident,2,none,yes,good
710,no checking,18,critical/order existing credit,radio/tv,629,500<=X<10000,>=7,4,male single,none,3,life insurance,32,bank,own,2,high qualif/self emp/mgmt,1,yes,yes,good
711,<0,6,all paid,education,1198,<100,>=7,4,female div/dep/mar,none,4,no known property,35,stores,for free,1,skilled,1,none,yes,bad
712,no checking,21,existing paid,used car,2476,no known savings,>=7,4,male single,none,4,real estate,46,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
713,<0,9,critical/order existing credit,radio/tv,1138,<100,1<=X<4,4,male single,none,4,real estate,25,stores,own,2,unskilled resident,1,none,yes,good
714,0<=X<200,60,existing paid,new car,14027,<100,4<=X<7,4,male single,none,2,no known property,27,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
715,no checking,30,critical/order existing credit,used car,7596,no known savings,>=7,1,male single,none,4,car,63,stores,own,2,skilled,1,none,yes,good
716,no checking,30,critical/order existing credit,radio/tv,3077,no known savings,>=7,3,male single,none,2,car,40,stores,own,2,skilled,2,yes,yes,good
717,no checking,18,existing paid,radio/tv,1505,<100,1<=X<4,4,male single,none,2,no known property,32,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
718,>=200,24,critical/order existing credit,radio/tv,3148,no known savings,1<=X<4,3,male single,none,2,car,31,stores,own,2,skilled,1,yes,yes,good
719,0<=X<200,20,no credits/all paid,used car,6148,100<=X<500,>=7,3,male mar/wid,none,4,car,31,bank,own,2,skilled,1,yes,yes,good
720,>=200,9,no credits/all paid,radio/tv,1337,<100,<1,4,male single,none,2,car,34,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,bad
721,0<=X<200,6,all paid,education,433,>=1000,<1,4,female div/dep/mar,none,2,life insurance,24,bank,rent,1,skilled,2,none,yes,bad
722,<0,12,existing paid,new car,1228,<100,1<=X<4,4,female div/dep/mar,none,2,real estate,24,stores,own,1,unskilled resident,1,none,yes,bad
723,0<=X<200,9,existing paid,radio/tv,790,500<=X<10000,1<=X<4,4,female div/dep/mar,none,3,real estate,66,stores,own,1,unskilled resident,1,none,yes,good
724,no checking,27,existing paid,new car,2570,<100,1<=X<4,3,female div/dep/mar,none,3,real estate,21,stores,rent,1,skilled,1,none,yes,bad
725,no checking,6,critical/order existing credit,new car,250,>=1000,1<=X<4,2,female div/dep/mar,none,2,real estate,41,bank,own,2,unskilled resident,1,none,yes,good
726,no checking,15,critical/order existing credit,radio/tv,1316,500<=X<10000,1<=X<4,2,male mar/wid,none,2,life insurance,47,stores,own,2,unskilled resident,1,none,yes,good
727,<0,18,existing paid,radio/tv,1882,<100,1<=X<4,4,female div/dep/mar,none,4,car,25,bank,rent,2,skilled,1,none,yes,bad
728,0<=X<200,48,all paid,business,6416,<100,>=7,4,female div/dep/mar,none,3,no known property,59,stores,rent,1,skilled,1,none,yes,bad
729,>=200,24,critical/order existing credit,business,1275,>=1000,1<=X<4,2,male div/sep,none,4,real estate,36,stores,own,2,skilled,1,yes,yes,good
730,0<=X<200,24,delayed previously,radio/tv,6403,<100,<1,1,male single,none,2,car,33,stores,own,1,skilled,1,none,yes,good
731,<0,24,existing paid,radio/tv,1987,<100,1<=X<4,2,male single,none,4,real estate,21,stores,rent,1,unskilled resident,2,none,yes,bad
732,0<=X<200,8,existing paid,radio/tv,760,<100,4<=X<7,4,female div/dep/mar,guarantor,2,real estate,44,stores,own,1,unskilled resident,1,none,yes,good
733,no checking,24,existing paid,used car,2603,>=1000,1<=X<4,2,female div/dep/mar,none,4,car,28,stores,rent,1,skilled,1,yes,yes,good
734,no checking,4,critical/order existing credit,new car,3380,<100,4<=X<7,1,female div/dep/mar,none,1,real estate,37,stores,own,1,skilled,2,none,yes,good
735,0<=X<200,36,all paid,domestic appliance,3990,no known savings,<1,3,female div/dep/mar,none,2,no known property,29,bank,own,1,unemp/unskilled non res,1,none,yes,good
736,0<=X<200,24,existing paid,used car,11560,<100,1<=X<4,1,female div/dep/mar,none,4,car,23,stores,rent,2,high qualif/self emp/mgmt,1,none,yes,bad
737,<0,18,existing paid,new car,4380,100<=X<500,1<=X<4,3,male single,none,4,car,35,stores,own,1,unskilled resident,2,yes,yes,good
738,no checking,6,critical/order existing credit,new car,6761,<100,4<=X<7,1,male single,none,3,no known property,45,stores,own,2,high qualif/self emp/mgmt,2,yes,yes,good
739,0<=X<200,30,no credits/all paid,business,4280,100<=X<500,1<=X<4,4,female div/dep/mar,none,4,car,26,stores,rent,2,unskilled resident,1,none,yes,bad
740,<0,24,all paid,new car,2325,100<=X<500,4<=X<7,2,male single,none,3,car,32,bank,own,1,skilled,1,none,yes,good
741,0<=X<200,10,all paid,radio/tv,1048,<100,1<=X<4,4,male single,none,4,real estate,23,,own,1,unskilled resident,1,none,yes,good
742,no checking,21,existing paid,radio/tv,3160,no known savings,>=7,4,male single,none,3,life insurance,41,stores,own,1,skilled,1,yes,yes,good
743,<0,24,all paid,furniture/equipment,2483,500<=X<10000,1<=X<4,4,male single,none,4,real estate,22,,own,1,skilled,1,yes,yes,good
744,<0,39,critical/order existing credit,furniture/equipment,14179,no known savings,4<=X<7,4,male single,none,4,life insurance,30,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,good
745,<0,13,critical/order existing credit,business,1797,<100,<1,3,male single,none,1,life insurance,28,bank,own,2,unskilled resident,1,none,yes,good
746,<0,15,existing paid,new car,2511,<100,unemployed,1,female div/dep/mar,none,4,car,23,stores,rent,1,skilled,1,none,yes,good
747,<0,12,existing paid,new car,1274,<100,<1,3,female div/dep/mar,none,1,real estate,37,stores,own,1,unskilled resident,1,none,yes,bad
748,no checking,21,existing paid,used car,5248,no known savings,1<=X<4,1,male single,none,3,car,26,stores,own,1,skilled,1,none,yes,good
749,no checking,15,existing paid,used car,3029,<100,4<=X<7,2,male single,none,2,car,33,stores,own,1,skilled,1,none,yes,good
750,<0,6,existing paid,furniture/equipment,428,<100,>=7,2,female div/dep/mar,none,1,life insurance,49,bank,own,1,skilled,1,yes,yes,good
751,<0,18,existing paid,new car,976,<100,<1,1,female div/dep/mar,none,2,car,23,stores,own,1,unskilled resident,1,none,yes,bad
752,0<=X<200,12,existing paid,business,841,100<=X<500,4<=X<7,2,female div/dep/mar,none,4,real estate,23,stores,rent,1,unskilled resident,1,none,yes,good
753,no checking,30,critical/order existing credit,radio/tv,5771,<100,4<=X<7,4,female div/dep/mar,none,2,car,25,stores,own,2,skilled,1,none,yes,good
754,no checking,12,delayed previously,repairs,1555,>=1000,>=7,4,male single,none,4,no known property,55,stores,for free,2,skilled,2,none,yes,bad
755,<0,24,existing paid,new car,1285,no known savings,4<=X<7,4,female div/dep/mar,none,4,no known property,32,stores,rent,1,skilled,1,none,yes,bad
756,>=200,6,critical/order existing credit,new car,1299,<100,1<=X<4,1,male single,none,1,real estate,74,stores,own,3,unemp/unskilled non res,2,none,no,good
757,>=200,15,critical/order existing credit,radio/tv,1271,no known savings,1<=X<4,3,male single,none,4,no known property,39,stores,for free,2,skilled,1,yes,yes,bad
758,no checking,24,existing paid,new car,1393,<100,1<=X<4,2,male single,guarantor,2,real estate,31,stores,own,1,skilled,1,yes,yes,good
759,<0,12,critical/order existing credit,new car,691,<100,>=7,4,male single,none,3,life insurance,35,stores,own,2,skilled,1,none,yes,bad
760,no checking,15,critical/order existing credit,new car,5045,no known savings,>=7,1,female div/dep/mar,none,4,car,59,stores,own,1,skilled,1,yes,yes,good
761,<0,18,critical/order existing credit,furniture/equipment,2124,<100,1<=X<4,4,female div/dep/mar,none,4,real estate,24,stores,rent,2,skilled,1,none,yes,bad
762,<0,12,existing paid,radio/tv,2214,<100,1<=X<4,4,male single,none,3,life insurance,24,stores,own,1,unskilled resident,1,none,yes,good
763,no checking,21,critical/order existing credit,new car,12680,no known savings,>=7,4,male single,none,4,no known property,30,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,bad
764,no checking,24,critical/order existing credit,new car,2463,100<=X<500,4<=X<7,4,male mar/wid,none,3,life insurance,27,stores,own,2,skilled,1,yes,yes,good
765,0<=X<200,12,existing paid,radio/tv,1155,<100,>=7,3,male mar/wid,guarantor,3,real estate,40,bank,own,2,unskilled resident,1,none,yes,good
766,<0,30,existing paid,furniture/equipment,3108,<100,<1,2,male div/sep,none,4,life insurance,31,stores,own,1,unskilled resident,1,none,yes,bad
767,no checking,10,existing paid,used car,2901,no known savings,<1,1,female div/dep/mar,none,4,real estate,31,stores,rent,1,skilled,1,none,yes,good
768,0<=X<200,12,critical/order existing credit,furniture/equipment,3617,<100,>=7,1,male single,none,4,car,28,stores,rent,3,skilled,1,yes,yes,good
769,no checking,12,critical/order existing credit,radio/tv,1655,<100,>=7,2,male single,none,4,real estate,63,stores,own,2,unskilled resident,1,yes,yes,good
770,<0,24,existing paid,used car,2812,no known savings,>=7,2,female div/dep/mar,none,4,real estate,26,stores,rent,1,skilled,1,none,yes,good
771,<0,36,critical/order existing credit,education,8065,<100,1<=X<4,3,female div/dep/mar,none,2,no known property,25,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,bad
772,no checking,21,critical/order existing credit,used car,3275,<100,>=7,1,male single,none,4,car,36,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
773,no checking,24,critical/order existing credit,radio/tv,2223,100<=X<500,>=7,4,male single,none,4,life insurance,52,bank,own,2,skilled,1,none,yes,good
774,>=200,12,critical/order existing credit,new car,1480,500<=X<10000,unemployed,2,male single,none,4,no known property,66,bank,for free,3,unemp/unskilled non res,1,none,yes,good
775,<0,24,existing paid,new car,1371,no known savings,1<=X<4,4,female div/dep/mar,none,4,real estate,25,stores,rent,1,skilled,1,none,yes,bad
776,no checking,36,critical/order existing credit,new car,3535,<100,4<=X<7,4,male single,none,4,car,37,stores,own,2,skilled,1,yes,yes,good
777,<0,18,existing paid,radio/tv,3509,<100,4<=X<7,4,female div/dep/mar,guarantor,1,real estate,25,stores,own,1,skilled,1,none,yes,good
778,no checking,36,critical/order existing credit,used car,5711,>=1000,>=7,4,male single,none,2,car,38,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,good
779,0<=X<200,18,existing paid,repairs,3872,<100,unemployed,2,female div/dep/mar,none,4,car,67,stores,own,1,skilled,1,yes,yes,good
780,0<=X<200,39,critical/order existing credit,radio/tv,4933,<100,4<=X<7,2,male single,guarantor,2,real estate,25,stores,own,2,skilled,1,none,yes,bad
781,no checking,24,critical/order existing credit,new car,1940,>=1000,>=7,4,male single,none,4,real estate,60,stores,own,1,skilled,1,yes,yes,good
782,0<=X<200,12,no credits/all paid,retraining,1410,<100,1<=X<4,2,male single,none,2,real estate,31,stores,own,1,unskilled resident,1,yes,yes,good
783,0<=X<200,12,existing paid,new car,836,100<=X<500,<1,4,female div/dep/mar,none,2,life insurance,23,bank,own,1,unskilled resident,1,none,yes,bad
784,0<=X<200,20,existing paid,used car,6468,no known savings,unemployed,1,male div/sep,none,4,real estate,60,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
785,0<=X<200,18,existing paid,business,1941,>=1000,1<=X<4,4,male single,none,2,life insurance,35,stores,own,1,unskilled resident,1,yes,yes,good
786,no checking,22,existing paid,radio/tv,2675,500<=X<10000,>=7,3,male single,none,4,car,40,stores,own,1,skilled,1,none,yes,good
787,no checking,48,critical/order existing credit,used car,2751,no known savings,>=7,4,male single,none,3,car,38,stores,own,2,skilled,2,yes,yes,good
788,0<=X<200,48,delayed previously,education,6224,<100,>=7,4,male single,none,4,no known property,50,stores,for free,1,skilled,1,none,yes,bad
789,<0,40,critical/order existing credit,education,5998,<100,1<=X<4,4,male single,none,3,no known property,27,bank,own,1,skilled,1,yes,yes,bad
790,0<=X<200,21,existing paid,business,1188,<100,>=7,2,female div/dep/mar,none,4,life insurance,39,stores,own,1,skilled,2,none,yes,bad
791,no checking,24,existing paid,used car,6313,no known savings,>=7,3,male single,none,4,car,41,stores,own,1,high qualif/self emp/mgmt,2,yes,yes,good
792,no checking,6,critical/order existing credit,furniture/equipment,1221,no known savings,1<=X<4,1,male mar/wid,none,2,life insurance,27,stores,own,2,skilled,1,none,yes,good
793,>=200,24,existing paid,furniture/equipment,2892,<100,>=7,3,male div/sep,none,4,no known property,51,stores,for free,1,skilled,1,none,yes,good
794,no checking,24,existing paid,furniture/equipment,3062,500<=X<10000,>=7,4,male single,none,3,no known property,32,stores,rent,1,skilled,1,yes,yes,good
795,no checking,9,existing paid,furniture/equipment,2301,100<=X<500,<1,2,female div/dep/mar,none,4,life insurance,22,stores,rent,1,skilled,1,none,yes,good
796,<0,18,existing paid,used car,7511,no known savings,>=7,1,male single,none,4,life insurance,51,stores,for free,1,skilled,2,yes,yes,bad
797,no checking,12,critical/order existing credit,furniture/equipment,1258,<100,<1,2,female div/dep/mar,none,4,life insurance,22,stores,rent,2,unskilled resident,1,none,yes,good
798,no checking,24,delayed previously,new car,717,no known savings,>=7,4,male mar/wid,none,4,car,54,stores,own,2,skilled,1,yes,yes,good
799,0<=X<200,9,existing paid,new car,1549,no known savings,<1,4,male single,none,2,real estate,35,stores,own,1,unemp/unskilled non res,1,none,yes,good
800,no checking,24,critical/order existing credit,education,1597,<100,>=7,4,male single,none,4,no known property,54,stores,for free,2,skilled,2,none,yes,good
801,0<=X<200,18,critical/order existing credit,radio/tv,1795,<100,>=7,3,female div/dep/mar,guarantor,4,real estate,48,bank,rent,2,unskilled resident,1,yes,yes,good
802,<0,20,critical/order existing credit,furniture/equipment,4272,<100,>=7,1,female div/dep/mar,none,4,life insurance,24,stores,own,2,skilled,1,none,yes,good
803,no checking,12,critical/order existing credit,radio/tv,976,no known savings,>=7,4,male single,none,4,car,35,stores,own,2,skilled,1,none,yes,good
804,0<=X<200,12,existing paid,new car,7472,no known savings,unemployed,1,female div/dep/mar,none,2,real estate,24,stores,rent,1,unemp/unskilled non res,1,none,yes,good
805,<0,36,existing paid,new car,9271,<100,4<=X<7,2,male single,none,1,car,24,stores,own,1,skilled,1,yes,yes,bad
806,0<=X<200,6,existing paid,radio/tv,590,<100,<1,3,male mar/wid,none,3,real estate,26,stores,own,1,unskilled resident,1,none,no,good
807,no checking,12,critical/order existing credit,radio/tv,930,no known savings,>=7,4,male single,none,4,real estate,65,stores,own,4,skilled,1,none,yes,good
808,0<=X<200,42,all paid,used car,9283,<100,unemployed,1,male single,none,2,no known property,55,bank,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
809,0<=X<200,15,no credits/all paid,new car,1778,<100,<1,2,female div/dep/mar,none,1,real estate,26,stores,rent,2,unemp/unskilled non res,1,none,yes,bad
810,0<=X<200,8,existing paid,business,907,<100,<1,3,male mar/wid,none,2,real estate,26,stores,own,1,skilled,1,yes,yes,good
811,0<=X<200,6,existing paid,radio/tv,484,<100,4<=X<7,3,male mar/wid,guarantor,3,real estate,28,bank,own,1,unskilled resident,1,none,yes,good
812,<0,36,critical/order existing credit,used car,9629,<100,4<=X<7,4,male single,none,4,car,24,stores,own,2,skilled,1,yes,yes,bad
813,<0,48,existing paid,domestic appliance,3051,<100,1<=X<4,3,male single,none,4,car,54,stores,own,1,skilled,1,none,yes,bad
814,<0,48,existing paid,new car,3931,<100,4<=X<7,4,male single,none,4,no known property,46,stores,for free,1,skilled,2,none,yes,bad
815,0<=X<200,36,delayed previously,new car,7432,<100,1<=X<4,2,female div/dep/mar,none,2,life insurance,54,stores,rent,1,skilled,1,none,yes,good
816,no checking,6,existing paid,domestic appliance,1338,500<=X<10000,1<=X<4,1,male div/sep,none,4,real estate,62,stores,own,1,skilled,1,none,yes,good
817,no checking,6,critical/order existing credit,radio/tv,1554,<100,4<=X<7,1,female div/dep/mar,none,2,car,24,stores,rent,2,skilled,1,yes,yes,good
818,<0,36,existing paid,other,15857,<100,unemployed,2,male div/sep,co applicant,3,car,43,stores,own,1,high qualif/self emp/mgmt,1,none,yes,good
819,<0,18,existing paid,radio/tv,1345,<100,1<=X<4,4,male mar/wid,none,3,real estate,26,bank,own,1,skilled,1,none,yes,bad
820,no checking,12,existing paid,new car,1101,<100,1<=X<4,3,male mar/wid,none,2,real estate,27,stores,own,2,skilled,1,yes,yes,good
821,>=200,12,existing paid,radio/tv,3016,<100,1<=X<4,3,male mar/wid,none,1,car,24,stores,own,1,skilled,1,none,yes,good
822,<0,36,existing paid,furniture/equipment,2712,<100,>=7,2,male single,none,2,life insurance,41,bank,own,1,skilled,2,none,yes,bad
823,<0,8,critical/order existing credit,new car,731,<100,>=7,4,male single,none,4,real estate,47,stores,own,2,unskilled resident,1,none,yes,good
824,no checking,18,critical/order existing credit,furniture/equipment,3780,<100,<1,3,male div/sep,none,2,car,35,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,good
825,<0,21,critical/order existing credit,new car,1602,<100,>=7,4,male mar/wid,none,3,car,30,stores,own,2,skilled,1,yes,yes,good
826,<0,18,critical/order existing credit,new car,3966,<100,>=7,1,female div/dep/mar,none,4,real estate,33,bank,rent,3,skilled,1,yes,yes,bad
827,no checking,18,no credits/all paid,business,4165,<100,1<=X<4,2,male single,none,2,car,36,,own,2,skilled,2,none,yes,bad
828,<0,36,existing paid,used car,8335,no known savings,>=7,3,male single,none,4,no known property,47,stores,for free,1,skilled,1,none,yes,bad
829,0<=X<200,48,delayed previously,business,6681,no known savings,1<=X<4,4,male single,none,4,no known property,38,stores,for free,1,skilled,2,yes,yes,good
830,no checking,24,delayed previously,business,2375,500<=X<10000,1<=X<4,4,male single,none,2,car,44,stores,own,2,skilled,2,yes,yes,good
831,<0,18,existing paid,new car,1216,<100,<1,4,female div/dep/mar,none,3,car,23,stores,rent,1,skilled,1,yes,yes,bad
832,<0,45,no credits/all paid,business,11816,<100,>=7,2,male single,none,4,car,29,stores,rent,2,skilled,1,none,yes,bad
833,0<=X<200,24,existing paid,radio/tv,5084,no known savings,>=7,2,female div/dep/mar,none,4,car,42,stores,own,1,skilled,1,yes,yes,good
834,>=200,15,existing paid,radio/tv,2327,<100,<1,2,female div/dep/mar,none,3,real estate,25,stores,own,1,unskilled resident,1,none,yes,bad
835,<0,12,no credits/all paid,new car,1082,<100,1<=X<4,4,male single,none,4,car,48,bank,own,2,skilled,1,none,yes,bad
836,no checking,12,existing paid,radio/tv,886,no known savings,1<=X<4,4,female div/dep/mar,none,2,car,21,stores,own,1,skilled,1,none,yes,good
837,no checking,4,existing paid,furniture/equipment,601,<100,<1,1,female div/dep/mar,none,3,real estate,23,stores,rent,1,unskilled resident,2,none,yes,good
838,<0,24,critical/order existing credit,used car,2957,<100,>=7,4,male single,none,4,life insurance,63,stores,own,2,skilled,1,yes,yes,good
839,no checking,24,critical/order existing credit,radio/tv,2611,<100,>=7,4,male mar/wid,co applicant,3,real estate,46,stores,own,2,skilled,1,none,yes,good
840,<0,36,existing paid,furniture/equipment,5179,<100,4<=X<7,4,male single,none,2,life insurance,29,stores,own,1,skilled,1,none,yes,bad
841,no checking,21,delayed previously,used car,2993,<100,1<=X<4,3,male single,none,2,real estate,28,,own,2,unskilled resident,1,none,yes,good
842,no checking,18,existing paid,repairs,1943,<100,<1,4,female div/dep/mar,none,4,real estate,23,stores,own,1,skilled,1,none,yes,bad
843,no checking,24,all paid,business,1559,<100,4<=X<7,4,male single,none,4,car,50,bank,own,1,skilled,1,yes,yes,good
844,no checking,18,existing paid,furniture/equipment,3422,<100,>=7,4,male single,none,4,life insurance,47,bank,own,3,skilled,2,yes,yes,good
845,0<=X<200,21,existing paid,furniture/equipment,3976,no known savings,4<=X<7,2,male single,none,3,car,35,stores,own,1,skilled,1,yes,yes,good
846,no checking,18,existing paid,new car,6761,no known savings,1<=X<4,2,male single,none,4,car,68,stores,rent,2,skilled,1,none,yes,bad
847,no checking,24,existing paid,new car,1249,<100,<1,4,male mar/wid,none,2,real estate,28,stores,own,1,skilled,1,none,yes,good
848,<0,9,existing paid,radio/tv,1364,<100,4<=X<7,3,male single,none,4,real estate,59,stores,own,1,skilled,1,none,yes,good
849,<0,12,existing paid,radio/tv,709,<100,>=7,4,male single,none,4,real estate,57,,own,1,unskilled resident,1,none,yes,bad
850,<0,20,critical/order existing credit,new car,2235,<100,1<=X<4,4,male mar/wid,guarantor,2,life insurance,33,bank,rent,2,skilled,1,none,no,bad
851,no checking,24,critical/order existing credit,used car,4042,no known savings,4<=X<7,3,male single,none,4,life insurance,43,stores,own,2,skilled,1,yes,yes,good
852,no checking,15,critical/order existing credit,radio/tv,1471,<100,1<=X<4,4,male single,none,4,no known property,35,stores,for free,2,skilled,1,yes,yes,good
853,<0,18,all paid,new car,1442,<100,4<=X<7,4,male single,none,4,no known property,32,stores,for free,2,unskilled resident,2,none,yes,bad
854,no checking,36,delayed previously,new car,10875,<100,>=7,2,male single,none,2,car,45,stores,own,2,skilled,2,yes,yes,good
855,no checking,24,existing paid,new car,1474,100<=X<500,<1,4,male mar/wid,none,3,real estate,33,stores,own,1,skilled,1,yes,yes,good
856,no checking,10,existing paid,retraining,894,no known savings,4<=X<7,4,female div/dep/mar,none,3,life insurance,40,stores,own,1,skilled,1,yes,yes,good
857,no checking,15,critical/order existing credit,furniture/equipment,3343,<100,1<=X<4,4,male single,none,2,no known property,28,stores,for free,1,skilled,1,yes,yes,good
858,<0,15,existing paid,new car,3959,<100,1<=X<4,3,female div/dep/mar,none,2,life insurance,29,stores,own,1,skilled,1,yes,yes,bad
859,no checking,9,existing paid,new car,3577,100<=X<500,1<=X<4,1,male single,guarantor,2,real estate,26,stores,rent,1,skilled,2,none,no,good
860,no checking,24,critical/order existing credit,used car,5804,>=1000,1<=X<4,4,male single,none,2,real estate,27,stores,own,2,skilled,1,none,yes,good
861,no checking,18,delayed previously,business,2169,<100,1<=X<4,4,male mar/wid,none,2,car,28,stores,own,1,skilled,1,yes,yes,bad
862,<0,24,existing paid,radio/tv,2439,<100,<1,4,female div/dep/mar,none,4,real estate,35,stores,own,1,skilled,1,yes,yes,bad
863,no checking,27,critical/order existing credit,furniture/equipment,4526,>=1000,<1,4,male single,none,2,real estate,32,,own,2,unskilled resident,2,yes,yes,good
864,no checking,10,existing paid,furniture/equipment,2210,<100,1<=X<4,2,male single,none,2,real estate,25,bank,rent,1,unskilled resident,1,none,yes,bad
865,no checking,15,existing paid,furniture/equipment,2221,500<=X<10000,1<=X<4,2,female div/dep/mar,none,4,car,20,stores,rent,1,skilled,1,none,yes,good
866,<0,18,existing paid,radio/tv,2389,<100,<1,4,female div/dep/mar,none,1,car,27,,own,1,skilled,1,none,yes,good
867,no checking,12,critical/order existing credit,furniture/equipment,3331,<100,>=7,2,male single,none,4,life insurance,42,,own,1,skilled,1,none,yes,good
868,no checking,36,existing paid,business,7409,no known savings,>=7,3,male single,none,2,life insurance,37,stores,own,2,skilled,1,none,yes,good
869,<0,12,existing paid,furniture/equipment,652,<100,>=7,4,female div/dep/mar,none,4,life insurance,24,stores,rent,1,skilled,1,none,yes,good
870,no checking,36,delayed previously,furniture/equipment,7678,500<=X<10000,4<=X<7,2,female div/dep/mar,none,4,car,40,stores,own,2,skilled,1,yes,yes,good
871,>=200,6,critical/order existing credit,new car,1343,<100,>=7,1,male single,none,4,real estate,46,stores,own,2,skilled,2,none,no,good
872,<0,24,critical/order existing credit,business,1382,100<=X<500,4<=X<7,4,male single,none,1,real estate,26,stores,own,2,skilled,1,yes,yes,good
873,no checking,15,existing paid,domestic appliance,874,no known savings,<1,4,female div/dep/mar,none,1,real estate,24,stores,own,1,skilled,1,none,yes,good
874,<0,12,existing paid,furniture/equipment,3590,<100,1<=X<4,2,male single,co applicant,2,life insurance,29,stores,own,1,unskilled resident,2,none,yes,good
875,0<=X<200,11,critical/order existing credit,new car,1322,>=1000,1<=X<4,4,female div/dep/mar,none,4,car,40,stores,own,2,skilled,1,none,yes,good
876,<0,18,all paid,radio/tv,1940,<100,<1,3,male single,co applicant,4,no known property,36,bank,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
877,no checking,36,existing paid,radio/tv,3595,<100,>=7,4,male single,none,2,car,28,stores,own,1,skilled,1,none,yes,good
878,<0,9,existing paid,new car,1422,<100,<1,3,male single,none,2,no known property,27,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,bad
879,no checking,30,critical/order existing credit,radio/tv,6742,no known savings,4<=X<7,2,male single,none,3,life insurance,36,stores,own,2,skilled,1,none,yes,good
880,no checking,24,existing paid,used car,7814,<100,4<=X<7,3,male single,none,3,car,38,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
881,no checking,24,existing paid,used car,9277,no known savings,1<=X<4,2,male div/sep,none,4,no known property,48,stores,for free,1,skilled,1,yes,yes,good
882,0<=X<200,30,critical/order existing credit,new car,2181,no known savings,>=7,4,male single,none,4,real estate,36,stores,own,2,skilled,1,none,yes,good
883,no checking,18,critical/order existing credit,radio/tv,1098,<100,unemployed,4,female div/dep/mar,none,4,car,65,stores,own,2,unemp/unskilled non res,1,none,yes,good
884,0<=X<200,24,existing paid,furniture/equipment,4057,<100,4<=X<7,3,male div/sep,none,3,car,43,stores,own,1,skilled,1,yes,yes,bad
885,<0,12,existing paid,education,795,<100,<1,4,female div/dep/mar,none,4,life insurance,53,stores,own,1,skilled,1,none,yes,bad
886,0<=X<200,24,critical/order existing credit,business,2825,no known savings,4<=X<7,4,male single,none,3,no known property,34,stores,own,2,skilled,2,yes,yes,good
887,0<=X<200,48,existing paid,business,15672,<100,1<=X<4,2,male single,none,2,car,23,stores,own,1,skilled,1,yes,yes,bad
888,no checking,36,critical/order existing credit,new car,6614,<100,>=7,4,male single,none,4,car,34,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,good
889,no checking,28,all paid,used car,7824,no known savings,<1,3,male single,guarantor,4,real estate,40,bank,rent,2,skilled,2,yes,yes,good
890,<0,27,critical/order existing credit,business,2442,<100,>=7,4,male single,none,4,car,43,,own,4,high qualif/self emp/mgmt,2,yes,yes,good
891,no checking,15,critical/order existing credit,radio/tv,1829,<100,>=7,4,male single,none,4,car,46,stores,own,2,skilled,1,yes,yes,good
892,<0,12,critical/order existing credit,new car,2171,<100,1<=X<4,4,male single,none,4,life insurance,38,bank,own,2,unskilled resident,1,none,no,good
893,0<=X<200,36,critical/order existing credit,used car,5800,<100,1<=X<4,3,male single,none,4,car,34,stores,own,2,skilled,1,yes,yes,good
894,no checking,18,critical/order existing credit,radio/tv,1169,no known savings,1<=X<4,4,male single,none,3,life insurance,29,stores,own,2,skilled,1,yes,yes,good
895,no checking,36,delayed previously,used car,8947,no known savings,4<=X<7,3,male single,none,2,car,31,,own,1,high qualif/self emp/mgmt,2,yes,yes,good
896,<0,21,existing paid,radio/tv,2606,<100,<1,4,female div/dep/mar,none,4,life insurance,28,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,good
897,no checking,12,critical/order existing credit,furniture/equipment,1592,>=1000,4<=X<7,3,female div/dep/mar,none,2,life insurance,35,stores,own,1,skilled,1,none,no,good
898,no checking,15,existing paid,furniture/equipment,2186,no known savings,4<=X<7,1,female div/dep/mar,none,4,real estate,33,bank,rent,1,unskilled resident,1,none,yes,good
899,<0,18,existing paid,furniture/equipment,4153,<100,1<=X<4,2,male single,co applicant,3,car,42,stores,own,1,skilled,1,none,yes,bad
900,<0,16,critical/order existing credit,new car,2625,<100,>=7,2,male single,guarantor,4,life insurance,43,bank,rent,1,skilled,1,yes,yes,bad
901,no checking,20,critical/order existing credit,new car,3485,no known savings,<1,2,male div/sep,none,4,real estate,44,stores,own,2,skilled,1,yes,yes,good
902,no checking,36,critical/order existing credit,used car,10477,no known savings,>=7,2,male single,none,4,no known property,42,stores,for free,2,skilled,1,none,yes,good
903,no checking,15,existing paid,radio/tv,1386,no known savings,1<=X<4,4,male mar/wid,none,2,real estate,40,stores,rent,1,skilled,1,yes,yes,good
904,no checking,24,existing paid,radio/tv,1278,<100,>=7,4,male single,none,1,real estate,36,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
905,<0,12,existing paid,radio/tv,1107,<100,1<=X<4,2,male single,none,2,real estate,20,stores,rent,1,high qualif/self emp/mgmt,2,yes,yes,good
906,<0,21,existing paid,new car,3763,no known savings,4<=X<7,2,male single,co applicant,2,real estate,24,stores,own,1,unskilled resident,1,none,no,good
907,0<=X<200,36,existing paid,education,3711,no known savings,1<=X<4,2,male mar/wid,none,2,car,27,stores,own,1,skilled,1,none,yes,good
908,no checking,15,delayed previously,used car,3594,<100,<1,1,female div/dep/mar,none,2,life insurance,46,stores,own,2,unskilled resident,1,none,yes,good
909,0<=X<200,9,existing paid,new car,3195,no known savings,1<=X<4,1,female div/dep/mar,none,2,real estate,33,stores,own,1,unskilled resident,1,none,yes,good
910,no checking,36,delayed previously,radio/tv,4454,<100,1<=X<4,4,female div/dep/mar,none,4,real estate,34,stores,own,2,skilled,1,none,yes,good
911,0<=X<200,24,critical/order existing credit,furniture/equipment,4736,<100,<1,2,female div/dep/mar,none,4,car,25,bank,own,1,unskilled resident,1,none,yes,bad
912,0<=X<200,30,existing paid,radio/tv,2991,no known savings,>=7,2,female div/dep/mar,none,4,car,25,stores,own,1,skilled,1,none,yes,good
913,no checking,11,existing paid,business,2142,>=1000,>=7,1,male div/sep,none,2,real estate,28,stores,own,1,skilled,1,yes,yes,good
914,<0,24,all paid,business,3161,<100,1<=X<4,4,male single,none,2,life insurance,31,stores,rent,1,skilled,1,yes,yes,bad
915,0<=X<200,48,no credits/all paid,other,18424,<100,1<=X<4,1,female div/dep/mar,none,2,life insurance,32,bank,own,1,high qualif/self emp/mgmt,1,yes,no,bad
916,no checking,10,existing paid,used car,2848,100<=X<500,1<=X<4,1,male single,co applicant,2,real estate,32,stores,own,1,skilled,2,none,yes,good
917,<0,6,existing paid,new car,14896,<100,>=7,1,male single,none,4,no known property,68,bank,own,1,high qualif/self emp/mgmt,1,yes,yes,bad
918,<0,24,existing paid,furniture/equipment,2359,100<=X<500,unemployed,1,male div/sep,none,1,life insurance,33,stores,own,1,skilled,1,none,yes,bad
919,<0,24,existing paid,furniture/equipment,3345,<100,>=7,4,male single,none,2,life insurance,39,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,bad
920,no checking,18,critical/order existing credit,furniture/equipment,1817,<100,1<=X<4,4,female div/dep/mar,none,2,no known property,28,stores,own,2,skilled,1,none,yes,good
921,no checking,48,delayed previously,radio/tv,12749,500<=X<10000,4<=X<7,4,male single,none,1,car,37,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
922,<0,9,existing paid,radio/tv,1366,<100,<1,3,female div/dep/mar,none,4,life insurance,22,stores,rent,1,skilled,1,none,yes,bad
923,0<=X<200,12,existing paid,new car,2002,<100,4<=X<7,3,male single,none,4,life insurance,30,stores,rent,1,skilled,2,yes,yes,good
924,<0,24,all paid,furniture/equipment,6872,<100,<1,2,male div/sep,none,1,life insurance,55,bank,own,1,skilled,1,yes,yes,bad
925,<0,12,all paid,new car,697,<100,<1,4,male single,none,2,car,46,bank,own,2,skilled,1,yes,yes,bad
926,<0,18,critical/order existing credit,furniture/equipment,1049,<100,<1,4,female div/dep/mar,none,4,life insurance,21,stores,rent,1,skilled,1,none,yes,good
927,<0,48,existing paid,used car,10297,<100,4<=X<7,4,male single,none,4,no known property,39,,for free,3,skilled,2,yes,yes,bad
928,no checking,30,existing paid,radio/tv,1867,no known savings,>=7,4,male single,none,4,car,58,stores,own,1,skilled,1,yes,yes,good
929,<0,12,delayed previously,new car,1344,<100,1<=X<4,4,male single,none,2,real estate,43,stores,own,2,unskilled resident,2,none,yes,good
930,<0,24,existing paid,furniture/equipment,1747,<100,<1,4,male single,co applicant,1,life insurance,24,stores,own,1,unskilled resident,1,none,no,good
931,0<=X<200,9,existing paid,radio/tv,1670,<100,<1,4,female div/dep/mar,none,2,car,22,stores,own,1,skilled,1,yes,yes,bad
932,no checking,9,critical/order existing credit,new car,1224,<100,1<=X<4,3,male single,none,1,real estate,30,stores,own,2,skilled,1,none,yes,good
933,no checking,12,critical/order existing credit,radio/tv,522,500<=X<10000,>=7,4,male single,none,4,life insurance,42,stores,own,2,skilled,2,yes,yes,good
934,<0,12,existing paid,radio/tv,1498,<100,1<=X<4,4,female div/dep/mar,none,1,car,23,bank,own,1,skilled,1,none,yes,good
935,0<=X<200,30,delayed previously,radio/tv,1919,100<=X<500,<1,4,male single,none,3,no known property,30,,own,2,high qualif/self emp/mgmt,1,none,yes,bad
936,>=200,9,existing paid,radio/tv,745,<100,1<=X<4,3,female div/dep/mar,none,2,real estate,28,stores,own,1,unskilled resident,1,none,yes,bad
937,0<=X<200,6,existing paid,radio/tv,2063,<100,<1,4,male mar/wid,none,3,car,30,stores,rent,1,high qualif/self emp/mgmt,1,yes,yes,good
938,0<=X<200,60,existing paid,education,6288,<100,1<=X<4,4,male single,none,4,no known property,42,stores,for free,1,skilled,1,none,yes,bad
939,no checking,24,critical/order existing credit,used car,6842,no known savings,1<=X<4,2,male single,none,4,life insurance,46,stores,own,2,high qualif/self emp/mgmt,2,yes,yes,good
940,no checking,12,existing paid,new car,3527,no known savings,<1,2,male single,none,3,life insurance,45,stores,own,1,high qualif/self emp/mgmt,2,yes,yes,good
941,no checking,10,existing paid,new car,1546,<100,1<=X<4,3,male single,none,2,real estate,31,stores,own,1,unskilled resident,2,none,no,good
942,no checking,24,existing paid,furniture/equipment,929,no known savings,4<=X<7,4,male single,none,2,car,31,,own,1,skilled,1,yes,yes,good
943,no checking,4,critical/order existing credit,new car,1455,<100,4<=X<7,2,male single,none,1,real estate,42,stores,own,3,unskilled resident,2,none,yes,good
944,<0,15,existing paid,furniture/equipment,1845,<100,<1,4,female div/dep/mar,guarantor,1,life insurance,46,stores,rent,1,skilled,1,none,yes,good
945,0<=X<200,48,no credits/all paid,new car,8358,500<=X<10000,<1,1,female div/dep/mar,none,1,car,30,stores,own,2,skilled,1,none,yes,good
946,<0,24,all paid,furniture/equipment,3349,500<=X<10000,<1,4,male single,none,4,no known property,30,stores,for free,1,skilled,2,yes,yes,bad
947,no checking,12,existing paid,new car,2859,no known savings,unemployed,4,male single,none,4,no known property,38,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
948,no checking,18,existing paid,furniture/equipment,1533,<100,<1,4,male mar/wid,co applicant,1,life insurance,43,stores,own,1,unskilled resident,2,none,yes,bad
949,no checking,24,existing paid,radio/tv,3621,100<=X<500,>=7,2,male single,none,4,car,31,stores,own,2,skilled,1,none,yes,bad
950,0<=X<200,18,critical/order existing credit,business,3590,<100,unemployed,3,male mar/wid,none,3,car,40,stores,own,3,unemp/unskilled non res,2,yes,yes,good
951,<0,36,delayed previously,business,2145,<100,4<=X<7,2,male single,none,1,car,24,stores,own,2,skilled,1,yes,yes,bad
952,0<=X<200,24,existing paid,used car,4113,500<=X<10000,<1,3,female div/dep/mar,none,4,car,28,stores,rent,1,skilled,1,none,yes,bad
953,no checking,36,existing paid,furniture/equipment,10974,<100,unemployed,4,female div/dep/mar,none,2,car,26,stores,own,2,high qualif/self emp/mgmt,1,yes,yes,bad
954,<0,12,existing paid,new car,1893,<100,1<=X<4,4,female div/dep/mar,guarantor,4,life insurance,29,stores,own,1,skilled,1,yes,yes,good
955,<0,24,critical/order existing credit,radio/tv,1231,>=1000,>=7,4,female div/dep/mar,none,4,life insurance,57,stores,rent,2,high qualif/self emp/mgmt,1,yes,yes,good
956,>=200,30,critical/order existing credit,radio/tv,3656,no known savings,>=7,4,male single,none,4,life insurance,49,,own,2,unskilled resident,1,none,yes,good
957,0<=X<200,9,critical/order existing credit,radio/tv,1154,<100,>=7,2,male single,none,4,real estate,37,stores,own,3,unskilled resident,1,none,yes,good
958,<0,28,existing paid,new car,4006,<100,1<=X<4,3,male single,none,2,car,45,stores,own,1,unskilled resident,1,none,yes,bad
959,0<=X<200,24,existing paid,furniture/equipment,3069,100<=X<500,>=7,4,male single,none,4,no known property,30,stores,for free,1,skilled,1,none,yes,good
960,no checking,6,critical/order existing credit,radio/tv,1740,<100,>=7,2,male mar/wid,none,2,real estate,30,stores,rent,2,skilled,1,none,yes,good
961,0<=X<200,21,delayed previously,new car,2353,<100,1<=X<4,1,male div/sep,none,4,life insurance,47,stores,own,2,skilled,1,none,yes,good
962,no checking,15,existing paid,new car,3556,no known savings,1<=X<4,3,male single,none,2,no known property,29,stores,own,1,skilled,1,none,yes,good
963,no checking,24,existing paid,radio/tv,2397,500<=X<10000,>=7,3,male single,none,2,car,35,bank,own,2,skilled,1,yes,yes,bad
964,0<=X<200,6,existing paid,repairs,454,<100,<1,3,male mar/wid,none,1,life insurance,22,stores,own,1,unskilled resident,1,none,yes,good
965,0<=X<200,30,existing paid,radio/tv,1715,no known savings,1<=X<4,4,female div/dep/mar,none,1,car,26,stores,own,1,skilled,1,none,yes,good
966,0<=X<200,27,critical/order existing credit,radio/tv,2520,500<=X<10000,1<=X<4,4,male single,none,2,life insurance,23,stores,own,2,unskilled resident,1,none,yes,bad
967,no checking,15,existing paid,radio/tv,3568,<100,>=7,4,female div/dep/mar,none,2,car,54,bank,rent,1,high qualif/self emp/mgmt,1,yes,yes,good
968,no checking,42,existing paid,radio/tv,7166,no known savings,4<=X<7,2,male mar/wid,none,4,life insurance,29,stores,rent,1,skilled,1,yes,yes,good
969,<0,11,critical/order existing credit,new car,3939,<100,1<=X<4,1,male single,none,2,real estate,40,stores,own,2,unskilled resident,2,none,yes,good
970,0<=X<200,15,existing paid,repairs,1514,100<=X<500,1<=X<4,4,male single,guarantor,2,real estate,22,stores,own,1,skilled,1,none,yes,good
971,no checking,24,existing paid,new car,7393,<100,1<=X<4,1,male single,none,4,life insurance,43,stores,own,1,unskilled resident,2,none,yes,good
972,<0,24,all paid,new car,1193,<100,unemployed,1,female div/dep/mar,co applicant,4,no known property,29,stores,rent,2,unemp/unskilled non res,1,none,yes,bad
973,<0,60,existing paid,business,7297,<100,>=7,4,male single,co applicant,4,no known property,36,stores,rent,1,skilled,1,none,yes,bad
974,no checking,30,critical/order existing credit,radio/tv,2831,<100,1<=X<4,4,female div/dep/mar,none,2,car,33,stores,own,1,skilled,1,yes,yes,good
975,>=200,24,existing paid,radio/tv,1258,500<=X<10000,1<=X<4,3,female div/dep/mar,none,3,car,57,stores,own,1,unskilled resident,1,none,yes,good
976,0<=X<200,6,existing paid,radio/tv,753,<100,1<=X<4,2,female div/dep/mar,guarantor,3,real estate,64,stores,own,1,skilled,1,none,yes,good
977,0<=X<200,18,delayed previously,business,2427,no known savings,>=7,4,male single,none,2,life insurance,42,stores,own,2,skilled,1,none,yes,good
978,no checking,24,delayed previously,new car,2538,<100,>=7,4,male single,none,4,car,47,stores,own,2,unskilled resident,2,none,yes,bad
979,0<=X<200,15,all paid,new car,1264,100<=X<500,1<=X<4,2,male mar/wid,none,2,life insurance,25,stores,rent,1,skilled,1,none,yes,bad
980,0<=X<200,30,critical/order existing credit,furniture/equipment,8386,<100,4<=X<7,2,male single,none,2,life insurance,49,stores,own,1,skilled,1,none,yes,bad
981,no checking,48,existing paid,business,4844,<100,unemployed,3,male single,none,2,car,33,bank,rent,1,high qualif/self emp/mgmt,1,yes,yes,bad
982,>=200,21,existing paid,new car,2923,100<=X<500,1<=X<4,1,female div/dep/mar,none,1,car,28,bank,own,1,high qualif/self emp/mgmt,1,yes,yes,good
983,<0,36,existing paid,used car,8229,<100,1<=X<4,2,male single,none,2,life insurance,26,stores,own,1,skilled,2,none,yes,bad
984,no checking,24,critical/order existing credit,furniture/equipment,2028,<100,4<=X<7,2,male single,none,2,life insurance,30,stores,own,2,unskilled resident,1,none,yes,good
985,<0,15,critical/order existing credit,furniture/equipment,1433,<100,1<=X<4,4,female div/dep/mar,none,3,life insurance,25,stores,rent,2,skilled,1,none,yes,good
986,>=200,42,no credits/all paid,business,6289,<100,<1,2,male div/sep,none,1,life insurance,33,stores,own,2,skilled,1,none,yes,good
987,no checking,13,existing paid,radio/tv,1409,100<=X<500,unemployed,2,female div/dep/mar,none,4,real estate,64,stores,own,1,skilled,1,none,yes,good
988,<0,24,existing paid,used car,6579,<100,unemployed,4,male single,none,2,no known property,29,stores,for free,1,high qualif/self emp/mgmt,1,yes,yes,good
989,0<=X<200,24,critical/order existing credit,radio/tv,1743,<100,>=7,4,male single,none,2,life insurance,48,stores,own,2,unskilled resident,1,none,yes,good
990,no checking,12,critical/order existing credit,education,3565,no known savings,<1,2,male single,none,1,life insurance,37,stores,own,2,unskilled resident,2,none,yes,good
991,no checking,15,all paid,radio/tv,1569,100<=X<500,>=7,4,male single,none,4,car,34,bank,own,1,unskilled resident,2,none,yes,good
992,<0,18,existing paid,radio/tv,1936,no known savings,4<=X<7,2,male mar/wid,none,4,car,23,stores,rent,2,unskilled resident,1,none,yes,good
993,<0,36,existing paid,furniture/equipment,3959,<100,unemployed,4,male single,none,3,life insurance,30,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
994,no checking,12,existing paid,new car,2390,no known savings,>=7,4,male single,none,3,car,50,stores,own,1,skilled,1,yes,yes,good
995,no checking,12,existing paid,furniture/equipment,1736,<100,4<=X<7,3,female div/dep/mar,none,4,real estate,31,stores,own,1,unskilled resident,1,none,yes,good
996,<0,30,existing paid,used car,3857,<100,1<=X<4,4,male div/sep,none,4,life insurance,40,stores,own,1,high qualif/self emp/mgmt,1,yes,yes,good
997,no checking,12,existing paid,radio/tv,804,<100,>=7,4,male single,none,4,car,38,stores,own,1,skilled,1,none,yes,good
998,<0,45,existing paid,radio/tv,1845,<100,1<=X<4,4,male single,none,4,no known property,23,stores,for free,1,skilled,1,yes,yes,bad