forked from burakbayramli/books
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHealthInsurance.csv
We can't make this file beautiful and searchable because it's too large.
8803 lines (8803 loc) · 639 KB
/
HealthInsurance.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
"","health","age","limit","gender","insurance","married","selfemp","family","region","ethnicity","education"
"1","yes",31,"no","male","yes","yes","yes",4,"south","cauc","bachelor"
"2","yes",31,"no","female","yes","yes","no",4,"south","cauc","highschool"
"3","yes",54,"no","male","yes","yes","no",5,"west","cauc","ged"
"4","yes",27,"no","male","yes","no","no",5,"west","cauc","highschool"
"5","yes",39,"no","male","yes","yes","no",5,"west","cauc","none"
"6","yes",32,"no","female","no","no","no",3,"south","afam","bachelor"
"7","no",56,"yes","female","yes","yes","no",2,"west","cauc","highschool"
"8","yes",60,"no","female","yes","yes","no",2,"south","cauc","highschool"
"9","yes",62,"no","male","yes","yes","no",2,"south","cauc","highschool"
"10","yes",52,"no","female","no","yes","no",2,"northeast","afam","highschool"
"11","yes",50,"no","male","yes","yes","no",2,"northeast","afam","highschool"
"12","yes",44,"no","male","yes","no","no",1,"midwest","cauc","master"
"13","yes",26,"no","female","no","yes","yes",3,"south","cauc","phd"
"14","yes",38,"yes","male","no","yes","no",7,"west","cauc","none"
"15","yes",48,"no","male","yes","yes","no",8,"south","cauc","other"
"16","yes",48,"no","female","yes","yes","no",8,"south","cauc","none"
"17","yes",53,"no","male","no","yes","yes",2,"midwest","cauc","none"
"18","yes",50,"no","female","no","yes","no",2,"midwest","cauc","highschool"
"19","yes",23,"no","female","no","no","no",1,"midwest","cauc","highschool"
"20","yes",43,"no","female","yes","no","no",2,"south","cauc","highschool"
"21","yes",40,"no","female","yes","no","no",4,"midwest","cauc","highschool"
"22","yes",25,"no","male","no","no","no",1,"west","cauc","highschool"
"23","yes",27,"no","male","no","yes","no",3,"west","cauc","bachelor"
"24","yes",53,"no","male","yes","yes","no",6,"northeast","afam","none"
"25","yes",40,"no","female","yes","yes","no",6,"northeast","afam","none"
"26","no",22,"yes","female","yes","no","no",2,"northeast","afam","highschool"
"27","yes",51,"yes","male","no","yes","no",3,"west","cauc","none"
"28","no",27,"no","male","no","no","no",3,"west","cauc","none"
"29","no",58,"yes","female","no","yes","no",3,"west","cauc","none"
"30","yes",45,"no","male","yes","yes","no",4,"west","cauc","none"
"31","yes",18,"no","male","yes","no","no",4,"west","cauc","none"
"32","yes",31,"no","male","yes","yes","no",2,"south","cauc","other"
"33","yes",31,"no","female","yes","yes","no",2,"south","cauc","highschool"
"34","yes",27,"no","male","no","no","no",1,"south","cauc","bachelor"
"35","yes",61,"no","male","yes","no","no",1,"south","cauc","highschool"
"36","yes",33,"yes","female","yes","no","no",1,"west","cauc","bachelor"
"37","yes",40,"no","female","yes","no","no",1,"west","cauc","bachelor"
"38","no",43,"yes","male","yes","yes","no",4,"midwest","cauc","highschool"
"39","yes",44,"no","female","yes","yes","no",4,"midwest","cauc","bachelor"
"40","no",55,"no","male","yes","yes","yes",2,"south","cauc","highschool"
"41","yes",52,"no","female","yes","yes","no",2,"south","cauc","ged"
"42","yes",30,"no","female","yes","yes","no",5,"south","cauc","highschool"
"43","yes",33,"no","male","yes","yes","no",5,"south","cauc","highschool"
"44","yes",28,"no","male","yes","yes","no",3,"south","cauc","none"
"45","no",28,"no","female","yes","yes","no",3,"south","cauc","highschool"
"46","yes",31,"no","male","yes","yes","no",2,"west","cauc","highschool"
"47","yes",39,"yes","female","no","yes","yes",2,"west","cauc","other"
"48","yes",22,"no","male","no","no","no",6,"south","cauc","highschool"
"49","yes",21,"no","female","no","no","no",6,"south","cauc","highschool"
"50","yes",42,"no","female","no","yes","yes",3,"midwest","afam","highschool"
"51","no",61,"yes","female","yes","no","no",3,"northeast","cauc","highschool"
"52","yes",36,"no","male","yes","yes","no",4,"west","cauc","highschool"
"53","yes",27,"no","male","yes","yes","no",3,"west","cauc","bachelor"
"54","yes",46,"no","male","yes","yes","no",4,"midwest","cauc","highschool"
"55","yes",38,"no","female","yes","yes","no",4,"midwest","cauc","highschool"
"56","yes",29,"no","male","yes","yes","no",5,"west","other","none"
"57","yes",33,"no","male","no","no","no",1,"west","cauc","bachelor"
"58","yes",60,"no","male","yes","yes","no",2,"south","afam","other"
"59","yes",60,"no","female","yes","yes","no",2,"south","afam","other"
"60","yes",35,"no","male","yes","no","no",1,"west","other","highschool"
"61","yes",30,"no","female","yes","no","no",3,"midwest","afam","highschool"
"62","yes",61,"yes","male","yes","yes","yes",2,"midwest","cauc","highschool"
"63","yes",58,"no","female","yes","yes","no",2,"midwest","cauc","highschool"
"64","yes",46,"no","female","yes","no","no",3,"south","afam","highschool"
"65","yes",55,"no","female","no","no","no",1,"west","cauc","highschool"
"66","yes",20,"yes","female","no","no","no",3,"midwest","cauc","highschool"
"67","yes",44,"no","male","yes","yes","no",3,"midwest","cauc","highschool"
"68","yes",43,"no","female","yes","yes","no",3,"midwest","cauc","highschool"
"69","yes",26,"yes","male","yes","yes","no",3,"south","cauc","highschool"
"70","yes",45,"no","male","yes","yes","yes",5,"midwest","cauc","other"
"71","yes",39,"no","female","yes","yes","yes",5,"midwest","cauc","other"
"72","yes",21,"no","male","yes","no","no",5,"midwest","cauc","highschool"
"73","yes",53,"no","female","yes","no","no",2,"south","cauc","other"
"74","yes",18,"no","male","yes","no","no",2,"south","cauc","none"
"75","yes",31,"no","male","yes","yes","no",2,"south","cauc","highschool"
"76","yes",33,"no","female","no","yes","no",2,"south","cauc","highschool"
"77","yes",27,"no","female","yes","no","no",2,"south","cauc","other"
"78","yes",47,"no","male","yes","yes","no",4,"midwest","cauc","highschool"
"79","yes",55,"no","male","yes","yes","no",2,"midwest","cauc","master"
"80","yes",53,"no","female","yes","yes","no",2,"midwest","cauc","highschool"
"81","yes",29,"no","female","yes","yes","no",2,"midwest","cauc","master"
"82","yes",34,"no","male","yes","yes","no",4,"midwest","cauc","highschool"
"83","yes",34,"no","female","yes","yes","no",4,"midwest","cauc","other"
"84","no",38,"yes","female","yes","no","no",1,"west","cauc","highschool"
"85","yes",49,"no","male","yes","yes","no",2,"midwest","cauc","highschool"
"86","yes",32,"no","female","yes","yes","no",2,"midwest","cauc","other"
"87","yes",47,"no","male","no","yes","no",10,"south","cauc","none"
"88","yes",20,"no","male","no","yes","no",10,"south","cauc","none"
"89","yes",53,"no","female","yes","no","no",1,"midwest","cauc","highschool"
"90","yes",56,"no","male","yes","no","yes",2,"northeast","cauc","highschool"
"91","yes",25,"no","female","yes","yes","no",4,"south","cauc","bachelor"
"92","yes",57,"yes","male","yes","yes","no",2,"northeast","cauc","other"
"93","yes",39,"yes","male","yes","no","no",2,"midwest","cauc","highschool"
"94","yes",30,"yes","male","yes","no","no",1,"northeast","cauc","bachelor"
"95","yes",53,"no","male","yes","yes","no",2,"south","cauc","highschool"
"96","yes",50,"no","female","yes","yes","no",2,"south","cauc","bachelor"
"97","yes",32,"no","female","yes","no","no",1,"midwest","cauc","bachelor"
"98","yes",37,"no","male","no","no","no",2,"south","cauc","highschool"
"99","yes",36,"no","female","yes","no","no",2,"south","cauc","bachelor"
"100","yes",60,"yes","female","yes","no","no",1,"south","cauc","highschool"
"101","yes",51,"no","male","yes","yes","no",4,"northeast","cauc","highschool"
"102","yes",41,"no","female","yes","yes","no",4,"northeast","cauc","highschool"
"103","yes",45,"no","female","yes","no","no",1,"south","cauc","bachelor"
"104","yes",39,"no","female","yes","no","no",4,"west","cauc","master"
"105","yes",20,"no","male","no","no","no",4,"west","cauc","none"
"106","yes",27,"no","male","no","no","no",2,"midwest","cauc","highschool"
"107","yes",24,"no","female","yes","no","no",2,"midwest","cauc","bachelor"
"108","yes",37,"no","male","yes","yes","no",3,"midwest","cauc","highschool"
"109","yes",30,"no","female","yes","no","no",1,"south","cauc","bachelor"
"110","yes",52,"yes","male","yes","yes","yes",2,"south","cauc","master"
"111","yes",36,"no","female","yes","no","no",1,"midwest","cauc","highschool"
"112","yes",45,"no","male","yes","yes","no",2,"west","cauc","other"
"113","yes",44,"no","female","yes","yes","no",6,"west","cauc","highschool"
"114","yes",43,"no","male","yes","yes","no",6,"west","cauc","highschool"
"115","yes",22,"no","male","yes","no","no",6,"west","cauc","highschool"
"116","yes",43,"no","male","yes","yes","no",4,"midwest","cauc","other"
"117","yes",33,"no","female","yes","yes","no",4,"midwest","cauc","highschool"
"118","yes",41,"no","male","yes","yes","no",4,"northeast","cauc","master"
"119","yes",42,"yes","male","yes","yes","no",2,"midwest","cauc","bachelor"
"120","yes",40,"no","female","yes","yes","no",2,"midwest","cauc","master"
"121","yes",41,"no","male","yes","no","yes",3,"northeast","cauc","highschool"
"122","yes",54,"no","male","yes","yes","no",2,"midwest","cauc","highschool"
"123","yes",38,"no","male","no","no","no",1,"midwest","afam","highschool"
"124","yes",58,"no","male","yes","yes","no",2,"south","cauc","highschool"
"125","yes",32,"no","male","yes","yes","no",2,"south","cauc","other"
"126","yes",40,"yes","female","yes","yes","no",3,"south","cauc","other"
"127","yes",36,"no","male","no","no","no",4,"south","cauc","ged"
"128","yes",61,"no","male","yes","yes","no",3,"south","cauc","other"
"129","yes",19,"no","female","yes","no","no",3,"south","other","highschool"
"130","yes",47,"no","male","yes","yes","no",2,"northeast","cauc","master"
"131","yes",59,"no","female","yes","yes","no",2,"northeast","cauc","highschool"
"132","yes",47,"no","male","yes","no","no",1,"northeast","cauc","bachelor"
"133","no",29,"no","male","no","yes","no",3,"south","cauc","none"
"134","yes",49,"yes","male","yes","yes","yes",3,"west","cauc","highschool"
"135","yes",43,"no","female","no","yes","yes",3,"west","cauc","highschool"
"136","yes",56,"no","male","yes","yes","no",2,"south","cauc","highschool"
"137","yes",26,"no","female","yes","no","no",1,"south","cauc","highschool"
"138","yes",56,"no","male","yes","yes","no",5,"northeast","cauc","master"
"139","yes",52,"no","female","yes","yes","yes",5,"northeast","cauc","other"
"140","yes",34,"no","male","yes","yes","no",2,"west","cauc","phd"
"141","yes",34,"no","female","yes","yes","no",2,"west","cauc","phd"
"142","yes",54,"yes","female","yes","yes","no",2,"midwest","cauc","highschool"
"143","yes",25,"no","female","no","no","no",1,"midwest","cauc","highschool"
"144","yes",40,"no","female","yes","yes","yes",4,"west","cauc","bachelor"
"145","yes",45,"no","male","yes","yes","no",4,"west","cauc","other"
"146","yes",26,"no","male","yes","no","no",1,"midwest","cauc","other"
"147","yes",50,"no","male","yes","no","no",1,"west","cauc","highschool"
"148","yes",61,"yes","male","yes","yes","no",2,"west","cauc","other"
"149","yes",55,"no","male","yes","no","no",1,"northeast","cauc","master"
"150","yes",32,"no","male","no","no","yes",1,"south","cauc","none"
"151","yes",25,"no","male","yes","no","no",1,"northeast","cauc","bachelor"
"152","yes",34,"no","male","yes","no","no",2,"northeast","afam","highschool"
"153","yes",41,"no","male","no","yes","yes",4,"midwest","cauc","highschool"
"154","yes",40,"no","female","yes","yes","no",3,"south","cauc","highschool"
"155","yes",33,"no","male","yes","yes","no",4,"northeast","cauc","bachelor"
"156","yes",33,"no","female","yes","yes","no",4,"northeast","cauc","highschool"
"157","yes",45,"no","female","yes","no","no",3,"midwest","cauc","highschool"
"158","yes",30,"no","female","yes","yes","yes",5,"midwest","cauc","highschool"
"159","yes",26,"no","male","yes","yes","no",5,"midwest","cauc","highschool"
"160","yes",54,"no","female","yes","yes","no",6,"midwest","cauc","highschool"
"161","yes",52,"no","male","yes","yes","no",6,"midwest","cauc","highschool"
"162","yes",36,"no","female","yes","yes","no",4,"south","afam","bachelor"
"163","yes",37,"no","male","yes","yes","no",4,"south","afam","highschool"
"164","yes",60,"no","male","yes","yes","no",2,"midwest","cauc","ged"
"165","yes",53,"no","female","yes","yes","no",2,"midwest","cauc","ged"
"166","yes",23,"no","male","yes","yes","no",2,"midwest","cauc","highschool"
"167","yes",53,"no","male","yes","yes","no",2,"west","cauc","highschool"
"168","yes",24,"no","male","yes","no","no",1,"west","cauc","bachelor"
"169","yes",33,"no","female","yes","no","no",2,"south","cauc","bachelor"
"170","yes",59,"no","male","yes","no","no",1,"south","cauc","bachelor"
"171","yes",35,"no","male","yes","yes","no",4,"south","cauc","highschool"
"172","yes",33,"no","female","yes","yes","no",4,"south","cauc","bachelor"
"173","yes",51,"no","male","no","yes","yes",2,"midwest","cauc","highschool"
"174","yes",35,"no","male","yes","yes","no",4,"west","cauc","highschool"
"175","yes",37,"no","female","yes","yes","no",5,"northeast","cauc","none"
"176","yes",44,"no","female","yes","yes","no",4,"south","afam","bachelor"
"177","no",41,"no","female","yes","no","no",5,"midwest","cauc","none"
"178","yes",22,"no","male","yes","no","no",5,"midwest","cauc","highschool"
"179","yes",18,"no","male","no","no","yes",5,"midwest","cauc","none"
"180","yes",37,"no","male","no","no","no",5,"midwest","cauc","none"
"181","yes",33,"no","male","no","no","yes",2,"south","afam","highschool"
"182","yes",32,"no","female","yes","no","no",1,"south","cauc","highschool"
"183","yes",24,"no","male","yes","yes","no",2,"south","cauc","none"
"184","yes",57,"yes","male","yes","yes","no",4,"northeast","cauc","bachelor"
"185","yes",54,"no","female","yes","yes","no",4,"northeast","cauc","highschool"
"186","yes",27,"no","female","yes","no","no",4,"northeast","cauc","bachelor"
"187","yes",23,"no","male","yes","no","no",4,"northeast","cauc","bachelor"
"188","yes",60,"no","female","yes","yes","no",2,"northeast","cauc","highschool"
"189","yes",38,"yes","female","yes","no","no",1,"west","cauc","bachelor"
"190","yes",28,"no","male","yes","yes","yes",3,"northeast","cauc","highschool"
"191","yes",29,"no","female","yes","yes","no",3,"northeast","cauc","highschool"
"192","yes",46,"no","male","yes","yes","no",5,"south","afam","highschool"
"193","yes",34,"yes","female","yes","yes","no",4,"west","cauc","none"
"194","yes",21,"no","female","no","no","no",5,"west","other","highschool"
"195","yes",46,"no","female","no","yes","no",5,"west","other","highschool"
"196","no",45,"no","female","no","no","yes",2,"west","cauc","highschool"
"197","yes",51,"no","female","yes","yes","no",5,"midwest","cauc","bachelor"
"198","yes",50,"yes","male","no","yes","no",2,"south","cauc","highschool"
"199","yes",41,"no","male","yes","yes","no",2,"west","cauc","ged"
"200","yes",49,"no","female","yes","yes","no",2,"west","cauc","highschool"
"201","yes",29,"no","female","yes","yes","no",2,"west","cauc","bachelor"
"202","yes",48,"yes","female","yes","no","no",2,"west","cauc","highschool"
"203","yes",61,"no","male","yes","yes","no",2,"south","cauc","none"
"204","yes",35,"no","male","yes","yes","no",4,"west","cauc","none"
"205","yes",48,"no","male","yes","yes","yes",3,"south","cauc","highschool"
"206","yes",44,"no","female","yes","yes","no",3,"south","cauc","ged"
"207","no",42,"yes","male","yes","yes","no",4,"northeast","cauc","highschool"
"208","yes",40,"yes","female","yes","yes","no",4,"northeast","cauc","other"
"209","yes",33,"no","male","yes","yes","no",4,"west","cauc","bachelor"
"210","yes",43,"no","female","yes","yes","no",7,"west","cauc","none"
"211","yes",43,"no","male","yes","yes","no",7,"west","cauc","none"
"212","yes",34,"no","male","yes","yes","yes",4,"northeast","cauc","phd"
"213","yes",34,"no","female","yes","yes","no",4,"northeast","cauc","bachelor"
"214","yes",44,"no","male","yes","yes","no",4,"northeast","cauc","highschool"
"215","yes",35,"no","female","yes","yes","no",4,"northeast","cauc","bachelor"
"216","yes",32,"no","female","yes","no","no",3,"south","cauc","bachelor"
"217","yes",42,"no","female","yes","yes","no",2,"west","cauc","bachelor"
"218","yes",32,"no","male","yes","yes","no",5,"midwest","cauc","highschool"
"219","yes",35,"no","female","yes","yes","no",5,"midwest","cauc","bachelor"
"220","yes",19,"no","female","no","no","no",2,"midwest","cauc","highschool"
"221","yes",29,"no","female","yes","no","no",1,"midwest","cauc","bachelor"
"222","no",36,"yes","female","yes","no","no",1,"midwest","cauc","bachelor"
"223","no",21,"no","male","no","no","no",4,"west","cauc","none"
"224","yes",39,"yes","male","yes","no","no",1,"northeast","cauc","highschool"
"225","yes",40,"no","male","yes","yes","no",6,"northeast","cauc","bachelor"
"226","yes",30,"no","male","yes","no","no",1,"west","cauc","highschool"
"227","yes",45,"no","male","no","no","no",2,"midwest","cauc","highschool"
"228","yes",33,"no","female","yes","no","no",2,"midwest","cauc","other"
"229","yes",62,"no","male","yes","yes","yes",2,"northeast","cauc","highschool"
"230","yes",36,"yes","male","yes","yes","no",4,"midwest","cauc","other"
"231","yes",35,"no","female","yes","yes","no",4,"midwest","cauc","other"
"232","yes",26,"no","female","yes","yes","no",3,"midwest","cauc","phd"
"233","yes",29,"no","male","yes","yes","no",3,"midwest","cauc","bachelor"
"234","yes",36,"no","female","yes","no","no",3,"west","cauc","none"
"235","yes",34,"no","male","yes","yes","no",4,"midwest","cauc","bachelor"
"236","yes",33,"no","female","yes","yes","no",4,"midwest","cauc","highschool"
"237","yes",33,"no","male","yes","yes","no",2,"midwest","cauc","other"
"238","no",52,"no","male","yes","no","no",2,"west","other","highschool"
"239","yes",51,"no","female","no","no","no",2,"west","other","highschool"
"240","yes",26,"no","male","yes","yes","no",4,"south","cauc","highschool"
"241","yes",27,"no","male","yes","yes","no",4,"midwest","cauc","none"
"242","yes",58,"no","female","yes","no","no",1,"midwest","cauc","master"
"243","yes",56,"no","female","yes","no","no",1,"midwest","cauc","highschool"
"244","yes",37,"no","female","yes","no","no",2,"south","cauc","highschool"
"245","yes",34,"no","male","yes","yes","no",3,"northeast","cauc","highschool"
"246","yes",57,"no","female","yes","no","no",3,"south","cauc","bachelor"
"247","yes",34,"no","female","yes","no","no",3,"south","cauc","bachelor"
"248","yes",35,"no","male","yes","yes","no",3,"northeast","cauc","highschool"
"249","yes",38,"no","female","yes","yes","no",3,"northeast","cauc","highschool"
"250","yes",28,"no","female","yes","no","no",3,"midwest","cauc","none"
"251","yes",36,"yes","male","yes","yes","no",3,"south","afam","bachelor"
"252","yes",33,"no","female","yes","yes","no",3,"south","afam","highschool"
"253","yes",50,"no","female","yes","yes","yes",4,"northeast","cauc","bachelor"
"254","yes",53,"yes","male","yes","yes","no",4,"northeast","cauc","bachelor"
"255","yes",49,"no","female","yes","no","no",5,"northeast","cauc","highschool"
"256","yes",43,"no","male","yes","yes","no",2,"northeast","afam","highschool"
"257","yes",38,"no","female","yes","yes","no",6,"west","cauc","highschool"
"258","yes",37,"no","male","yes","yes","no",6,"west","cauc","highschool"
"259","yes",34,"yes","male","yes","yes","yes",4,"northeast","cauc","bachelor"
"260","yes",34,"yes","female","yes","yes","no",4,"northeast","cauc","other"
"261","yes",44,"yes","male","yes","no","no",1,"midwest","cauc","highschool"
"262","yes",38,"no","male","yes","yes","no",4,"midwest","afam","highschool"
"263","yes",30,"no","female","yes","yes","yes",4,"midwest","afam","other"
"264","no",45,"no","female","yes","no","yes",2,"west","cauc","highschool"
"265","yes",40,"no","male","no","yes","no",2,"south","cauc","highschool"
"266","no",52,"no","male","yes","no","no",1,"northeast","cauc","none"
"267","yes",30,"no","female","no","no","no",6,"northeast","cauc","none"
"268","yes",20,"no","female","no","no","no",1,"west","cauc","highschool"
"269","yes",40,"no","female","yes","yes","no",3,"northeast","cauc","highschool"
"270","yes",34,"no","male","yes","yes","no",3,"northeast","cauc","ged"
"271","yes",32,"no","male","yes","yes","yes",4,"south","cauc","phd"
"272","yes",32,"no","male","yes","no","no",1,"south","cauc","bachelor"
"273","yes",28,"no","male","no","yes","no",2,"south","afam","phd"
"274","yes",26,"no","female","no","yes","no",2,"south","afam","phd"
"275","yes",30,"no","male","yes","yes","no",3,"midwest","afam","highschool"
"276","yes",40,"yes","female","yes","yes","yes",3,"midwest","cauc","none"
"277","yes",23,"no","male","yes","no","no",3,"midwest","cauc","highschool"
"278","yes",32,"yes","male","yes","yes","yes",4,"south","cauc","bachelor"
"279","yes",31,"no","female","yes","yes","yes",4,"south","cauc","bachelor"
"280","yes",22,"no","male","yes","no","no",1,"midwest","cauc","other"
"281","yes",34,"no","male","yes","yes","no",8,"west","cauc","master"
"282","yes",50,"no","male","yes","yes","no",2,"northeast","cauc","other"
"283","yes",51,"no","female","yes","yes","no",2,"northeast","cauc","highschool"
"284","yes",38,"yes","female","yes","yes","no",5,"south","cauc","bachelor"
"285","no",40,"no","female","yes","no","no",3,"midwest","afam","highschool"
"286","yes",42,"no","male","yes","no","no",3,"midwest","afam","highschool"
"287","yes",19,"no","female","yes","no","no",3,"midwest","afam","highschool"
"288","yes",43,"no","female","yes","no","no",1,"south","cauc","bachelor"
"289","yes",38,"yes","male","yes","yes","no",4,"midwest","cauc","highschool"
"290","yes",51,"no","male","no","no","yes",5,"west","cauc","highschool"
"291","yes",41,"no","female","no","no","no",5,"west","cauc","other"
"292","yes",32,"no","male","yes","no","no",1,"midwest","cauc","bachelor"
"293","yes",35,"no","female","no","no","no",3,"south","cauc","ged"
"294","yes",49,"no","male","no","yes","yes",2,"south","afam","none"
"295","yes",35,"no","female","yes","yes","no",3,"west","cauc","highschool"
"296","yes",38,"no","male","yes","yes","no",4,"west","cauc","master"
"297","yes",38,"yes","female","yes","no","yes",3,"west","cauc","bachelor"
"298","yes",43,"no","female","yes","no","no",2,"south","cauc","none"
"299","yes",31,"no","female","yes","yes","no",4,"west","cauc","other"
"300","yes",30,"no","male","yes","yes","no",4,"west","cauc","highschool"
"301","yes",40,"no","male","no","no","no",3,"south","cauc","highschool"
"302","yes",26,"no","male","yes","yes","no",3,"midwest","cauc","highschool"
"303","yes",26,"no","female","yes","yes","no",3,"midwest","cauc","other"
"304","yes",49,"no","male","no","no","yes",4,"south","cauc","bachelor"
"305","yes",35,"no","female","yes","no","no",4,"west","cauc","highschool"
"306","yes",42,"no","male","yes","no","no",4,"west","cauc","other"
"307","yes",53,"no","male","yes","yes","no",2,"south","cauc","other"
"308","yes",40,"no","female","yes","yes","no",4,"west","cauc","other"
"309","yes",39,"no","male","yes","yes","no",4,"west","cauc","bachelor"
"310","yes",38,"no","female","yes","yes","no",2,"northeast","afam","other"
"311","yes",37,"yes","male","yes","yes","no",2,"northeast","afam","highschool"
"312","yes",26,"no","female","yes","no","no",3,"northeast","afam","none"
"313","yes",57,"yes","male","yes","yes","yes",2,"west","cauc","master"
"314","yes",56,"no","female","yes","yes","no",2,"west","cauc","bachelor"
"315","yes",47,"no","male","yes","yes","no",4,"midwest","cauc","bachelor"
"316","yes",44,"no","female","yes","yes","no",4,"midwest","cauc","master"
"317","yes",39,"no","female","yes","no","no",3,"south","afam","ged"
"318","yes",41,"no","male","yes","no","no",1,"south","afam","none"
"319","yes",44,"no","male","yes","yes","yes",3,"midwest","cauc","highschool"
"320","yes",37,"no","male","yes","yes","no",3,"midwest","cauc","master"
"321","yes",36,"no","female","yes","yes","yes",3,"midwest","cauc","highschool"
"322","yes",33,"no","male","yes","yes","no",2,"south","afam","bachelor"
"323","yes",33,"no","female","yes","yes","no",2,"south","afam","bachelor"
"324","yes",31,"no","female","yes","yes","yes",2,"midwest","cauc","highschool"
"325","yes",31,"no","male","yes","yes","no",2,"midwest","cauc","ged"
"326","yes",46,"no","male","no","yes","no",3,"south","cauc","highschool"
"327","yes",44,"yes","female","yes","yes","yes",3,"south","cauc","bachelor"
"328","yes",60,"no","male","yes","yes","no",2,"midwest","cauc","other"
"329","yes",56,"no","female","yes","yes","yes",2,"midwest","cauc","master"
"330","yes",24,"no","male","yes","no","no",1,"west","cauc","bachelor"
"331","yes",51,"no","female","yes","yes","yes",4,"northeast","afam","highschool"
"332","yes",30,"no","male","yes","yes","no",3,"northeast","cauc","master"
"333","no",51,"no","male","yes","yes","no",8,"northeast","cauc","bachelor"
"334","no",47,"yes","female","yes","yes","yes",8,"northeast","cauc","other"
"335","yes",22,"no","female","yes","no","no",8,"northeast","cauc","bachelor"
"336","yes",28,"no","male","yes","yes","no",3,"west","cauc","highschool"
"337","yes",31,"yes","female","yes","yes","no",3,"west","cauc","ged"
"338","yes",38,"no","male","yes","no","no",1,"south","cauc","master"
"339","no",57,"yes","female","yes","no","no",1,"midwest","cauc","none"
"340","no",42,"yes","female","yes","no","no",1,"midwest","cauc","highschool"
"341","yes",60,"no","female","yes","yes","no",2,"south","cauc","other"
"342","yes",38,"yes","male","yes","no","no",1,"south","afam","highschool"
"343","no",49,"no","male","yes","yes","no",5,"midwest","cauc","ged"
"344","yes",50,"no","male","yes","yes","no",4,"northeast","cauc","highschool"
"345","no",51,"no","female","yes","yes","no",4,"northeast","cauc","highschool"
"346","yes",18,"no","female","yes","no","no",4,"northeast","cauc","highschool"
"347","yes",54,"no","female","yes","no","no",1,"west","cauc","highschool"
"348","yes",31,"no","male","yes","yes","no",3,"northeast","other","bachelor"
"349","yes",33,"no","female","no","no","no",1,"west","cauc","highschool"
"350","no",52,"no","female","yes","yes","no",2,"south","cauc","highschool"
"351","yes",28,"no","male","no","no","yes",1,"northeast","afam","none"
"352","yes",51,"no","male","yes","no","no",1,"northeast","cauc","none"
"353","yes",53,"no","male","yes","yes","no",3,"northeast","cauc","highschool"
"354","yes",49,"no","female","yes","yes","no",3,"northeast","cauc","highschool"
"355","yes",26,"no","female","yes","no","no",3,"northeast","cauc","bachelor"
"356","no",57,"no","male","yes","yes","no",2,"south","cauc","none"
"357","no",55,"no","female","yes","yes","no",2,"south","cauc","highschool"
"358","yes",46,"no","male","yes","yes","no",4,"south","cauc","highschool"
"359","yes",46,"no","female","yes","yes","no",4,"south","cauc","highschool"
"360","yes",38,"no","female","yes","no","no",5,"west","afam","none"
"361","yes",31,"no","male","yes","no","no",1,"south","afam","highschool"
"362","yes",56,"no","female","yes","yes","no",2,"northeast","cauc","master"
"363","yes",29,"no","female","no","no","no",1,"midwest","afam","highschool"
"364","yes",37,"no","female","yes","no","no",1,"south","cauc","bachelor"
"365","yes",36,"no","male","yes","yes","no",4,"south","cauc","bachelor"
"366","yes",38,"no","male","yes","yes","no",5,"northeast","cauc","highschool"
"367","yes",32,"yes","male","yes","no","no",1,"midwest","cauc","highschool"
"368","yes",38,"no","male","yes","yes","no",3,"northeast","afam","highschool"
"369","yes",39,"no","female","yes","yes","no",3,"northeast","afam","highschool"
"370","yes",61,"no","female","yes","yes","no",4,"south","cauc","highschool"
"371","yes",27,"no","male","yes","no","no",4,"south","cauc","highschool"
"372","yes",26,"no","male","yes","no","no",4,"south","cauc","highschool"
"373","no",50,"no","female","no","yes","no",2,"south","cauc","none"
"374","yes",31,"no","male","no","no","no",3,"midwest","cauc","none"
"375","yes",48,"no","male","yes","yes","no",3,"midwest","cauc","highschool"
"376","yes",49,"no","female","yes","yes","no",3,"midwest","cauc","highschool"
"377","yes",20,"yes","female","yes","no","no",1,"midwest","cauc","highschool"
"378","yes",49,"no","female","yes","no","no",3,"south","afam","master"
"379","yes",36,"no","male","no","yes","yes",5,"south","cauc","bachelor"
"380","yes",47,"no","male","yes","yes","no",3,"south","cauc","highschool"
"381","yes",46,"no","female","yes","yes","no",3,"south","cauc","highschool"
"382","yes",47,"no","male","yes","yes","no",3,"south","cauc","highschool"
"383","yes",31,"no","female","yes","yes","no",5,"northeast","cauc","highschool"
"384","yes",33,"no","male","yes","yes","yes",5,"northeast","cauc","highschool"
"385","yes",44,"no","male","yes","yes","no",5,"south","cauc","master"
"386","yes",55,"no","female","yes","yes","no",2,"south","cauc","master"
"387","yes",58,"no","male","yes","yes","no",2,"south","cauc","highschool"
"388","yes",28,"no","male","yes","yes","no",4,"south","cauc","highschool"
"389","yes",24,"no","male","no","no","no",4,"south","cauc","highschool"
"390","yes",22,"no","male","no","no","no",1,"west","cauc","highschool"
"391","yes",43,"no","male","yes","yes","yes",3,"midwest","cauc","highschool"
"392","yes",42,"no","female","yes","yes","no",3,"midwest","cauc","highschool"
"393","yes",44,"no","male","yes","yes","no",8,"northeast","cauc","highschool"
"394","yes",41,"no","female","yes","yes","no",8,"northeast","cauc","highschool"
"395","yes",22,"no","female","no","no","no",8,"northeast","cauc","highschool"
"396","yes",19,"no","male","no","no","no",8,"northeast","cauc","highschool"
"397","yes",36,"yes","male","yes","yes","no",3,"west","cauc","other"
"398","yes",40,"no","female","yes","no","no",2,"south","afam","bachelor"
"399","yes",44,"no","male","yes","yes","no",2,"south","cauc","ged"
"400","yes",40,"no","female","yes","no","no",3,"northeast","afam","none"
"401","yes",46,"no","male","yes","yes","no",4,"south","cauc","highschool"
"402","yes",46,"no","female","yes","yes","no",4,"south","cauc","highschool"
"403","yes",39,"no","male","yes","yes","no",4,"northeast","cauc","highschool"
"404","yes",38,"no","female","yes","yes","no",4,"northeast","cauc","highschool"
"405","yes",34,"no","male","yes","yes","yes",6,"south","cauc","none"
"406","yes",45,"no","male","no","yes","yes",4,"midwest","afam","other"
"407","yes",35,"no","female","no","yes","no",4,"midwest","afam","highschool"
"408","yes",25,"yes","male","no","yes","no",3,"south","cauc","highschool"
"409","no",42,"no","male","yes","yes","no",4,"northeast","cauc","highschool"
"410","yes",36,"no","male","no","yes","yes",4,"south","cauc","none"
"411","yes",35,"no","female","yes","yes","no",4,"south","cauc","highschool"
"412","yes",21,"no","male","no","no","no",2,"south","afam","highschool"
"413","yes",56,"no","female","yes","no","no",2,"south","afam","other"
"414","no",24,"no","female","yes","yes","no",2,"northeast","cauc","highschool"
"415","yes",42,"no","female","no","no","no",3,"northeast","cauc","none"
"416","yes",32,"no","female","yes","no","no",1,"south","cauc","other"
"417","no",33,"no","female","yes","no","no",1,"south","cauc","highschool"
"418","yes",22,"no","male","no","no","no",7,"south","cauc","highschool"
"419","no",55,"no","female","yes","no","no",2,"midwest","afam","highschool"
"420","yes",31,"no","male","no","no","yes",2,"midwest","afam","highschool"
"421","yes",43,"no","male","yes","yes","no",5,"west","cauc","none"
"422","no",43,"no","female","yes","yes","no",5,"west","cauc","none"
"423","yes",25,"no","male","yes","no","no",5,"west","cauc","ged"
"424","yes",23,"no","male","yes","no","no",5,"west","cauc","highschool"
"425","yes",19,"no","female","yes","no","no",5,"west","cauc","highschool"
"426","yes",30,"no","male","yes","no","no",1,"south","cauc","none"
"427","yes",56,"no","male","yes","no","no",1,"south","cauc","highschool"
"428","yes",29,"no","female","yes","no","no",1,"south","afam","highschool"
"429","yes",45,"no","male","yes","yes","no",6,"northeast","cauc","bachelor"
"430","yes",21,"no","male","no","no","no",6,"northeast","cauc","other"
"431","yes",49,"no","female","yes","no","no",2,"south","cauc","bachelor"
"432","yes",24,"no","female","yes","yes","no",2,"south","cauc","highschool"
"433","yes",27,"no","male","yes","yes","yes",2,"south","cauc","none"
"434","yes",30,"no","female","no","no","no",3,"south","afam","highschool"
"435","yes",34,"no","male","no","no","no",3,"south","afam","highschool"
"436","yes",51,"no","female","no","no","no",1,"south","afam","highschool"
"437","yes",33,"no","male","no","yes","no",5,"south","other","none"
"438","yes",58,"no","male","yes","yes","yes",2,"south","cauc","highschool"
"439","no",57,"yes","female","yes","yes","yes",2,"south","cauc","highschool"
"440","yes",26,"no","female","no","yes","no",3,"south","cauc","none"
"441","yes",30,"no","male","no","yes","no",3,"south","cauc","none"
"442","yes",46,"yes","female","no","yes","no",2,"midwest","cauc","highschool"
"443","yes",41,"no","male","no","no","no",1,"west","cauc","none"
"444","yes",30,"no","male","no","yes","no",7,"west","cauc","highschool"
"445","yes",26,"no","female","no","yes","no",7,"west","cauc","highschool"
"446","yes",50,"no","male","yes","yes","yes",3,"midwest","cauc","bachelor"
"447","yes",50,"no","male","yes","yes","no",4,"south","cauc","highschool"
"448","no",41,"no","female","no","yes","no",4,"south","cauc","highschool"
"449","yes",34,"no","male","yes","no","no",1,"west","cauc","bachelor"
"450","yes",28,"no","male","yes","no","no",1,"west","cauc","highschool"
"451","yes",26,"no","male","no","no","no",1,"west","cauc","bachelor"
"452","yes",49,"no","male","yes","yes","yes",2,"south","cauc","other"
"453","yes",47,"no","female","yes","yes","no",2,"south","cauc","bachelor"
"454","yes",47,"no","male","yes","yes","no",4,"west","other","highschool"
"455","no",42,"yes","female","yes","yes","no",4,"west","other","highschool"
"456","yes",22,"no","male","no","no","no",1,"northeast","cauc","highschool"
"457","yes",20,"no","male","yes","no","no",1,"northeast","cauc","highschool"
"458","yes",34,"no","male","yes","yes","no",2,"northeast","cauc","bachelor"
"459","yes",32,"no","female","yes","yes","no",2,"northeast","cauc","highschool"
"460","yes",34,"yes","male","yes","no","no",1,"south","afam","highschool"
"461","yes",40,"no","male","yes","no","no",1,"midwest","cauc","bachelor"
"462","yes",31,"no","male","yes","yes","no",4,"south","cauc","highschool"
"463","yes",28,"no","female","yes","yes","no",4,"south","cauc","bachelor"
"464","yes",36,"no","male","yes","yes","yes",4,"midwest","cauc","bachelor"
"465","yes",34,"no","female","yes","yes","no",4,"midwest","cauc","other"
"466","yes",49,"yes","female","yes","no","no",3,"midwest","cauc","highschool"
"467","yes",22,"no","female","yes","no","no",3,"midwest","cauc","highschool"
"468","yes",61,"no","male","yes","no","no",2,"south","cauc","highschool"
"469","yes",20,"no","male","no","no","no",5,"south","afam","none"
"470","yes",19,"no","female","no","no","no",5,"south","afam","none"
"471","yes",46,"no","male","yes","yes","no",3,"northeast","cauc","highschool"
"472","yes",42,"yes","female","yes","yes","no",3,"northeast","cauc","other"
"473","yes",44,"no","male","yes","yes","no",1,"midwest","afam","bachelor"
"474","yes",41,"no","female","yes","yes","no",2,"midwest","afam","bachelor"
"475","yes",31,"no","male","yes","no","no",2,"south","cauc","none"
"476","yes",47,"no","male","yes","yes","no",3,"midwest","cauc","highschool"
"477","yes",46,"no","female","yes","yes","no",3,"midwest","cauc","master"
"478","no",37,"no","male","no","no","no",1,"northeast","afam","highschool"
"479","yes",36,"no","male","yes","no","no",1,"northeast","afam","highschool"
"480","yes",29,"no","male","yes","yes","no",4,"west","cauc","none"
"481","yes",49,"no","male","yes","no","no",1,"south","cauc","ged"
"482","yes",28,"no","male","no","no","no",1,"west","cauc","bachelor"
"483","yes",28,"no","male","yes","yes","no",3,"west","cauc","highschool"
"484","yes",34,"no","female","yes","yes","no",3,"west","cauc","highschool"
"485","yes",53,"no","male","yes","yes","no",4,"south","cauc","bachelor"
"486","yes",46,"no","female","yes","yes","no",4,"south","cauc","highschool"
"487","yes",45,"no","male","yes","no","no",4,"west","cauc","bachelor"
"488","yes",31,"no","female","no","no","no",4,"west","cauc","highschool"
"489","yes",41,"no","female","yes","no","no",2,"west","cauc","highschool"
"490","no",25,"no","male","no","yes","no",6,"midwest","cauc","none"
"491","yes",38,"no","male","yes","yes","no",4,"west","cauc","bachelor"
"492","yes",53,"no","female","no","no","yes",1,"south","cauc","highschool"
"493","no",33,"yes","male","yes","no","no",2,"south","cauc","highschool"
"494","yes",52,"no","male","yes","yes","no",2,"northeast","cauc","bachelor"
"495","no",52,"no","female","yes","yes","no",2,"northeast","cauc","bachelor"
"496","yes",25,"no","female","no","no","no",1,"northeast","cauc","bachelor"
"497","no",55,"no","male","yes","no","yes",1,"south","cauc","none"
"498","yes",62,"no","female","yes","yes","yes",2,"west","cauc","bachelor"
"499","yes",40,"yes","male","yes","yes","no",3,"south","cauc","highschool"
"500","yes",48,"yes","female","yes","yes","no",3,"south","cauc","highschool"
"501","yes",42,"no","female","yes","no","no",1,"midwest","cauc","highschool"
"502","yes",43,"no","female","no","no","no",2,"west","cauc","ged"
"503","yes",40,"no","male","yes","yes","yes",6,"northeast","cauc","highschool"
"504","yes",43,"yes","male","yes","no","no",2,"south","cauc","bachelor"
"505","yes",54,"no","female","no","yes","no",4,"west","cauc","ged"
"506","yes",56,"no","female","yes","yes","yes",1,"west","cauc","master"
"507","yes",35,"no","female","yes","no","no",3,"south","afam","highschool"
"508","yes",49,"no","female","yes","no","no",2,"northeast","cauc","bachelor"
"509","yes",49,"no","male","yes","no","no",1,"west","afam","highschool"
"510","yes",31,"no","male","yes","yes","no",3,"south","afam","highschool"
"511","yes",26,"no","female","yes","yes","no",3,"south","afam","highschool"
"512","yes",36,"no","male","yes","yes","no",5,"west","cauc","bachelor"
"513","yes",32,"no","male","yes","yes","no",6,"south","afam","ged"
"514","yes",57,"yes","male","yes","yes","yes",3,"northeast","cauc","other"
"515","yes",26,"no","male","yes","yes","no",4,"south","cauc","highschool"
"516","yes",25,"no","female","yes","yes","no",4,"south","cauc","other"
"517","no",30,"no","male","no","yes","no",3,"west","other","ged"
"518","yes",29,"no","female","no","yes","no",3,"west","other","highschool"
"519","yes",25,"no","male","no","yes","no",2,"west","cauc","other"
"520","yes",26,"no","male","yes","no","no",1,"midwest","cauc","highschool"
"521","yes",23,"no","female","yes","yes","no",2,"west","cauc","highschool"
"522","yes",48,"no","male","yes","yes","no",3,"south","cauc","highschool"
"523","no",50,"no","female","yes","yes","no",3,"south","cauc","highschool"
"524","yes",35,"no","male","yes","yes","no",2,"south","cauc","highschool"
"525","yes",35,"no","female","yes","yes","no",2,"south","cauc","highschool"
"526","yes",19,"no","male","yes","no","no",1,"south","cauc","highschool"
"527","yes",27,"no","female","yes","yes","no",4,"south","cauc","highschool"
"528","yes",28,"no","male","yes","yes","no",4,"south","cauc","highschool"
"529","yes",20,"no","female","no","no","no",4,"south","cauc","highschool"
"530","yes",32,"no","male","yes","no","no",2,"south","cauc","highschool"
"531","yes",26,"no","female","yes","yes","no",3,"midwest","afam","highschool"
"532","yes",35,"yes","male","yes","yes","no",5,"south","cauc","highschool"
"533","yes",27,"no","male","yes","no","no",4,"northeast","afam","highschool"
"534","no",22,"no","male","yes","no","no",1,"west","cauc","none"
"535","yes",21,"yes","female","yes","no","no",2,"west","cauc","ged"
"536","yes",22,"no","male","yes","yes","no",2,"west","other","highschool"
"537","yes",50,"no","male","yes","yes","yes",3,"midwest","cauc","bachelor"
"538","yes",18,"no","female","yes","no","no",3,"midwest","cauc","highschool"
"539","no",49,"no","male","no","no","yes",3,"south","cauc","none"
"540","yes",36,"no","male","no","yes","no",3,"south","cauc","none"
"541","yes",31,"no","male","no","no","no",1,"south","afam","ged"
"542","yes",36,"no","male","yes","yes","no",6,"west","cauc","highschool"
"543","yes",53,"no","female","yes","no","no",2,"northeast","cauc","bachelor"
"544","yes",38,"no","female","no","yes","no",4,"south","cauc","highschool"
"545","yes",55,"no","male","yes","yes","no",2,"midwest","cauc","bachelor"
"546","yes",56,"no","female","yes","yes","yes",2,"midwest","cauc","highschool"
"547","yes",36,"no","male","yes","yes","no",3,"northeast","cauc","other"
"548","yes",30,"no","female","yes","yes","no",3,"northeast","cauc","highschool"
"549","yes",43,"no","female","no","yes","no",6,"west","cauc","none"
"550","yes",41,"no","male","no","yes","no",6,"west","cauc","none"
"551","yes",39,"no","male","no","no","no",1,"midwest","cauc","highschool"
"552","yes",24,"no","female","yes","no","no",2,"midwest","cauc","highschool"
"553","yes",31,"no","male","yes","yes","no",5,"west","cauc","none"
"554","yes",31,"no","male","no","yes","no",5,"west","cauc","none"
"555","yes",31,"no","female","no","yes","no",5,"west","cauc","none"
"556","yes",22,"no","male","yes","no","no",1,"west","cauc","other"
"557","yes",47,"yes","female","yes","yes","no",4,"west","cauc","master"
"558","yes",59,"no","male","yes","yes","no",2,"west","cauc","bachelor"
"559","yes",49,"no","male","yes","yes","yes",4,"northeast","cauc","master"
"560","yes",46,"no","female","yes","yes","no",4,"northeast","cauc","master"
"561","yes",22,"no","male","yes","no","no",4,"northeast","cauc","highschool"
"562","yes",50,"no","male","yes","yes","no",4,"south","cauc","ged"
"563","yes",44,"no","female","yes","yes","no",4,"south","cauc","highschool"
"564","yes",49,"yes","female","yes","no","no",4,"northeast","cauc","highschool"
"565","yes",22,"no","female","yes","no","no",4,"northeast","cauc","highschool"
"566","no",37,"no","male","yes","yes","no",4,"south","cauc","ged"
"567","no",31,"yes","female","yes","yes","no",4,"south","cauc","highschool"
"568","yes",49,"no","male","yes","yes","no",3,"south","cauc","highschool"
"569","yes",26,"no","male","yes","yes","no",2,"midwest","cauc","highschool"
"570","yes",23,"no","female","yes","yes","no",2,"midwest","cauc","highschool"
"571","yes",56,"no","male","yes","yes","no",2,"south","cauc","highschool"
"572","yes",57,"no","male","yes","yes","no",4,"south","cauc","none"
"573","yes",59,"no","female","yes","yes","no",4,"south","cauc","none"
"574","yes",27,"no","female","yes","no","no",4,"south","cauc","highschool"
"575","yes",44,"no","male","yes","yes","no",4,"midwest","cauc","other"
"576","no",48,"yes","male","yes","no","yes",1,"west","cauc","other"
"577","yes",45,"no","female","no","no","no",9,"west","cauc","highschool"
"578","yes",22,"no","male","no","no","no",9,"west","cauc","highschool"
"579","yes",25,"no","female","no","no","no",9,"west","cauc","bachelor"
"580","yes",42,"no","female","yes","yes","no",3,"northeast","cauc","highschool"
"581","yes",22,"no","male","no","no","no",3,"northeast","cauc","highschool"
"582","yes",59,"yes","male","yes","yes","no",2,"midwest","cauc","phd"
"583","yes",29,"no","female","no","yes","no",3,"northeast","afam","highschool"
"584","yes",36,"no","male","no","yes","no",3,"northeast","afam","highschool"
"585","yes",38,"no","male","yes","yes","no",2,"south","cauc","highschool"
"586","yes",20,"no","male","yes","no","no",1,"midwest","cauc","highschool"
"587","yes",55,"yes","male","yes","yes","no",2,"midwest","cauc","highschool"
"588","yes",55,"yes","female","yes","yes","no",2,"midwest","cauc","other"
"589","yes",50,"yes","female","yes","no","no",2,"west","cauc","bachelor"
"590","yes",24,"no","male","yes","yes","no",2,"west","cauc","bachelor"
"591","yes",42,"no","female","yes","no","no",2,"west","cauc","none"
"592","yes",32,"no","male","yes","no","no",2,"west","cauc","highschool"
"593","no",46,"no","male","yes","yes","no",3,"northeast","cauc","bachelor"
"594","no",41,"no","female","yes","yes","no",3,"northeast","cauc","highschool"
"595","yes",54,"no","male","yes","yes","no",2,"south","cauc","bachelor"
"596","yes",54,"no","female","yes","yes","no",2,"south","cauc","highschool"
"597","yes",34,"no","female","yes","no","no",1,"west","cauc","highschool"
"598","yes",54,"yes","male","yes","yes","no",4,"northeast","cauc","highschool"
"599","yes",51,"yes","female","yes","yes","no",4,"northeast","cauc","highschool"
"600","yes",28,"no","male","no","no","no",4,"northeast","cauc","highschool"
"601","yes",27,"no","male","yes","no","no",4,"northeast","cauc","highschool"
"602","yes",20,"no","male","yes","no","no",1,"northeast","cauc","highschool"
"603","no",60,"yes","female","yes","yes","no",8,"midwest","afam","ged"
"604","yes",27,"yes","male","yes","no","no",3,"northeast","cauc","highschool"
"605","yes",22,"yes","female","no","no","no",3,"northeast","cauc","highschool"
"606","yes",26,"no","female","yes","no","no",1,"midwest","cauc","ged"
"607","yes",23,"no","male","yes","yes","no",10,"west","cauc","none"
"608","yes",38,"no","male","yes","no","no",1,"northeast","cauc","highschool"
"609","yes",28,"no","male","no","yes","yes",4,"northeast","cauc","highschool"
"610","yes",28,"no","male","yes","yes","no",2,"south","cauc","highschool"
"611","yes",29,"no","female","yes","yes","no",2,"south","cauc","highschool"
"612","yes",40,"no","female","yes","no","no",1,"midwest","cauc","highschool"
"613","yes",47,"yes","female","no","no","yes",1,"northeast","cauc","bachelor"
"614","yes",49,"no","female","yes","yes","no",4,"south","cauc","highschool"
"615","yes",44,"no","male","yes","yes","no",4,"south","cauc","highschool"
"616","yes",53,"no","male","no","yes","no",3,"south","cauc","none"
"617","yes",22,"no","male","no","no","no",3,"south","cauc","none"
"618","yes",38,"no","male","yes","no","no",3,"northeast","cauc","bachelor"
"619","yes",62,"no","female","yes","yes","no",2,"west","cauc","other"
"620","yes",34,"no","female","yes","no","no",2,"west","cauc","bachelor"
"621","no",32,"no","female","yes","no","yes",2,"west","cauc","bachelor"
"622","yes",47,"no","male","yes","yes","no",3,"midwest","cauc","bachelor"
"623","yes",45,"no","female","yes","yes","no",3,"midwest","cauc","highschool"
"624","yes",20,"no","male","yes","no","no",3,"midwest","cauc","highschool"
"625","yes",43,"no","female","yes","no","no",3,"midwest","cauc","highschool"
"626","yes",29,"no","male","yes","yes","yes",4,"south","cauc","highschool"
"627","yes",26,"no","female","no","yes","yes",4,"south","cauc","none"
"628","no",48,"no","male","yes","yes","no",4,"south","afam","highschool"
"629","yes",46,"yes","female","yes","yes","no",4,"south","afam","highschool"
"630","no",58,"yes","male","yes","yes","no",2,"midwest","cauc","highschool"
"631","yes",58,"yes","male","yes","yes","no",2,"west","cauc","highschool"
"632","no",55,"yes","female","yes","yes","no",2,"west","cauc","highschool"
"633","no",28,"no","female","yes","no","no",1,"midwest","cauc","bachelor"
"634","yes",29,"yes","male","yes","no","yes",3,"midwest","cauc","highschool"
"635","yes",46,"no","female","yes","yes","no",6,"northeast","afam","none"
"636","no",55,"no","male","yes","yes","no",6,"northeast","afam","highschool"
"637","yes",26,"no","male","no","no","no",6,"northeast","afam","highschool"
"638","yes",26,"no","male","yes","no","no",6,"northeast","afam","highschool"
"639","yes",47,"no","male","yes","yes","no",4,"midwest","cauc","highschool"
"640","yes",44,"no","female","yes","yes","no",4,"midwest","cauc","master"
"641","yes",54,"no","male","yes","yes","no",3,"south","cauc","highschool"
"642","yes",55,"no","female","no","yes","no",3,"south","cauc","none"
"643","yes",30,"no","female","yes","no","no",3,"south","cauc","highschool"
"644","yes",36,"no","male","no","no","no",3,"south","cauc","highschool"
"645","yes",41,"no","female","yes","no","no",1,"west","cauc","bachelor"
"646","yes",54,"no","female","yes","no","no",1,"west","cauc","bachelor"
"647","yes",54,"no","male","yes","yes","no",3,"midwest","cauc","highschool"
"648","yes",45,"no","male","yes","no","no",4,"south","cauc","ged"
"649","no",37,"yes","female","yes","no","no",1,"south","cauc","ged"
"650","yes",48,"no","male","no","no","no",4,"south","cauc","none"
"651","yes",27,"no","male","no","yes","no",2,"south","afam","none"
"652","yes",43,"no","female","yes","yes","no",2,"south","afam","none"
"653","yes",31,"no","male","yes","yes","no",4,"northeast","other","highschool"
"654","yes",26,"no","female","yes","yes","no",4,"northeast","other","highschool"
"655","yes",32,"no","male","yes","no","no",2,"northeast","cauc","highschool"
"656","no",45,"yes","female","yes","no","no",2,"west","afam","highschool"
"657","yes",37,"no","female","no","no","no",4,"west","cauc","none"
"658","yes",21,"yes","male","no","no","no",4,"west","cauc","none"
"659","yes",32,"no","male","yes","yes","no",2,"south","cauc","highschool"
"660","yes",22,"no","female","yes","yes","no",2,"south","cauc","highschool"
"661","yes",43,"no","male","yes","no","no",1,"south","cauc","highschool"
"662","yes",50,"no","female","yes","no","no",1,"west","cauc","master"
"663","yes",43,"no","male","yes","yes","no",4,"south","cauc","highschool"
"664","yes",45,"no","female","yes","yes","no",4,"south","afam","highschool"
"665","yes",53,"no","male","no","no","no",1,"south","cauc","bachelor"
"666","yes",49,"no","male","yes","yes","no",2,"south","cauc","highschool"
"667","yes",46,"no","female","yes","yes","no",2,"south","cauc","highschool"
"668","yes",25,"no","male","yes","yes","yes",2,"south","cauc","highschool"
"669","yes",23,"no","female","yes","yes","no",2,"south","cauc","highschool"
"670","yes",25,"no","male","yes","yes","no",3,"midwest","cauc","other"
"671","yes",55,"no","male","yes","yes","yes",2,"south","cauc","highschool"
"672","yes",53,"no","female","yes","yes","no",2,"south","cauc","highschool"
"673","yes",51,"no","female","yes","yes","no",2,"northeast","cauc","other"
"674","yes",36,"no","male","yes","yes","no",4,"south","cauc","bachelor"
"675","yes",30,"no","female","yes","yes","no",4,"south","cauc","bachelor"
"676","yes",21,"no","female","yes","no","no",1,"south","cauc","highschool"
"677","yes",24,"no","female","yes","no","no",1,"south","cauc","highschool"
"678","yes",55,"yes","female","yes","yes","no",2,"midwest","cauc","highschool"
"679","no",55,"no","male","yes","yes","no",2,"midwest","cauc","highschool"
"680","no",34,"no","male","yes","no","no",1,"midwest","cauc","highschool"
"681","yes",38,"no","male","yes","yes","no",3,"northeast","cauc","highschool"
"682","yes",47,"no","male","yes","no","no",2,"midwest","cauc","highschool"
"683","yes",62,"no","female","yes","no","no",3,"south","afam","other"
"684","yes",44,"no","female","yes","yes","no",4,"west","other","highschool"
"685","yes",48,"no","male","yes","yes","no",4,"west","other","highschool"
"686","yes",29,"no","male","yes","no","no",1,"south","cauc","phd"
"687","yes",28,"no","male","no","yes","yes",2,"west","cauc","ged"
"688","yes",42,"no","female","yes","yes","no",4,"south","cauc","bachelor"
"689","yes",51,"no","male","yes","yes","no",4,"south","cauc","phd"
"690","yes",51,"no","female","no","yes","no",4,"south","cauc","master"
"691","yes",39,"no","male","yes","yes","no",2,"south","afam","master"
"692","yes",32,"no","female","yes","yes","no",2,"south","afam","bachelor"
"693","yes",38,"no","male","yes","yes","no",3,"south","afam","highschool"
"694","yes",34,"no","female","yes","yes","no",3,"south","afam","highschool"
"695","yes",53,"no","male","yes","yes","no",3,"south","cauc","highschool"
"696","yes",37,"no","male","yes","no","no",1,"midwest","cauc","bachelor"
"697","yes",50,"no","female","yes","no","no",1,"northeast","afam","ged"
"698","yes",38,"no","male","yes","no","no",3,"midwest","cauc","highschool"
"699","no",44,"no","female","yes","yes","no",4,"west","other","highschool"
"700","yes",53,"no","male","yes","yes","no",2,"midwest","afam","highschool"
"701","yes",44,"no","female","yes","no","yes",1,"northeast","cauc","highschool"
"702","yes",43,"no","female","yes","yes","no",4,"south","afam","highschool"
"703","yes",20,"no","female","yes","no","no",4,"south","afam","highschool"
"704","yes",50,"no","female","no","no","yes",3,"south","afam","ged"
"705","yes",40,"no","male","yes","yes","no",4,"south","cauc","highschool"
"706","yes",21,"no","male","yes","no","no",4,"south","cauc","highschool"
"707","yes",36,"no","male","yes","yes","no",4,"midwest","cauc","highschool"
"708","yes",27,"no","male","yes","no","no",3,"midwest","cauc","highschool"
"709","yes",24,"no","female","yes","no","no",3,"midwest","cauc","highschool"
"710","yes",31,"no","male","yes","yes","no",5,"west","cauc","highschool"
"711","yes",30,"no","female","no","yes","no",5,"west","cauc","ged"
"712","yes",29,"no","female","yes","yes","no",2,"midwest","cauc","bachelor"
"713","yes",49,"no","female","yes","no","no",3,"west","cauc","highschool"
"714","yes",61,"no","female","yes","yes","no",2,"south","cauc","highschool"
"715","yes",22,"no","female","no","no","no",4,"west","cauc","none"
"716","yes",29,"no","male","no","no","no",1,"south","cauc","bachelor"
"717","yes",19,"no","male","no","no","no",2,"south","cauc","none"
"718","yes",48,"no","male","yes","yes","no",4,"south","cauc","highschool"
"719","yes",52,"yes","male","yes","yes","no",3,"northeast","cauc","bachelor"
"720","yes",52,"no","female","yes","yes","no",3,"northeast","cauc","highschool"
"721","no",41,"yes","male","no","no","yes",4,"south","cauc","none"
"722","yes",36,"no","female","no","no","no",3,"west","cauc","highschool"
"723","yes",25,"no","male","no","no","no",1,"west","cauc","none"
"724","yes",29,"no","male","no","no","no",3,"west","cauc","highschool"
"725","yes",29,"no","female","yes","no","no",1,"south","cauc","other"
"726","yes",33,"yes","female","yes","no","no",2,"south","cauc","master"
"727","yes",49,"no","female","yes","no","no",1,"south","cauc","ged"
"728","yes",49,"no","male","yes","no","no",2,"northeast","cauc","highschool"
"729","yes",25,"no","male","no","no","no",2,"northeast","cauc","highschool"
"730","yes",37,"no","female","no","no","no",2,"south","cauc","highschool"
"731","yes",58,"no","male","yes","yes","yes",2,"west","cauc","highschool"
"732","yes",58,"no","female","yes","yes","no",2,"west","cauc","highschool"
"733","yes",47,"no","female","yes","no","no",1,"west","cauc","master"
"734","yes",24,"no","male","yes","yes","no",2,"midwest","cauc","highschool"
"735","yes",20,"no","female","yes","yes","no",2,"midwest","cauc","highschool"
"736","yes",27,"no","male","no","yes","no",4,"south","afam","highschool"
"737","yes",27,"no","female","no","yes","no",4,"south","afam","highschool"
"738","yes",32,"no","female","no","no","no",3,"south","cauc","none"
"739","yes",29,"no","male","yes","no","no",1,"midwest","cauc","bachelor"
"740","yes",49,"no","male","yes","yes","no",4,"midwest","cauc","master"
"741","yes",49,"no","female","yes","yes","no",4,"midwest","cauc","master"
"742","yes",51,"no","male","yes","yes","no",2,"south","cauc","highschool"
"743","yes",26,"no","female","yes","yes","no",3,"midwest","cauc","bachelor"
"744","yes",26,"no","male","yes","yes","no",3,"midwest","cauc","highschool"
"745","yes",32,"no","male","no","no","no",1,"south","cauc","none"
"746","yes",24,"no","male","yes","no","no",3,"northeast","cauc","bachelor"
"747","yes",50,"no","male","yes","yes","no",3,"south","cauc","bachelor"
"748","yes",50,"yes","female","yes","yes","no",3,"south","cauc","master"
"749","no",38,"no","male","yes","no","no",1,"midwest","cauc","other"
"750","yes",34,"no","male","no","yes","yes",2,"west","cauc","highschool"
"751","yes",37,"no","female","no","yes","no",2,"west","cauc","bachelor"
"752","yes",44,"no","female","yes","no","no",4,"west","cauc","highschool"
"753","yes",22,"no","male","yes","no","no",4,"west","cauc","highschool"
"754","yes",61,"no","female","yes","yes","no",2,"south","cauc","highschool"
"755","yes",43,"no","male","yes","yes","yes",4,"south","cauc","bachelor"
"756","yes",35,"no","female","yes","yes","no",4,"south","cauc","bachelor"
"757","yes",26,"yes","male","no","no","no",1,"west","cauc","highschool"
"758","yes",24,"no","male","yes","yes","no",2,"west","cauc","highschool"
"759","yes",25,"no","male","yes","yes","no",3,"south","cauc","highschool"
"760","no",58,"no","male","no","yes","yes",2,"south","cauc","master"
"761","yes",57,"no","female","no","yes","yes",2,"south","cauc","bachelor"
"762","yes",46,"no","male","yes","yes","no",2,"south","cauc","other"
"763","yes",32,"no","male","yes","no","no",2,"midwest","cauc","highschool"
"764","yes",36,"no","female","yes","no","no",2,"midwest","cauc","other"
"765","yes",50,"no","female","yes","no","no",1,"south","cauc","ged"
"766","yes",55,"no","female","yes","yes","no",4,"midwest","cauc","highschool"
"767","yes",26,"no","female","yes","no","no",4,"midwest","cauc","highschool"
"768","yes",24,"no","female","yes","no","no",4,"midwest","cauc","highschool"
"769","yes",31,"no","male","yes","yes","no",4,"south","cauc","highschool"
"770","yes",32,"no","female","yes","yes","no",4,"south","cauc","other"
"771","yes",33,"no","male","yes","no","no",1,"northeast","cauc","master"
"772","yes",34,"no","male","yes","no","no",1,"midwest","cauc","highschool"
"773","yes",39,"no","male","yes","yes","no",5,"south","cauc","highschool"
"774","yes",54,"no","female","yes","yes","no",2,"south","cauc","highschool"
"775","yes",40,"no","female","yes","no","no",1,"northeast","cauc","master"
"776","yes",41,"no","female","yes","yes","no",3,"midwest","cauc","highschool"
"777","yes",20,"no","female","yes","no","no",1,"midwest","cauc","highschool"
"778","yes",31,"no","male","yes","no","no",1,"south","afam","highschool"
"779","yes",33,"no","male","yes","no","no",1,"south","afam","bachelor"
"780","yes",30,"no","male","yes","yes","no",4,"west","cauc","highschool"
"781","yes",28,"no","female","no","yes","no",4,"west","cauc","highschool"
"782","yes",49,"no","male","yes","yes","no",2,"northeast","cauc","bachelor"
"783","yes",48,"no","female","yes","yes","no",2,"northeast","cauc","master"
"784","yes",35,"no","male","yes","yes","yes",4,"midwest","cauc","phd"
"785","yes",48,"no","male","yes","yes","no",4,"midwest","cauc","highschool"
"786","yes",21,"no","male","yes","no","no",4,"midwest","cauc","highschool"
"787","yes",19,"no","male","yes","no","no",4,"midwest","cauc","highschool"
"788","no",44,"no","female","no","yes","no",3,"south","cauc","none"
"789","yes",21,"no","female","no","yes","no",2,"south","cauc","highschool"
"790","yes",37,"no","male","yes","yes","no",4,"south","cauc","other"
"791","yes",32,"no","female","yes","yes","no",4,"south","cauc","bachelor"
"792","yes",25,"no","female","no","yes","no",2,"west","cauc","none"
"793","yes",26,"no","male","no","yes","no",2,"west","cauc","none"
"794","yes",33,"no","male","yes","no","no",1,"midwest","cauc","highschool"
"795","yes",34,"no","female","yes","no","no",1,"midwest","cauc","bachelor"
"796","yes",47,"no","male","yes","yes","no",5,"northeast","afam","highschool"
"797","yes",47,"no","female","yes","yes","no",5,"northeast","afam","highschool"
"798","yes",25,"no","male","yes","no","no",5,"northeast","afam","highschool"
"799","no",62,"no","male","yes","yes","no",4,"northeast","afam","highschool"
"800","yes",56,"no","female","yes","yes","no",4,"northeast","afam","highschool"
"801","yes",35,"no","male","yes","no","no",1,"northeast","cauc","highschool"
"802","yes",50,"no","male","no","yes","no",5,"south","cauc","none"
"803","yes",40,"no","male","yes","yes","no",3,"midwest","cauc","master"
"804","yes",41,"no","female","yes","yes","no",3,"midwest","cauc","bachelor"
"805","yes",34,"no","female","yes","yes","no",4,"west","cauc","bachelor"
"806","yes",45,"no","male","yes","yes","no",4,"west","cauc","ged"
"807","yes",35,"no","female","yes","yes","no",3,"west","cauc","bachelor"
"808","yes",41,"no","male","yes","yes","no",4,"midwest","cauc","master"
"809","yes",35,"no","female","yes","yes","no",4,"midwest","cauc","phd"
"810","yes",46,"no","female","yes","no","no",3,"west","cauc","master"
"811","yes",56,"no","male","yes","yes","yes",10,"west","cauc","highschool"
"812","yes",54,"no","female","yes","yes","no",10,"west","cauc","highschool"
"813","yes",39,"no","female","no","no","no",1,"northeast","cauc","highschool"
"814","yes",55,"no","female","yes","yes","no",2,"south","cauc","highschool"
"815","yes",57,"yes","male","yes","yes","no",2,"south","cauc","master"
"816","yes",31,"no","male","no","no","yes",2,"west","cauc","highschool"
"817","yes",29,"no","female","yes","no","no",3,"northeast","afam","highschool"
"818","no",37,"yes","male","yes","no","no",1,"northeast","cauc","highschool"
"819","yes",61,"no","female","no","no","no",1,"west","cauc","highschool"
"820","yes",27,"no","male","no","yes","yes",4,"northeast","cauc","highschool"
"821","yes",59,"yes","female","yes","yes","no",2,"northeast","cauc","highschool"
"822","yes",40,"no","male","yes","yes","yes",4,"midwest","cauc","highschool"
"823","yes",39,"no","male","yes","yes","no",4,"midwest","cauc","other"
"824","yes",36,"no","male","no","yes","no",4,"south","cauc","highschool"
"825","yes",43,"no","female","no","yes","yes",4,"south","cauc","highschool"
"826","yes",43,"no","male","yes","no","no",1,"midwest","cauc","highschool"
"827","yes",54,"no","male","yes","yes","no",2,"northeast","cauc","master"
"828","yes",26,"no","male","yes","no","no",1,"northeast","cauc","bachelor"
"829","yes",57,"no","female","yes","yes","no",2,"midwest","cauc","highschool"
"830","yes",31,"no","female","yes","no","no",2,"northeast","afam","highschool"
"831","yes",52,"no","female","yes","no","no",2,"northeast","afam","none"
"832","yes",31,"no","female","yes","yes","no",2,"south","cauc","bachelor"
"833","yes",32,"no","male","yes","yes","no",2,"south","cauc","master"
"834","yes",52,"no","male","yes","yes","no",3,"northeast","cauc","master"
"835","yes",53,"yes","female","yes","yes","no",3,"northeast","cauc","phd"
"836","yes",48,"no","female","yes","no","no",3,"northeast","cauc","bachelor"
"837","yes",46,"no","male","no","no","yes",3,"midwest","cauc","highschool"
"838","yes",27,"no","female","yes","yes","no",2,"south","cauc","bachelor"
"839","yes",27,"no","male","yes","yes","no",2,"south","cauc","master"
"840","yes",41,"no","female","yes","no","no",4,"south","afam","other"
"841","yes",44,"no","male","yes","yes","yes",5,"west","cauc","highschool"
"842","yes",23,"no","male","yes","no","no",3,"south","cauc","none"
"843","yes",31,"no","male","yes","no","no",1,"northeast","cauc","phd"
"844","yes",29,"no","male","yes","yes","no",5,"northeast","cauc","highschool"
"845","yes",49,"no","male","yes","no","no",2,"south","cauc","bachelor"
"846","yes",35,"no","female","yes","yes","no",5,"midwest","cauc","highschool"
"847","yes",36,"no","male","yes","yes","no",5,"midwest","cauc","highschool"
"848","yes",59,"no","female","yes","yes","no",2,"west","cauc","highschool"
"849","yes",28,"no","male","no","yes","no",5,"west","cauc","none"
"850","yes",60,"no","male","yes","yes","no",3,"south","cauc","bachelor"
"851","yes",57,"no","female","yes","yes","no",3,"south","cauc","highschool"
"852","yes",24,"no","female","yes","no","no",3,"south","cauc","bachelor"
"853","yes",31,"no","female","yes","yes","yes",2,"south","cauc","master"
"854","yes",31,"no","male","yes","no","no",2,"west","afam","highschool"
"855","yes",22,"yes","female","yes","no","no",2,"west","cauc","highschool"
"856","yes",53,"no","female","no","yes","no",2,"south","cauc","none"
"857","yes",58,"no","male","yes","no","no",1,"midwest","cauc","other"
"858","yes",30,"no","male","no","yes","yes",2,"west","cauc","bachelor"
"859","yes",35,"no","female","yes","yes","no",2,"west","cauc","highschool"
"860","yes",46,"yes","male","yes","no","no",5,"south","afam","ged"
"861","yes",39,"no","female","yes","no","no",1,"midwest","cauc","bachelor"
"862","yes",55,"no","male","yes","yes","yes",4,"west","other","none"
"863","yes",44,"no","female","yes","yes","yes",4,"west","other","none"
"864","no",60,"yes","female","yes","no","yes",1,"west","afam","highschool"
"865","no",37,"yes","female","yes","no","no",4,"midwest","afam","highschool"
"866","yes",42,"no","female","no","no","no",2,"south","other","highschool"
"867","yes",48,"no","male","yes","yes","yes",1,"northeast","cauc","highschool"
"868","yes",46,"no","female","yes","yes","no",2,"northeast","cauc","highschool"
"869","yes",19,"no","male","no","no","no",3,"northeast","cauc","none"
"870","yes",20,"no","male","yes","no","no",2,"northeast","cauc","highschool"
"871","yes",39,"yes","male","yes","yes","no",2,"midwest","cauc","highschool"
"872","yes",40,"yes","male","no","yes","no",6,"south","cauc","none"
"873","yes",45,"no","female","yes","no","no",1,"west","afam","highschool"
"874","yes",25,"no","male","no","no","no",1,"south","cauc","highschool"
"875","yes",24,"yes","female","no","yes","no",4,"midwest","cauc","highschool"
"876","yes",28,"no","male","no","yes","no",4,"midwest","cauc","none"
"877","yes",36,"no","female","yes","yes","no",4,"south","cauc","highschool"
"878","yes",62,"no","male","yes","no","no",1,"west","cauc","bachelor"
"879","yes",53,"yes","female","yes","yes","no",2,"west","cauc","other"
"880","yes",49,"no","female","yes","yes","yes",2,"northeast","afam","highschool"
"881","yes",55,"no","male","yes","yes","no",2,"northeast","afam","none"
"882","yes",24,"no","female","yes","no","no",2,"northeast","afam","highschool"
"883","yes",33,"yes","male","yes","yes","no",3,"midwest","cauc","highschool"
"884","yes",29,"no","female","yes","yes","no",3,"midwest","cauc","other"
"885","yes",22,"no","male","no","no","no",7,"west","cauc","none"
"886","no",28,"no","male","yes","yes","no",7,"west","cauc","none"
"887","yes",21,"no","female","no","no","no",7,"west","cauc","highschool"
"888","yes",21,"no","male","no","no","no",7,"west","cauc","none"
"889","yes",37,"no","male","yes","yes","no",4,"south","cauc","bachelor"
"890","yes",51,"no","female","no","no","yes",1,"west","cauc","highschool"
"891","yes",49,"no","male","yes","yes","no",6,"south","cauc","highschool"
"892","yes",19,"no","male","yes","no","no",6,"south","cauc","highschool"
"893","yes",43,"no","female","yes","no","no",1,"south","cauc","master"
"894","yes",19,"no","male","no","no","no",2,"west","other","none"
"895","no",44,"no","male","yes","yes","no",4,"south","other","none"
"896","yes",50,"yes","female","yes","yes","no",4,"south","cauc","highschool"
"897","yes",20,"no","male","yes","no","no",4,"west","cauc","highschool"
"898","yes",53,"no","male","no","no","no",3,"south","cauc","highschool"
"899","yes",52,"no","male","yes","yes","no",4,"midwest","afam","other"
"900","yes",40,"no","female","yes","yes","yes",4,"midwest","afam","other"
"901","yes",55,"no","male","yes","yes","no",2,"northeast","cauc","none"
"902","yes",51,"no","female","yes","yes","no",2,"northeast","cauc","highschool"
"903","yes",58,"no","female","yes","yes","yes",2,"west","cauc","bachelor"
"904","yes",52,"no","male","yes","yes","yes",2,"west","cauc","bachelor"
"905","yes",41,"yes","male","yes","no","no",2,"south","cauc","highschool"
"906","yes",21,"no","female","no","no","no",3,"midwest","cauc","highschool"
"907","yes",31,"no","female","yes","yes","no",6,"west","other","none"
"908","yes",34,"no","male","no","yes","no",6,"west","other","none"
"909","yes",43,"no","male","no","yes","no",4,"midwest","cauc","highschool"
"910","yes",49,"yes","female","yes","yes","no",4,"midwest","other","highschool"
"911","yes",30,"no","male","yes","yes","no",3,"northeast","cauc","highschool"
"912","no",57,"yes","female","no","yes","no",3,"northeast","afam","other"
"913","yes",61,"no","male","no","yes","no",3,"northeast","afam","highschool"
"914","yes",35,"no","male","yes","no","no",3,"northeast","afam","bachelor"
"915","yes",57,"yes","male","yes","yes","yes",2,"northeast","cauc","highschool"
"916","yes",25,"no","male","no","yes","no",4,"west","cauc","highschool"
"917","yes",25,"no","female","no","yes","no",4,"west","cauc","highschool"
"918","yes",57,"yes","male","yes","yes","yes",2,"south","cauc","ged"
"919","yes",50,"yes","female","yes","yes","no",2,"south","cauc","highschool"
"920","yes",54,"no","male","yes","yes","no",2,"midwest","cauc","highschool"
"921","yes",52,"no","female","yes","yes","no",2,"midwest","cauc","highschool"
"922","yes",41,"no","female","no","no","no",1,"midwest","cauc","highschool"
"923","yes",40,"no","male","no","yes","no",5,"south","cauc","ged"
"924","yes",27,"no","male","yes","yes","no",4,"midwest","cauc","highschool"
"925","yes",26,"no","female","yes","yes","no",4,"midwest","cauc","highschool"
"926","yes",40,"no","male","yes","yes","no",4,"northeast","cauc","master"
"927","yes",41,"no","female","yes","yes","no",4,"northeast","cauc","highschool"
"928","yes",25,"no","male","yes","no","no",1,"midwest","afam","bachelor"
"929","yes",44,"no","male","yes","yes","no",4,"midwest","cauc","master"
"930","yes",44,"yes","female","yes","yes","no",4,"midwest","cauc","highschool"
"931","yes",20,"no","female","yes","no","no",4,"midwest","cauc","highschool"
"932","yes",48,"yes","male","yes","yes","no",7,"south","cauc","highschool"
"933","yes",19,"no","female","no","yes","no",7,"south","cauc","none"
"934","yes",32,"no","male","no","no","no",7,"south","cauc","none"
"935","yes",21,"yes","male","no","yes","no",7,"south","cauc","highschool"
"936","yes",62,"no","male","yes","yes","no",2,"west","cauc","highschool"
"937","yes",60,"no","female","yes","yes","yes",2,"west","cauc","highschool"
"938","yes",53,"no","female","yes","no","no",2,"northeast","cauc","other"
"939","yes",24,"no","male","no","no","no",2,"northeast","cauc","other"
"940","yes",47,"yes","female","yes","no","no",1,"midwest","afam","highschool"
"941","yes",46,"no","female","yes","no","no",1,"midwest","cauc","bachelor"
"942","yes",30,"no","female","no","no","no",1,"midwest","cauc","highschool"
"943","yes",51,"no","male","yes","yes","no",3,"south","cauc","bachelor"
"944","yes",49,"no","female","yes","yes","no",3,"south","cauc","other"
"945","yes",22,"no","male","yes","no","no",3,"south","cauc","highschool"
"946","no",27,"no","male","no","yes","no",4,"south","cauc","ged"
"947","yes",30,"no","male","no","yes","no",3,"south","cauc","other"
"948","yes",34,"no","female","yes","yes","no",3,"south","cauc","other"
"949","yes",38,"no","female","yes","no","no",1,"south","cauc","other"
"950","yes",44,"no","male","yes","yes","no",3,"midwest","cauc","highschool"
"951","yes",41,"no","female","yes","yes","no",3,"midwest","afam","highschool"
"952","yes",35,"no","female","yes","no","no",2,"south","afam","highschool"
"953","yes",48,"no","male","yes","yes","no",4,"south","cauc","highschool"
"954","yes",36,"yes","female","yes","yes","no",4,"south","cauc","ged"
"955","yes",45,"yes","male","yes","no","no",3,"south","cauc","bachelor"
"956","yes",43,"no","female","yes","no","no",3,"south","cauc","highschool"
"957","yes",19,"no","male","yes","no","no",3,"south","cauc","highschool"
"958","yes",47,"yes","male","yes","yes","no",3,"midwest","cauc","highschool"
"959","yes",47,"no","female","yes","yes","no",3,"midwest","cauc","highschool"
"960","yes",25,"no","male","yes","no","no",3,"midwest","cauc","highschool"
"961","yes",35,"no","male","yes","yes","no",2,"west","cauc","bachelor"
"962","yes",39,"no","female","yes","yes","no",2,"west","cauc","bachelor"
"963","yes",48,"no","female","yes","no","no",1,"midwest","cauc","highschool"
"964","yes",54,"no","male","yes","yes","no",2,"midwest","cauc","highschool"
"965","yes",50,"no","female","yes","yes","no",2,"midwest","cauc","highschool"
"966","yes",29,"no","female","yes","yes","no",2,"midwest","cauc","highschool"
"967","yes",34,"no","male","yes","no","no",4,"midwest","cauc","bachelor"
"968","yes",26,"no","male","yes","no","no",1,"midwest","cauc","other"
"969","yes",22,"no","female","no","no","no",4,"midwest","cauc","other"
"970","yes",41,"no","male","yes","yes","no",5,"northeast","cauc","highschool"
"971","yes",37,"no","female","yes","yes","no",5,"northeast","cauc","master"
"972","yes",62,"no","male","yes","yes","no",3,"midwest","cauc","highschool"
"973","yes",25,"yes","female","yes","no","no",3,"midwest","cauc","other"
"974","yes",49,"yes","male","yes","yes","no",2,"west","cauc","highschool"
"975","yes",47,"no","female","yes","yes","no",2,"west","cauc","highschool"
"976","no",28,"no","female","yes","no","no",2,"west","cauc","bachelor"
"977","yes",27,"no","female","yes","no","no",1,"south","cauc","other"
"978","yes",29,"no","male","yes","no","no",5,"northeast","cauc","highschool"
"979","yes",57,"yes","female","yes","no","no",1,"west","cauc","highschool"
"980","yes",25,"no","female","yes","no","no",1,"south","afam","bachelor"
"981","yes",27,"no","female","yes","yes","no",2,"south","cauc","other"
"982","yes",49,"no","male","yes","yes","no",2,"northeast","cauc","master"
"983","yes",31,"no","female","yes","no","no",1,"west","cauc","bachelor"
"984","yes",33,"no","female","yes","no","no",1,"northeast","afam","master"
"985","yes",42,"no","female","no","yes","yes",2,"south","cauc","master"
"986","yes",50,"no","female","no","no","no",2,"south","cauc","none"
"987","yes",22,"no","male","no","yes","no",4,"south","afam","none"
"988","yes",22,"no","female","yes","yes","no",4,"south","afam","highschool"
"989","yes",55,"no","female","no","yes","no",3,"south","afam","none"
"990","yes",33,"no","female","yes","yes","no",2,"midwest","cauc","master"
"991","yes",27,"no","male","yes","yes","no",2,"midwest","cauc","bachelor"
"992","yes",25,"no","female","no","no","no",3,"south","cauc","highschool"
"993","yes",25,"no","male","no","yes","no",5,"south","cauc","none"
"994","yes",48,"yes","male","no","yes","no",2,"midwest","cauc","highschool"
"995","yes",44,"yes","female","no","yes","no",2,"midwest","cauc","other"
"996","yes",31,"no","female","yes","no","no",6,"south","afam","highschool"
"997","yes",19,"no","female","yes","no","no",6,"south","afam","highschool"
"998","yes",34,"no","male","yes","no","no",2,"south","cauc","highschool"
"999","yes",38,"no","female","no","no","no",3,"northeast","afam","highschool"