forked from burakbayramli/books
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCollegeDistance.csv
We can't make this file beautiful and searchable because it's too large.
4740 lines (4740 loc) · 633 KB
/
CollegeDistance.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
"","gender","ethnicity","score","fcollege","mcollege","home","urban","unemp","wage","distance","tuition","education","income","region"
"1","male","other",39.1500015258789,"yes","no","yes","yes",6.19999980926514,8.09000015258789,0.200000002980232,0.889150023460388,12,"high","other"
"2","female","other",48.8699989318848,"no","no","yes","yes",6.19999980926514,8.09000015258789,0.200000002980232,0.889150023460388,12,"low","other"
"3","male","other",48.7400016784668,"no","no","yes","yes",6.19999980926514,8.09000015258789,0.200000002980232,0.889150023460388,12,"low","other"
"4","male","afam",40.4000015258789,"no","no","yes","yes",6.19999980926514,8.09000015258789,0.200000002980232,0.889150023460388,12,"low","other"
"5","female","other",40.4799995422363,"no","no","no","yes",5.59999990463257,8.09000015258789,0.400000005960464,0.889150023460388,13,"low","other"
"6","male","other",54.7099990844727,"no","no","yes","yes",5.59999990463257,8.09000015258789,0.400000005960464,0.889150023460388,12,"low","other"
"7","female","other",56.0699996948242,"no","no","yes","no",7.19999980926514,8.85000038146973,0.400000005960464,0.84987998008728,13,"low","other"
"8","female","other",54.8499984741211,"no","no","yes","no",7.19999980926514,8.85000038146973,0.400000005960464,0.84987998008728,15,"low","other"
"9","male","other",64.7399978637695,"yes","no","yes","yes",5.90000009536743,8.09000015258789,3,0.889150023460388,13,"low","other"
"10","female","other",56.060001373291,"no","no","yes","yes",5.90000009536743,8.09000015258789,3,0.889150023460388,15,"low","other"
"11","female","other",42.2200012207031,"no","no","yes","yes",5.90000009536743,8.09000015258789,3,0.889150023460388,12,"high","other"
"12","female","afam",61.1800003051758,"no","yes","yes","yes",5.90000009536743,8.09000015258789,3,0.889150023460388,14,"high","other"
"13","male","other",59.8499984741211,"no","no","yes","no",7.19999980926514,8.85000038146973,0.100000001490116,0.84987998008728,15,"low","other"
"14","female","other",58.7700004577637,"yes","no","yes","no",7.19999980926514,8.85000038146973,0.100000001490116,0.84987998008728,17,"high","other"
"15","female","afam",53.7200012207031,"yes","yes","yes","no",7.19999980926514,8.85000038146973,0.100000001490116,0.84987998008728,14,"low","other"
"16","male","other",61.5200004577637,"no","no","yes","no",7.19999980926514,8.85000038146973,0.100000001490116,0.84987998008728,15,"low","other"
"17","female","other",52.5299987792969,"no","no","yes","no",7.19999980926514,8.85000038146973,0.100000001490116,0.84987998008728,12,"high","other"
"18","female","other",45.0099983215332,"no","no","yes","no",7.19999980926514,8.85000038146973,0.100000001490116,0.84987998008728,12,"low","other"
"19","female","other",57.7099990844727,"no","no","yes","no",7.19999980926514,8.85000038146973,0.100000001490116,0.84987998008728,16,"low","other"
"20","female","other",59.3600006103516,"yes","yes","yes","no",7.19999980926514,8.85000038146973,0.100000001490116,0.84987998008728,16,"high","other"
"21","female","other",50.9300003051758,"no","no","yes","no",7.69999980926514,7.03999996185303,0.5,0.902999997138977,13,"low","other"
"22","male","other",59.560001373291,"yes","no","yes","no",7.69999980926514,7.03999996185303,0.5,0.902999997138977,14,"high","other"
"23","male","other",58.4599990844727,"yes","yes","yes","no",7.69999980926514,7.03999996185303,0.5,0.902999997138977,13,"low","other"
"24","female","other",55.7000007629395,"no","no","no","no",7.69999980926514,7.03999996185303,0.5,0.902999997138977,16,"low","other"
"25","male","other",60.810001373291,"no","no","yes","no",7.69999980926514,7.03999996185303,0.5,0.902999997138977,15,"low","other"
"26","female","afam",40.5999984741211,"no","no","yes","no",5.40000009536743,8.85000038146973,0.899999976158142,0.84987998008728,12,"low","other"
"27","female","other",49.9900016784668,"no","no","yes","no",5.40000009536743,8.85000038146973,0.899999976158142,0.84987998008728,12,"low","other"
"28","male","other",59.689998626709,"no","no","yes","yes",5.09999990463257,8.85000038146973,0.5,0.84987998008728,15,"low","other"
"29","male","other",60.3300018310547,"no","no","yes","yes",5.09999990463257,8.85000038146973,0.5,0.84987998008728,16,"low","other"
"30","female","other",60.1399993896484,"yes","no","yes","yes",5.09999990463257,8.85000038146973,0.5,0.84987998008728,12,"high","other"
"31","female","other",68.5800018310547,"yes","yes","yes","yes",5.09999990463257,8.85000038146973,0.5,0.84987998008728,16,"high","other"
"32","female","other",42.6100006103516,"no","no","yes","yes",5.09999990463257,8.85000038146973,0.5,0.84987998008728,12,"low","other"
"33","male","other",58.6599998474121,"yes","no","yes","yes",5.09999990463257,8.85000038146973,0.5,0.84987998008728,16,"high","other"
"34","male","other",58.1399993896484,"no","no","yes","yes",5.09999990463257,8.85000038146973,0.5,0.84987998008728,14,"low","other"
"35","female","other",58.9500007629395,"no","no","yes","yes",5.09999990463257,8.85000038146973,0.5,0.84987998008728,16,"low","other"
"36","male","other",49.3699989318848,"no","no","yes","yes",5.40000009536743,8.85000038146973,0.200000002980232,0.84987998008728,17,"low","other"
"37","female","other",47.25,"no","yes","no","yes",5.40000009536743,8.85000038146973,0.200000002980232,0.84987998008728,16,"low","other"
"38","male","other",61.0299987792969,"yes","no","no","no",6.19999980926514,8.09000015258789,0.600000023841858,0.889150023460388,14,"high","other"
"39","male","other",54.3499984741211,"no","no","no","no",6.19999980926514,8.09000015258789,0.600000023841858,0.889150023460388,15,"high","other"
"40","female","other",68.120002746582,"yes","yes","yes","no",6.19999980926514,8.09000015258789,0.600000023841858,0.889150023460388,15,"high","other"
"41","male","other",70.0999984741211,"yes","no","yes","no",6.19999980926514,8.09000015258789,0.600000023841858,0.889150023460388,17,"high","other"
"42","female","other",58.6100006103516,"no","no","no","no",6.19999980926514,8.09000015258789,0.600000023841858,0.889150023460388,15,"low","other"
"43","female","other",48.5699996948242,"no","no","yes","no",6.19999980926514,8.09000015258789,0.600000023841858,0.889150023460388,12,"low","other"
"44","female","other",51.1100006103516,"no","no","yes","no",6.19999980926514,8.09000015258789,0.600000023841858,0.889150023460388,12,"low","other"
"45","female","other",39.4099998474121,"no","no","yes","no",6.19999980926514,8.09000015258789,0.600000023841858,0.889150023460388,15,"low","other"
"46","female","other",54.9799995422363,"yes","no","yes","no",7.19999980926514,7.03999996185303,0.100000001490116,0.902999997138977,16,"high","other"
"47","female","afam",41.5900001525879,"yes","yes","no","no",7.19999980926514,7.03999996185303,0.100000001490116,0.902999997138977,12,"low","other"
"48","female","other",55.3199996948242,"no","no","yes","no",7.19999980926514,7.03999996185303,0.100000001490116,0.902999997138977,13,"low","other"
"49","male","hispanic",42.2299995422363,"no","no","yes","no",7.19999980926514,7.03999996185303,0.100000001490116,0.902999997138977,12,"low","other"
"50","female","other",62,"no","no","yes","no",7.19999980926514,7.03999996185303,0.100000001490116,0.902999997138977,16,"low","other"
"51","male","hispanic",49.6500015258789,"no","no","no","no",7.19999980926514,7.03999996185303,0.100000001490116,0.902999997138977,15,"low","other"
"52","female","other",44.9599990844727,"no","no","yes","no",7.19999980926514,7.03999996185303,0.100000001490116,0.902999997138977,12,"low","other"
"53","female","other",37.310001373291,"no","no","yes","no",7.19999980926514,7.03999996185303,0.100000001490116,0.902999997138977,12,"low","other"
"54","male","other",39.8699989318848,"no","no","yes","no",7.19999980926514,7.03999996185303,0.100000001490116,0.902999997138977,12,"low","other"
"55","female","other",56.439998626709,"no","no","yes","no",5.40000009536743,8.85000038146973,0.100000001490116,0.84987998008728,16,"low","other"
"56","male","afam",42.6500015258789,"no","no","yes","no",5.40000009536743,8.85000038146973,0.100000001490116,0.84987998008728,12,"low","other"
"57","female","other",60.0499992370605,"yes","yes","yes","no",5.40000009536743,8.85000038146973,0.100000001490116,0.84987998008728,15,"high","other"
"58","female","other",38.3199996948242,"no","no","no","no",5.40000009536743,8.85000038146973,0.100000001490116,0.84987998008728,12,"low","other"
"59","female","other",65.870002746582,"yes","no","yes","no",5.40000009536743,8.85000038146973,0.100000001490116,0.84987998008728,15,"high","other"
"60","male","other",44.6500015258789,"no","no","yes","no",5.40000009536743,8.85000038146973,0.100000001490116,0.84987998008728,13,"low","other"
"61","male","other",57.7400016784668,"no","no","yes","no",5.5,8.09000015258789,1.5,0.889150023460388,16,"high","other"
"62","male","other",60.3800010681152,"yes","no","yes","no",5.5,8.09000015258789,1.5,0.889150023460388,12,"high","other"
"63","male","other",62.7700004577637,"no","no","no","no",5.5,8.09000015258789,1.5,0.889150023460388,12,"high","other"
"64","male","other",59.7299995422363,"no","no","yes","no",5.5,8.09000015258789,1.5,0.889150023460388,16,"low","other"
"65","female","other",57.060001373291,"yes","no","yes","no",5.5,8.09000015258789,1.5,0.889150023460388,16,"high","other"
"66","female","other",58.0200004577637,"no","no","yes","no",5.5,8.09000015258789,1.5,0.889150023460388,15,"low","other"
"67","female","other",54.7400016784668,"no","no","yes","no",5.5,8.09000015258789,1.5,0.889150023460388,12,"low","other"
"68","female","other",46.2799987792969,"no","no","yes","no",6.90000009536743,7.03999996185303,2,0.902999997138977,14,"low","other"
"69","female","other",60.4000015258789,"no","no","yes","no",6.90000009536743,7.03999996185303,2,0.902999997138977,12,"low","other"
"70","male","other",53.2099990844727,"no","no","yes","no",6.90000009536743,7.03999996185303,2,0.902999997138977,18,"high","other"
"71","female","other",60.9300003051758,"no","no","yes","no",6.5,8.09000015258789,1.5,0.889150023460388,14,"low","other"
"72","female","other",48.439998626709,"no","no","yes","no",6.5,8.09000015258789,1.5,0.889150023460388,15,"low","other"
"73","female","other",45.310001373291,"no","no","yes","no",7.69999980926514,7.03999996185303,2,0.902999997138977,12,"low","other"
"74","male","other",60.2200012207031,"yes","no","yes","no",7.69999980926514,7.03999996185303,2,0.902999997138977,12,"high","other"
"75","male","other",56.4199981689453,"no","no","yes","no",7.69999980926514,7.03999996185303,2,0.902999997138977,16,"low","other"
"76","female","other",62.2700004577637,"no","yes","yes","no",7.69999980926514,7.03999996185303,2,0.902999997138977,17,"high","other"
"77","male","other",51.8400001525879,"yes","yes","no","no",4.40000009536743,8.09000015258789,0.5,0.889150023460388,18,"high","other"
"78","female","other",57.5499992370605,"no","no","yes","no",4.40000009536743,8.09000015258789,0.5,0.889150023460388,16,"high","other"
"79","female","other",57.6199989318848,"yes","no","yes","no",4.40000009536743,8.09000015258789,0.5,0.889150023460388,12,"high","other"
"80","male","other",57.5,"no","yes","yes","no",4.40000009536743,8.09000015258789,0.5,0.889150023460388,12,"high","other"
"81","male","other",65.3099975585938,"yes","no","yes","no",7.5,8.09000015258789,0.5,0.889150023460388,16,"low","other"
"82","male","other",50.6199989318848,"yes","no","yes","no",7.5,8.09000015258789,0.5,0.889150023460388,14,"high","other"
"83","male","other",51.2299995422363,"no","no","yes","no",7.5,8.09000015258789,0.5,0.889150023460388,15,"low","other"
"84","female","other",53.5499992370605,"no","no","no","no",7.5,8.09000015258789,0.5,0.889150023460388,14,"low","other"
"85","female","other",48.5200004577637,"no","no","yes","no",7.5,8.09000015258789,0.5,0.889150023460388,12,"low","other"
"86","female","other",43.4099998474121,"no","no","yes","no",7.5,8.09000015258789,0.5,0.889150023460388,14,"low","other"
"87","female","other",57.5,"no","no","yes","no",7.5,8.09000015258789,0.5,0.889150023460388,14,"low","other"
"88","female","other",51.3199996948242,"no","no","yes","no",5.90000009536743,7.09000015258789,1.20000004768372,1.38568007946014,15,"low","other"
"89","female","other",36.3699989318848,"no","no","no","no",5.90000009536743,7.09000015258789,1.20000004768372,1.38568007946014,12,"low","other"
"90","female","other",43.7999992370605,"no","no","yes","no",5.90000009536743,7.09000015258789,1.20000004768372,1.38568007946014,12,"low","other"
"91","female","other",45.1399993896484,"no","no","yes","no",5.90000009536743,7.09000015258789,1.20000004768372,1.38568007946014,12,"high","other"
"92","female","other",63.2599983215332,"no","no","yes","no",5.90000009536743,7.09000015258789,1.20000004768372,1.38568007946014,16,"low","other"
"93","female","other",51.3199996948242,"yes","yes","yes","no",5.90000009536743,7.09000015258789,1.20000004768372,1.38568007946014,17,"low","other"
"94","male","other",44.2299995422363,"no","no","yes","no",5.90000009536743,7.09000015258789,1.20000004768372,1.38568007946014,12,"low","other"
"95","female","other",42.9300003051758,"no","no","yes","no",5.30000019073486,8.09000015258789,0.100000001490116,0.889150023460388,12,"high","other"
"96","female","other",47.5999984741211,"no","no","yes","no",5.30000019073486,8.09000015258789,0.100000001490116,0.889150023460388,12,"low","other"
"97","male","other",56.4700012207031,"yes","no","yes","no",5.30000019073486,8.09000015258789,0.100000001490116,0.889150023460388,13,"high","other"
"98","male","other",64.6900024414062,"no","no","yes","no",5.30000019073486,8.09000015258789,0.100000001490116,0.889150023460388,16,"low","other"
"99","female","other",62.3499984741211,"yes","yes","yes","no",5.30000019073486,8.09000015258789,0.100000001490116,0.889150023460388,16,"low","other"
"100","female","other",48.9599990844727,"no","no","yes","no",6.09999990463257,7.69000005722046,2.5,1.11201000213623,12,"low","other"
"101","female","other",40.2799987792969,"no","no","yes","no",6.09999990463257,7.69000005722046,2.5,1.11201000213623,12,"high","other"
"102","male","other",44.6599998474121,"no","no","yes","no",6.09999990463257,7.69000005722046,2.5,1.11201000213623,12,"low","other"
"103","male","other",65.4599990844727,"no","no","no","no",6.09999990463257,7.69000005722046,2.5,1.11201000213623,12,"low","other"
"104","female","other",37.810001373291,"no","no","yes","no",6.09999990463257,7.69000005722046,2.5,1.11201000213623,12,"low","other"
"105","male","other",66.9499969482422,"yes","yes","yes","no",6.09999990463257,7.69000005722046,2.5,1.11201000213623,16,"high","other"
"106","female","other",55.6399993896484,"no","no","yes","no",6.09999990463257,7.69000005722046,2.5,1.11201000213623,16,"high","other"
"107","female","other",51.2799987792969,"no","yes","yes","no",6.5,8.09000015258789,3.5,0.889150023460388,16,"low","other"
"108","female","other",52.7799987792969,"no","no","yes","no",6.5,8.09000015258789,3.5,0.889150023460388,14,"low","other"
"109","female","other",64.5999984741211,"no","no","yes","no",6.5,8.09000015258789,3.5,0.889150023460388,16,"low","other"
"110","female","other",61.7299995422363,"yes","no","yes","no",6.5,8.09000015258789,3.5,0.889150023460388,16,"low","other"
"111","male","afam",50.810001373291,"no","yes","yes","no",5.40000009536743,8.09000015258789,1.89999997615814,0.889150023460388,16,"low","other"
"112","male","other",44.4599990844727,"yes","yes","yes","no",5.40000009536743,8.09000015258789,1.89999997615814,0.889150023460388,12,"high","other"
"113","female","other",41.5800018310547,"no","no","yes","no",13.5,7.69000005722046,5,1.11201000213623,12,"low","other"
"114","female","other",40.7000007629395,"no","no","no","no",13.5,7.69000005722046,5,1.11201000213623,12,"low","other"
"115","female","other",39.6300010681152,"no","no","yes","no",13.5,7.69000005722046,5,1.11201000213623,12,"low","other"
"116","female","other",54.1699981689453,"no","no","yes","no",13.5,7.69000005722046,5,1.11201000213623,12,"low","other"
"117","male","hispanic",38.9500007629395,"no","no","yes","no",13.5,7.69000005722046,5,1.11201000213623,13,"high","other"
"118","female","other",62.8400001525879,"no","no","yes","no",13.5,7.69000005722046,5,1.11201000213623,15,"low","other"
"119","male","other",64.4800033569336,"no","no","no","no",8.69999980926514,8.85000038146973,1.5,0.84987998008728,16,"low","other"
"120","female","other",47.0900001525879,"no","no","yes","no",8.69999980926514,8.85000038146973,1.5,0.84987998008728,12,"high","other"
"121","female","other",50.9500007629395,"no","no","yes","no",8.69999980926514,8.85000038146973,1.5,0.84987998008728,12,"low","other"
"122","male","other",44.4599990844727,"no","no","yes","no",8.69999980926514,8.85000038146973,1.5,0.84987998008728,12,"high","other"
"123","female","other",58.8899993896484,"no","yes","no","no",8.69999980926514,8.85000038146973,1.5,0.84987998008728,12,"high","other"
"124","female","afam",54.3600006103516,"no","no","yes","no",8.69999980926514,8.85000038146973,1.5,0.84987998008728,16,"low","other"
"125","female","other",45.2900009155273,"no","no","yes","no",8.69999980926514,8.85000038146973,1.5,0.84987998008728,13,"low","other"
"126","female","other",54.1699981689453,"no","no","yes","no",6.5,8.09000015258789,0.800000011920929,0.889150023460388,15,"low","other"
"127","male","other",52.7400016784668,"yes","no","yes","no",6.5,8.09000015258789,0.800000011920929,0.889150023460388,12,"high","other"
"128","male","other",60.939998626709,"no","no","yes","no",6.5,8.09000015258789,0.800000011920929,0.889150023460388,12,"low","other"
"129","male","other",40.1800003051758,"no","no","yes","no",6.5,8.09000015258789,0.800000011920929,0.889150023460388,12,"high","other"
"130","female","other",58.0900001525879,"no","yes","yes","no",6.5,8.09000015258789,0.800000011920929,0.889150023460388,12,"low","other"
"131","male","other",54.2599983215332,"no","no","yes","no",6.5,8.09000015258789,0.800000011920929,0.889150023460388,14,"low","other"
"132","female","other",57.1300010681152,"yes","no","yes","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,16,"high","other"
"133","female","other",64.9800033569336,"no","no","yes","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,12,"low","other"
"134","male","other",65.3499984741211,"no","no","no","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,14,"low","other"
"135","female","other",55.9599990844727,"no","no","yes","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,12,"low","other"
"136","female","other",61.7299995422363,"no","no","yes","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,16,"high","other"
"137","male","other",56.3499984741211,"no","no","yes","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,12,"low","other"
"138","male","other",51.0999984741211,"no","no","yes","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,13,"high","other"
"139","female","other",39.5200004577637,"no","no","yes","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,12,"low","other"
"140","female","other",60.75,"yes","yes","yes","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,16,"low","other"
"141","male","other",38.189998626709,"no","no","yes","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,12,"low","other"
"142","female","other",51.0200004577637,"no","no","yes","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,16,"low","other"
"143","male","other",53.6500015258789,"no","no","yes","no",7.80000019073486,7.69000005722046,1.79999995231628,1.11201000213623,16,"low","other"
"144","male","other",56.3499984741211,"no","no","yes","no",5.40000009536743,8.85000038146973,0.800000011920929,0.84987998008728,15,"high","other"
"145","female","other",52.9500007629395,"no","no","yes","no",5.40000009536743,8.85000038146973,0.800000011920929,0.84987998008728,15,"high","other"
"146","male","other",63.4099998474121,"no","no","yes","no",5.40000009536743,8.85000038146973,0.800000011920929,0.84987998008728,13,"low","other"
"147","male","other",66.1699981689453,"yes","yes","yes","no",5.40000009536743,8.85000038146973,0.800000011920929,0.84987998008728,16,"high","other"
"148","male","other",45.0999984741211,"no","no","yes","no",5.40000009536743,8.85000038146973,0.800000011920929,0.84987998008728,13,"high","other"
"149","male","other",66.9499969482422,"yes","no","yes","no",5.40000009536743,8.85000038146973,0.800000011920929,0.84987998008728,16,"low","other"
"150","female","other",62.9000015258789,"yes","no","yes","no",5.40000009536743,8.85000038146973,0.800000011920929,0.84987998008728,18,"high","other"
"151","male","other",52.9799995422363,"yes","yes","yes","no",7.19999980926514,8.85000038146973,0.800000011920929,0.84987998008728,13,"high","other"
"152","female","other",62.2900009155273,"no","yes","yes","no",7.19999980926514,8.85000038146973,0.800000011920929,0.84987998008728,13,"low","other"
"153","male","other",44.310001373291,"no","yes","yes","no",7.19999980926514,8.85000038146973,0.800000011920929,0.84987998008728,12,"low","other"
"154","female","other",64.1100006103516,"yes","no","yes","no",4.40000009536743,8.09000015258789,1.5,0.889150023460388,16,"low","other"
"155","male","other",58.6199989318848,"no","no","yes","no",4.40000009536743,8.09000015258789,1.5,0.889150023460388,13,"high","other"
"156","female","other",56.9199981689453,"no","no","yes","no",4.40000009536743,8.09000015258789,1.5,0.889150023460388,12,"low","other"
"157","female","other",52.6699981689453,"no","no","yes","no",4.40000009536743,8.09000015258789,1.5,0.889150023460388,12,"low","other"
"158","male","other",64.8300018310547,"yes","yes","yes","no",4.40000009536743,8.09000015258789,1.5,0.889150023460388,15,"high","other"
"159","male","other",49.9000015258789,"no","no","yes","no",4.40000009536743,8.09000015258789,1.5,0.889150023460388,12,"low","other"
"160","female","other",62.5499992370605,"no","no","yes","no",4.40000009536743,8.09000015258789,1.5,0.889150023460388,17,"high","other"
"161","male","other",66.4899978637695,"no","no","yes","no",4.40000009536743,8.09000015258789,1.5,0.889150023460388,17,"high","other"
"162","male","other",62.1399993896484,"yes","yes","yes","no",4.40000009536743,8.09000015258789,1.5,0.889150023460388,17,"high","other"
"163","male","other",49.2000007629395,"no","no","yes","yes",6.5,8.09000015258789,0.200000002980232,0.889150023460388,13,"low","other"
"164","female","other",51.4700012207031,"no","no","yes","yes",6.5,8.09000015258789,0.200000002980232,0.889150023460388,14,"low","other"
"165","female","other",62.1500015258789,"no","no","yes","yes",6.5,8.09000015258789,0.200000002980232,0.889150023460388,14,"low","other"
"166","female","afam",43.2599983215332,"no","no","no","yes",6.5,8.09000015258789,0.200000002980232,0.889150023460388,12,"low","other"
"167","female","other",54.5400009155273,"no","yes","no","yes",6.5,8.09000015258789,0.200000002980232,0.889150023460388,12,"low","other"
"168","male","other",58.7200012207031,"no","no","yes","yes",6.5,8.09000015258789,0.200000002980232,0.889150023460388,18,"low","other"
"169","female","other",57.8800010681152,"yes","yes","yes","no",5.09999990463257,8.85000038146973,0.100000001490116,0.84987998008728,13,"high","other"
"170","female","other",68.5,"yes","no","no","no",5.09999990463257,8.85000038146973,0.100000001490116,0.84987998008728,15,"low","other"
"171","male","other",52.6399993896484,"no","yes","yes","no",5.09999990463257,8.85000038146973,0.100000001490116,0.84987998008728,15,"high","other"
"172","female","other",37.5400009155273,"no","yes","no","yes",8.19999980926514,7.69000005722046,3.20000004768372,1.11201000213623,12,"low","other"
"173","male","other",63.5900001525879,"no","no","no","yes",8.19999980926514,7.69000005722046,3.20000004768372,1.11201000213623,16,"low","other"
"174","female","other",49.9000015258789,"no","no","yes","yes",8.19999980926514,7.69000005722046,3.20000004768372,1.11201000213623,12,"low","other"
"175","male","other",67.1800003051758,"yes","yes","yes","yes",8.19999980926514,7.69000005722046,3.20000004768372,1.11201000213623,15,"low","other"
"176","female","other",61.0200004577637,"no","no","yes","yes",8.19999980926514,7.69000005722046,3.20000004768372,1.11201000213623,12,"low","other"
"177","female","other",55.8899993896484,"no","no","yes","no",7.19999980926514,8.85000038146973,0.600000023841858,0.84987998008728,16,"high","other"
"178","male","other",59.2400016784668,"no","no","yes","no",10.3999996185303,7.69000005722046,0,1.11201000213623,15,"low","other"
"179","male","other",62.9799995422363,"yes","no","yes","no",10.3999996185303,7.69000005722046,0,1.11201000213623,18,"high","other"
"180","male","other",51.0800018310547,"no","no","yes","no",10.3999996185303,7.69000005722046,0,1.11201000213623,12,"low","other"
"181","female","other",57.1199989318848,"no","no","yes","no",10.3999996185303,7.69000005722046,0,1.11201000213623,15,"high","other"
"182","female","other",60.4099998474121,"no","no","yes","no",10.3999996185303,7.69000005722046,0,1.11201000213623,17,"low","other"
"183","female","other",44.2799987792969,"no","no","yes","no",10.3999996185303,7.69000005722046,0,1.11201000213623,12,"low","other"
"184","male","other",53.0499992370605,"no","no","no","no",5.5,8.09000015258789,0.699999988079071,0.889150023460388,13,"low","other"
"185","female","other",48.7999992370605,"no","no","yes","no",5.5,8.09000015258789,0.699999988079071,0.889150023460388,12,"low","other"
"186","male","other",53.5900001525879,"no","no","yes","no",5.5,8.09000015258789,0.699999988079071,0.889150023460388,15,"low","other"
"187","male","other",39.2099990844727,"no","no","yes","no",5.5,8.09000015258789,0.699999988079071,0.889150023460388,12,"low","other"
"188","female","other",65.9300003051758,"yes","yes","yes","yes",5.09999990463257,8.85000038146973,1.5,0.84987998008728,14,"low","other"
"189","female","other",56.0800018310547,"no","yes","yes","yes",5.09999990463257,8.85000038146973,1.5,0.84987998008728,16,"low","other"
"190","male","other",63.1300010681152,"no","yes","yes","yes",5.09999990463257,8.85000038146973,1.5,0.84987998008728,17,"high","other"
"191","female","other",58.3699989318848,"no","no","yes","yes",5.09999990463257,8.85000038146973,1.5,0.84987998008728,16,"low","other"
"192","male","other",59.9099998474121,"no","yes","yes","yes",5.09999990463257,8.85000038146973,1.5,0.84987998008728,15,"high","other"
"193","male","afam",51.4000015258789,"no","no","no","yes",8,9.64000034332275,0.300000011920929,1.15242004394531,14,"low","other"
"194","female","hispanic",49.0900001525879,"no","no","no","yes",8,9.64000034332275,0.300000011920929,1.15242004394531,17,"low","other"
"195","male","other",57.4900016784668,"no","no","yes","no",6.30000019073486,9.64000034332275,2,1.15242004394531,17,"high","other"
"196","female","afam",45.3600006103516,"yes","yes","no","yes",8,9.64000034332275,0.100000001490116,1.15242004394531,16,"high","other"
"197","male","other",44.689998626709,"no","no","yes","yes",8,9.64000034332275,0.100000001490116,1.15242004394531,13,"low","other"
"198","male","afam",45.8400001525879,"no","no","no","yes",8,9.64000034332275,0,1.15242004394531,12,"low","other"
"199","male","afam",55.6599998474121,"no","no","yes","yes",8,9.64000034332275,0,1.15242004394531,16,"low","other"
"200","male","hispanic",35.7999992370605,"no","no","no","yes",8,9.64000034332275,0,1.15242004394531,12,"low","other"
"201","male","afam",44.2400016784668,"no","no","no","yes",8,9.64000034332275,0,1.15242004394531,14,"high","other"
"202","male","afam",51.3300018310547,"yes","yes","yes","yes",8,9.64000034332275,0,1.15242004394531,13,"high","other"
"203","male","afam",56.4599990844727,"no","yes","no","yes",8,9.64000034332275,0.400000005960464,1.15242004394531,15,"high","other"
"204","male","other",48.0299987792969,"no","no","yes","yes",8,9.64000034332275,0.400000005960464,1.15242004394531,12,"low","other"
"205","male","other",63.7700004577637,"no","no","no","yes",8,9.64000034332275,0,1.15242004394531,17,"low","other"
"206","female","other",69.9000015258789,"no","no","yes","yes",8,9.64000034332275,0,1.15242004394531,17,"low","other"
"207","female","other",66.8899993896484,"no","no","no","yes",8,9.64000034332275,0,1.15242004394531,16,"low","other"
"208","female","other",68.4400024414062,"yes","no","no","yes",8,9.64000034332275,0,1.15242004394531,17,"low","other"
"209","male","afam",54.8499984741211,"no","no","yes","yes",8,9.64000034332275,0,1.15242004394531,13,"low","other"
"210","male","other",62.3600006103516,"yes","yes","no","yes",8,9.64000034332275,1.5,1.15242004394531,16,"high","other"
"211","female","other",44.0400009155273,"no","no","no","yes",8,9.64000034332275,1.5,1.15242004394531,12,"low","other"
"212","male","hispanic",56.9300003051758,"no","no","yes","yes",8,9.64000034332275,1.5,1.15242004394531,16,"low","other"
"213","male","afam",43.5400009155273,"no","no","yes","yes",8,9.64000034332275,1.5,1.15242004394531,13,"low","other"
"214","female","other",58.8699989318848,"no","no","yes","no",6,9.64000034332275,1.5,1.15242004394531,12,"low","other"
"215","female","other",54.1699981689453,"yes","no","yes","no",6,9.64000034332275,1.5,1.15242004394531,16,"high","other"
"216","female","other",58.7299995422363,"yes","no","yes","no",6,9.64000034332275,1.5,1.15242004394531,16,"low","other"
"217","female","other",58.8400001525879,"no","yes","yes","no",6,9.64000034332275,1.5,1.15242004394531,16,"low","other"
"218","female","other",65.7900009155273,"no","no","yes","yes",8,9.64000034332275,0.5,1.15242004394531,17,"low","other"
"219","female","hispanic",42.0299987792969,"no","yes","yes","yes",8,9.64000034332275,0.5,1.15242004394531,14,"low","other"
"220","male","other",60.4300003051758,"no","no","yes","yes",8,9.64000034332275,0.5,1.15242004394531,16,"low","other"
"221","female","hispanic",49.5699996948242,"no","no","no","yes",8,9.64000034332275,0.5,1.15242004394531,15,"low","other"
"222","female","other",51.9599990844727,"no","no","yes","no",9.5,9.64000034332275,0.800000011920929,1.15242004394531,15,"low","other"
"223","male","other",63.5699996948242,"no","no","yes","no",9.5,9.64000034332275,0.800000011920929,1.15242004394531,16,"low","other"
"224","female","other",51.689998626709,"no","no","yes","no",9.5,9.64000034332275,0.800000011920929,1.15242004394531,15,"high","other"
"225","female","other",57.8699989318848,"no","no","yes","no",9.5,9.64000034332275,0.800000011920929,1.15242004394531,15,"high","other"
"226","female","other",49.810001373291,"no","no","yes","no",9.5,9.64000034332275,0.800000011920929,1.15242004394531,14,"high","other"
"227","female","other",52.4900016784668,"no","no","yes","no",9.5,9.64000034332275,0.800000011920929,1.15242004394531,14,"low","other"
"228","male","other",43.2200012207031,"no","no","yes","no",9.5,9.64000034332275,0.800000011920929,1.15242004394531,12,"high","other"
"229","male","afam",58.5299987792969,"yes","no","yes","yes",8,9.64000034332275,0.300000011920929,1.15242004394531,14,"low","other"
"230","female","hispanic",43.6300010681152,"no","no","no","yes",8,9.64000034332275,0.300000011920929,1.15242004394531,12,"low","other"
"231","female","afam",54.7900009155273,"no","no","yes","yes",8,9.64000034332275,0.300000011920929,1.15242004394531,13,"high","other"
"232","male","afam",37.6100006103516,"no","yes","yes","no",5.30000019073486,9.64000034332275,0.300000011920929,1.15242004394531,13,"high","other"
"233","female","other",62.25,"yes","no","yes","no",5.30000019073486,9.64000034332275,0.300000011920929,1.15242004394531,16,"high","other"
"234","female","other",43.7999992370605,"yes","no","yes","no",5.30000019073486,9.64000034332275,0.300000011920929,1.15242004394531,12,"high","other"
"235","male","other",51.9599990844727,"no","no","yes","no",5.30000019073486,9.64000034332275,0.300000011920929,1.15242004394531,15,"low","other"
"236","female","other",49.2099990844727,"no","no","yes","no",5.30000019073486,9.64000034332275,0.300000011920929,1.15242004394531,15,"low","other"
"237","female","other",52.3400001525879,"no","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,12,"low","other"
"238","female","other",62.939998626709,"no","yes","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,16,"high","other"
"239","male","other",55.8300018310547,"no","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,12,"low","other"
"240","male","other",62.1199989318848,"no","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,18,"low","other"
"241","female","other",55.5400009155273,"no","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,12,"high","other"
"242","female","other",65.120002746582,"no","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,15,"low","other"
"243","male","other",57.8499984741211,"no","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,15,"low","other"
"244","male","other",45.5400009155273,"no","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,12,"low","other"
"245","female","other",59.6800003051758,"no","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,16,"low","other"
"246","male","other",58.3199996948242,"no","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,12,"low","other"
"247","male","other",56.4199981689453,"yes","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,16,"low","other"
"248","male","other",62.2000007629395,"yes","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,16,"high","other"
"249","male","afam",57.0699996948242,"no","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,15,"low","other"
"250","female","other",52.8600006103516,"no","no","yes","no",9.80000019073486,9.64000034332275,4.5,1.15242004394531,15,"low","other"
"251","female","other",66.8600006103516,"yes","yes","yes","no",6.30000019073486,9.64000034332275,1.20000004768372,1.15242004394531,17,"high","other"
"252","female","other",44.5999984741211,"no","no","yes","no",10.6999998092651,9.64000034332275,0.5,1.15242004394531,12,"low","other"
"253","female","other",56.9300003051758,"yes","yes","yes","no",10.6999998092651,9.64000034332275,0.5,1.15242004394531,15,"high","other"
"254","female","other",54.1199989318848,"no","no","yes","no",10.6999998092651,9.64000034332275,0.5,1.15242004394531,12,"low","other"
"255","male","other",48.75,"no","no","yes","no",10.6999998092651,9.64000034332275,0.5,1.15242004394531,12,"low","other"
"256","male","other",58.1599998474121,"no","no","yes","no",10.6999998092651,9.64000034332275,0.5,1.15242004394531,16,"low","other"
"257","female","other",40.9000015258789,"no","no","yes","no",10.6999998092651,9.64000034332275,0.5,1.15242004394531,12,"low","other"
"258","male","other",60.9599990844727,"no","no","yes","no",10.6999998092651,9.64000034332275,0.5,1.15242004394531,17,"high","other"
"259","male","other",65.7099990844727,"no","yes","yes","no",10.6999998092651,9.64000034332275,0.5,1.15242004394531,15,"low","other"
"260","female","other",53.7299995422363,"no","no","yes","no",10.6999998092651,9.64000034332275,0.5,1.15242004394531,16,"low","other"
"261","female","other",57.5299987792969,"no","no","yes","no",10.6999998092651,9.64000034332275,0.5,1.15242004394531,16,"low","other"
"262","male","other",63.1199989318848,"yes","yes","yes","no",10.6999998092651,9.64000034332275,0.5,1.15242004394531,16,"high","other"
"263","male","other",51.1699981689453,"no","no","yes","no",5.30000019073486,9.64000034332275,1.20000004768372,1.15242004394531,12,"low","other"
"264","male","other",61.4500007629395,"no","no","yes","no",5.30000019073486,9.64000034332275,1.20000004768372,1.15242004394531,13,"low","other"
"265","male","afam",58.9300003051758,"yes","no","yes","no",5.30000019073486,9.64000034332275,1.20000004768372,1.15242004394531,15,"low","other"
"266","female","other",55.9799995422363,"no","yes","yes","no",5.30000019073486,9.64000034332275,1.20000004768372,1.15242004394531,12,"high","other"
"267","male","other",44.7799987792969,"no","no","yes","no",5.30000019073486,9.64000034332275,1.20000004768372,1.15242004394531,12,"low","other"
"268","male","other",49.25,"no","no","yes","no",5.30000019073486,9.64000034332275,1.20000004768372,1.15242004394531,12,"low","other"
"269","male","other",56.2999992370605,"yes","yes","yes","no",5.30000019073486,9.64000034332275,1.20000004768372,1.15242004394531,12,"high","other"
"270","female","other",65.6800003051758,"no","no","no","no",7,9.64000034332275,0.100000001490116,1.15242004394531,16,"low","other"
"271","male","other",42.689998626709,"yes","yes","yes","no",7,9.64000034332275,0.100000001490116,1.15242004394531,16,"low","other"
"272","female","other",63.8199996948242,"yes","yes","yes","no",7,9.64000034332275,0.100000001490116,1.15242004394531,16,"high","other"
"273","female","other",55.4199981689453,"no","no","yes","no",7,9.64000034332275,0.100000001490116,1.15242004394531,12,"high","other"
"274","male","other",48.7099990844727,"no","no","yes","no",7,9.64000034332275,0.100000001490116,1.15242004394531,12,"low","other"
"275","female","other",62.5400009155273,"yes","yes","yes","no",7,9.64000034332275,0.100000001490116,1.15242004394531,16,"high","other"
"276","female","other",62.9700012207031,"no","yes","yes","no",7,9.64000034332275,0.100000001490116,1.15242004394531,16,"high","other"
"277","male","other",63.2099990844727,"yes","yes","yes","no",7.69999980926514,9.64000034332275,0.100000001490116,1.15242004394531,16,"low","other"
"278","male","afam",38.2000007629395,"no","no","no","no",7.69999980926514,9.64000034332275,0.100000001490116,1.15242004394531,12,"low","other"
"279","female","other",54.9900016784668,"no","no","yes","no",5.59999990463257,9.64000034332275,0.400000005960464,1.15242004394531,15,"low","other"
"280","female","other",62.6800003051758,"no","no","yes","no",5.59999990463257,9.64000034332275,0.400000005960464,1.15242004394531,16,"high","other"
"281","female","other",50.6699981689453,"no","no","yes","no",8,9.64000034332275,3.5,1.15242004394531,14,"high","other"
"282","female","other",53.3600006103516,"no","no","yes","no",8,9.64000034332275,3.5,1.15242004394531,13,"low","other"
"283","male","other",58.9199981689453,"no","no","yes","no",8,9.64000034332275,3.5,1.15242004394531,17,"high","other"
"284","male","other",55.75,"no","no","yes","no",8,9.64000034332275,3.5,1.15242004394531,12,"low","other"
"285","female","other",52.7400016784668,"no","no","yes","no",8,9.64000034332275,3.5,1.15242004394531,12,"low","other"
"286","male","other",56.0200004577637,"no","no","yes","no",8,9.64000034332275,3.5,1.15242004394531,16,"high","other"
"287","male","other",58.5800018310547,"yes","yes","yes","no",5.30000019073486,9.64000034332275,0.699999988079071,1.15242004394531,16,"high","other"
"288","male","hispanic",48.5499992370605,"no","no","yes","no",5.30000019073486,9.64000034332275,0.699999988079071,1.15242004394531,14,"low","other"
"289","female","other",52.6800003051758,"no","yes","yes","no",5.30000019073486,9.64000034332275,0.699999988079071,1.15242004394531,14,"low","other"
"290","female","hispanic",57.9000015258789,"no","no","yes","no",5.30000019073486,9.64000034332275,0.699999988079071,1.15242004394531,14,"low","other"
"291","male","other",55.9700012207031,"no","no","yes","no",10.1999998092651,9.64000034332275,1.20000004768372,1.15242004394531,16,"low","other"
"292","male","other",58.8699989318848,"no","no","yes","no",10.1999998092651,9.64000034332275,1.20000004768372,1.15242004394531,12,"low","other"
"293","female","other",54.0999984741211,"no","no","yes","no",10.1999998092651,9.64000034332275,1.20000004768372,1.15242004394531,12,"low","other"
"294","male","other",40.2299995422363,"no","no","yes","no",10.1999998092651,9.64000034332275,1.20000004768372,1.15242004394531,12,"low","other"
"295","female","other",50.0400009155273,"no","no","yes","no",10.1999998092651,9.64000034332275,1.20000004768372,1.15242004394531,12,"low","other"
"296","male","other",58.25,"yes","no","no","no",4.40000009536743,9.64000034332275,0.300000011920929,1.15242004394531,15,"high","other"
"297","male","other",61.8699989318848,"yes","yes","yes","no",4.40000009536743,9.64000034332275,0.300000011920929,1.15242004394531,16,"high","other"
"298","male","other",67.620002746582,"yes","yes","yes","no",4.40000009536743,9.64000034332275,0.300000011920929,1.15242004394531,13,"high","other"
"299","male","other",65.1399993896484,"yes","yes","yes","no",4.40000009536743,9.64000034332275,0.300000011920929,1.15242004394531,16,"low","other"
"300","male","afam",58.4099998474121,"yes","yes","yes","no",4.40000009536743,9.64000034332275,0.300000011920929,1.15242004394531,15,"high","other"
"301","male","other",66.8300018310547,"yes","no","yes","no",4.40000009536743,9.64000034332275,0.300000011920929,1.15242004394531,16,"high","other"
"302","female","afam",53.9599990844727,"yes","no","yes","no",4.40000009536743,9.64000034332275,0.300000011920929,1.15242004394531,16,"high","other"
"303","male","afam",52.7799987792969,"no","no","no","no",4.40000009536743,9.64000034332275,0.300000011920929,1.15242004394531,16,"high","other"
"304","female","other",52.6500015258789,"yes","no","no","no",8.69999980926514,9.64000034332275,2,1.15242004394531,12,"high","other"
"305","male","other",60.0800018310547,"no","no","yes","no",8.69999980926514,9.64000034332275,2,1.15242004394531,15,"low","other"
"306","male","other",55.5900001525879,"no","no","no","no",8.69999980926514,9.64000034332275,2,1.15242004394531,12,"low","other"
"307","male","other",53.0299987792969,"yes","no","yes","no",8.69999980926514,9.64000034332275,2,1.15242004394531,16,"high","other"
"308","female","other",40.7799987792969,"no","no","yes","no",8.69999980926514,9.64000034332275,2,1.15242004394531,12,"low","other"
"309","female","other",48.0900001525879,"no","no","yes","no",8.69999980926514,9.64000034332275,2,1.15242004394531,12,"low","other"
"310","male","other",41.7299995422363,"no","no","no","no",8.69999980926514,9.64000034332275,2,1.15242004394531,12,"low","other"
"311","female","other",55.6699981689453,"no","no","yes","no",8.69999980926514,9.64000034332275,2,1.15242004394531,15,"low","other"
"312","male","other",55.2299995422363,"no","no","yes","no",8.69999980926514,9.64000034332275,2,1.15242004394531,12,"low","other"
"313","male","other",62.3699989318848,"yes","yes","yes","no",8.69999980926514,9.64000034332275,2,1.15242004394531,15,"low","other"
"314","female","other",60.9599990844727,"no","no","no","no",8.69999980926514,9.64000034332275,2,1.15242004394531,16,"low","other"
"315","male","other",61.2599983215332,"yes","yes","yes","no",8.69999980926514,9.64000034332275,2,1.15242004394531,16,"high","other"
"316","female","other",60.9199981689453,"no","no","yes","no",8.69999980926514,9.64000034332275,2,1.15242004394531,16,"high","other"
"317","male","afam",46.1399993896484,"no","no","yes","no",8.80000019073486,9.64000034332275,1.5,1.15242004394531,12,"low","other"
"318","male","other",50.2799987792969,"yes","no","yes","no",8.80000019073486,9.64000034332275,1.5,1.15242004394531,15,"low","other"
"319","female","other",39.8600006103516,"no","no","yes","no",8.80000019073486,9.64000034332275,1.5,1.15242004394531,12,"low","other"
"320","male","other",59.1100006103516,"yes","yes","yes","no",8.80000019073486,9.64000034332275,1.5,1.15242004394531,16,"low","other"
"321","female","afam",43.4199981689453,"no","no","yes","no",5.59999990463257,9.64000034332275,0.5,1.15242004394531,15,"low","other"
"322","female","afam",49.0699996948242,"no","no","yes","no",5.59999990463257,9.64000034332275,0.5,1.15242004394531,17,"high","other"
"323","female","afam",36.25,"yes","no","no","no",5.59999990463257,9.64000034332275,0.5,1.15242004394531,12,"high","other"
"324","male","afam",48.3899993896484,"no","no","yes","no",5.59999990463257,9.64000034332275,0.5,1.15242004394531,16,"high","other"
"325","male","afam",49.0200004577637,"yes","no","yes","no",5.59999990463257,9.64000034332275,0.5,1.15242004394531,16,"low","other"
"326","female","afam",38.0900001525879,"no","no","yes","no",5.59999990463257,9.64000034332275,0.5,1.15242004394531,12,"low","other"
"327","female","afam",57.1199989318848,"no","no","no","yes",8,9.64000034332275,0.699999988079071,1.15242004394531,16,"low","other"
"328","male","other",62.439998626709,"yes","yes","yes","yes",8,9.64000034332275,0.699999988079071,1.15242004394531,16,"high","other"
"329","female","hispanic",46.0099983215332,"no","no","no","yes",8,9.64000034332275,0.699999988079071,1.15242004394531,12,"low","other"
"330","female","other",57.5499992370605,"yes","no","yes","yes",8,9.64000034332275,0.699999988079071,1.15242004394531,15,"low","other"
"331","female","other",49.1300010681152,"no","no","yes","no",10.1999998092651,9.64000034332275,0,1.15242004394531,12,"low","other"
"332","female","other",50.7299995422363,"no","no","yes","no",10.1999998092651,9.64000034332275,0,1.15242004394531,12,"low","other"
"333","male","other",53.2099990844727,"no","no","no","no",6.80000019073486,9.64000034332275,2.20000004768372,1.15242004394531,15,"low","other"
"334","female","other",57.2200012207031,"no","no","yes","no",6.80000019073486,9.64000034332275,2.20000004768372,1.15242004394531,16,"low","other"
"335","female","other",47.189998626709,"no","no","yes","no",6.80000019073486,9.64000034332275,2.20000004768372,1.15242004394531,13,"low","other"
"336","male","other",36.3699989318848,"no","no","no","no",6.80000019073486,9.64000034332275,2.20000004768372,1.15242004394531,12,"low","other"
"337","female","other",48.560001373291,"no","no","yes","no",6.80000019073486,9.64000034332275,2.20000004768372,1.15242004394531,12,"low","other"
"338","female","other",49.439998626709,"yes","yes","yes","no",6.80000019073486,9.64000034332275,2.20000004768372,1.15242004394531,16,"low","other"
"339","female","afam",49.2200012207031,"no","no","no","yes",9.5,9.64000034332275,0.100000001490116,1.15242004394531,13,"low","other"
"340","male","afam",59.6699981689453,"no","no","no","yes",9.5,9.64000034332275,0.100000001490116,1.15242004394531,12,"low","other"
"341","female","other",43.7599983215332,"no","no","no","yes",9.5,9.64000034332275,0.300000011920929,1.15242004394531,12,"low","other"
"342","male","other",54.2400016784668,"no","no","no","yes",9.5,9.64000034332275,0.300000011920929,1.15242004394531,16,"high","other"
"343","female","other",48.5299987792969,"no","no","yes","yes",9.5,9.64000034332275,0.300000011920929,1.15242004394531,17,"low","other"
"344","female","other",50.1399993896484,"no","no","yes","no",12.6000003814697,9.64000034332275,5.19999980926514,1.15242004394531,12,"low","other"
"345","male","other",52.4599990844727,"no","no","yes","no",12.6000003814697,9.64000034332275,5.19999980926514,1.15242004394531,12,"low","other"
"346","female","other",44.7599983215332,"no","no","no","no",12.6000003814697,9.64000034332275,5.19999980926514,1.15242004394531,12,"low","other"
"347","female","other",46.2400016784668,"no","no","yes","no",12.6000003814697,9.64000034332275,5.19999980926514,1.15242004394531,12,"low","other"
"348","male","other",58.7799987792969,"yes","yes","yes","no",12.6000003814697,9.64000034332275,5.19999980926514,1.15242004394531,16,"high","other"
"349","male","other",62.4900016784668,"yes","no","yes","no",8,9.64000034332275,6,1.15242004394531,16,"high","other"
"350","male","other",43.6500015258789,"no","no","yes","no",8,9.64000034332275,6,1.15242004394531,12,"low","other"
"351","male","hispanic",56.0200004577637,"no","no","yes","no",8,9.64000034332275,6,1.15242004394531,15,"low","other"
"352","female","other",59.9300003051758,"no","no","yes","no",8,9.64000034332275,6,1.15242004394531,17,"low","other"
"353","male","other",60.810001373291,"no","no","yes","no",8,9.64000034332275,6,1.15242004394531,16,"high","other"
"354","female","other",56.2799987792969,"no","no","yes","no",8,9.64000034332275,6,1.15242004394531,12,"low","other"
"355","male","other",42.7999992370605,"no","no","yes","no",10.8000001907349,9.64000034332275,6.5,1.15242004394531,14,"low","other"
"356","female","other",65.0500030517578,"no","no","yes","no",10.8000001907349,9.64000034332275,6.5,1.15242004394531,12,"low","other"
"357","female","other",59.7400016784668,"no","yes","no","no",10.8000001907349,9.64000034332275,6.5,1.15242004394531,16,"low","other"
"358","female","other",46.7799987792969,"no","no","yes","no",10.8000001907349,9.64000034332275,6.5,1.15242004394531,12,"high","other"
"359","male","other",54.8699989318848,"yes","no","yes","no",10.8000001907349,9.64000034332275,6.5,1.15242004394531,16,"high","other"
"360","male","other",49.1100006103516,"no","no","yes","no",10.8000001907349,9.64000034332275,6.5,1.15242004394531,12,"high","other"
"361","male","other",51.9000015258789,"no","no","no","no",10.8000001907349,9.64000034332275,6.5,1.15242004394531,12,"low","other"
"362","female","other",59.9000015258789,"no","no","yes","no",10.8000001907349,9.64000034332275,6.5,1.15242004394531,15,"low","other"
"363","male","other",58.2299995422363,"no","no","yes","no",10.8000001907349,9.64000034332275,6.5,1.15242004394531,16,"low","other"
"364","male","other",53.4700012207031,"yes","no","no","no",10.8000001907349,9.64000034332275,6.5,1.15242004394531,16,"low","other"
"365","male","other",58.060001373291,"no","no","yes","no",9.5,9.64000034332275,2,1.15242004394531,15,"high","other"
"366","female","other",62.8600006103516,"no","no","yes","no",9.5,9.64000034332275,2,1.15242004394531,16,"low","other"
"367","female","other",52.9300003051758,"no","no","yes","no",9.5,9.64000034332275,2,1.15242004394531,14,"high","other"
"368","female","other",64.2699966430664,"yes","no","yes","no",9.5,9.64000034332275,2,1.15242004394531,18,"high","other"
"369","female","hispanic",51.5999984741211,"no","no","yes","no",9.5,9.64000034332275,2,1.15242004394531,12,"low","other"
"370","male","other",59.9599990844727,"yes","no","yes","no",9.5,9.64000034332275,2,1.15242004394531,14,"high","other"
"371","male","other",60.439998626709,"no","no","yes","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,12,"high","other"
"372","male","other",44.4700012207031,"yes","yes","yes","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,15,"high","other"
"373","male","other",51,"no","no","yes","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,13,"low","other"
"374","male","other",59.560001373291,"yes","yes","yes","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,16,"high","other"
"375","male","other",64.8899993896484,"yes","no","yes","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,13,"high","other"
"376","male","other",58.2400016784668,"no","no","yes","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,15,"high","other"
"377","female","other",44.1300010681152,"yes","no","no","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,17,"low","other"
"378","male","other",62.2000007629395,"yes","no","yes","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,15,"high","other"
"379","female","other",52.310001373291,"no","no","yes","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,12,"low","other"
"380","female","other",49.060001373291,"yes","yes","yes","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,16,"high","other"
"381","male","other",60.9500007629395,"yes","no","yes","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,15,"high","other"
"382","female","other",55.9799995422363,"no","no","yes","no",5.30000019073486,9.64000034332275,0.5,1.15242004394531,12,"low","other"
"383","male","other",67.4000015258789,"yes","no","yes","no",6.30000019073486,9.64000034332275,0.400000005960464,1.15242004394531,17,"low","other"
"384","male","other",59.3400001525879,"no","no","yes","no",6.30000019073486,9.64000034332275,0.400000005960464,1.15242004394531,12,"high","other"
"385","female","other",49.2099990844727,"no","no","yes","no",6.30000019073486,9.64000034332275,0.400000005960464,1.15242004394531,14,"low","other"
"386","female","other",58.2000007629395,"no","no","yes","no",6.30000019073486,9.64000034332275,0.400000005960464,1.15242004394531,16,"low","other"
"387","male","other",50.8300018310547,"no","no","yes","no",6.30000019073486,9.64000034332275,0.400000005960464,1.15242004394531,13,"low","other"
"388","female","other",42.1599998474121,"no","no","yes","yes",8,9.64000034332275,1,1.15242004394531,13,"low","other"
"389","male","other",49.9799995422363,"yes","no","no","yes",8,9.64000034332275,1,1.15242004394531,12,"low","other"
"390","female","other",61.4700012207031,"no","no","yes","yes",8,9.64000034332275,1,1.15242004394531,14,"low","other"
"391","female","afam",54.6300010681152,"no","no","yes","yes",8,9.64000034332275,1,1.15242004394531,13,"low","other"
"392","female","afam",32.5200004577637,"yes","no","no","yes",8,9.64000034332275,1,1.15242004394531,15,"low","other"
"393","male","other",42.8400001525879,"no","no","yes","yes",8,9.64000034332275,1,1.15242004394531,12,"high","other"
"394","female","afam",51.0800018310547,"no","no","no","yes",8,9.64000034332275,1,1.15242004394531,16,"low","other"
"395","female","afam",48.2000007629395,"no","no","yes","yes",8,9.64000034332275,1,1.15242004394531,14,"low","other"
"396","female","afam",42.189998626709,"no","no","no","yes",8,9.64000034332275,1,1.15242004394531,12,"low","other"
"397","female","other",48.8899993896484,"no","no","yes","no",5.30000019073486,9.64000034332275,1.10000002384186,1.15242004394531,12,"low","other"
"398","male","hispanic",42.8199996948242,"no","no","yes","no",5.30000019073486,9.64000034332275,1.10000002384186,1.15242004394531,12,"low","other"
"399","male","other",65.6699981689453,"yes","yes","yes","no",5.30000019073486,9.64000034332275,1.10000002384186,1.15242004394531,15,"high","other"
"400","male","other",61.8699989318848,"yes","yes","no","no",4.40000009536743,9.64000034332275,0.100000001490116,1.15242004394531,16,"high","other"
"401","male","other",61.2799987792969,"yes","yes","yes","no",4.40000009536743,9.64000034332275,0.100000001490116,1.15242004394531,17,"high","other"
"402","male","other",62.1800003051758,"no","yes","yes","no",4.40000009536743,9.64000034332275,0.100000001490116,1.15242004394531,17,"high","other"
"403","male","afam",60.1800003051758,"yes","yes","yes","no",4.40000009536743,9.64000034332275,0.100000001490116,1.15242004394531,16,"high","other"
"404","female","other",36.5900001525879,"no","no","yes","no",4.40000009536743,9.64000034332275,0.100000001490116,1.15242004394531,12,"low","other"
"405","male","afam",37.6699981689453,"no","no","no","no",4.40000009536743,9.64000034332275,0.100000001490116,1.15242004394531,12,"low","other"
"406","female","hispanic",61.75,"no","no","no","no",4.40000009536743,9.64000034332275,0.100000001490116,1.15242004394531,16,"low","other"
"407","male","other",49.3199996948242,"yes","no","yes","no",5.09999990463257,9.64000034332275,0.5,1.15242004394531,17,"high","other"
"408","male","other",53.3300018310547,"no","no","yes","no",5.09999990463257,9.64000034332275,0.5,1.15242004394531,17,"high","other"
"409","male","afam",48.7000007629395,"no","yes","yes","no",5.09999990463257,9.64000034332275,0.5,1.15242004394531,13,"high","other"
"410","female","other",66.2300033569336,"no","no","yes","no",5.09999990463257,9.64000034332275,0.5,1.15242004394531,17,"low","other"
"411","female","other",45.3199996948242,"no","no","yes","no",5.09999990463257,9.64000034332275,0.5,1.15242004394531,12,"low","other"
"412","male","other",58.1699981689453,"no","no","yes","no",6.59999990463257,9.64000034332275,2,1.15242004394531,12,"low","other"
"413","female","other",56.2200012207031,"no","no","no","no",6.59999990463257,9.64000034332275,2,1.15242004394531,13,"high","other"
"414","female","other",65.1900024414062,"no","yes","yes","no",6.59999990463257,9.64000034332275,2,1.15242004394531,16,"low","other"
"415","female","other",42.0200004577637,"no","no","no","no",6.59999990463257,9.64000034332275,2,1.15242004394531,12,"low","other"
"416","male","other",44.8600006103516,"no","no","yes","no",6.59999990463257,9.64000034332275,2,1.15242004394531,12,"low","other"
"417","female","afam",57.2799987792969,"no","no","yes","yes",8,9.64000034332275,0.300000011920929,1.15242004394531,13,"low","other"
"418","male","afam",35.439998626709,"no","no","no","yes",8,9.64000034332275,0.300000011920929,1.15242004394531,12,"low","other"
"419","female","afam",64.5100021362305,"no","no","no","yes",8,9.64000034332275,0.300000011920929,1.15242004394531,15,"low","other"
"420","male","afam",42,"no","no","yes","yes",8,9.64000034332275,0.300000011920929,1.15242004394531,14,"low","other"
"421","female","afam",45.0099983215332,"no","no","yes","yes",8,9.64000034332275,0.300000011920929,1.15242004394531,13,"low","other"
"422","female","afam",49.9500007629395,"no","no","no","no",7.59999990463257,9.64000034332275,0.100000001490116,1.15242004394531,14,"low","other"
"423","male","other",51.8800010681152,"no","no","yes","no",7.59999990463257,9.64000034332275,0.100000001490116,1.15242004394531,12,"high","other"
"424","male","other",45.7599983215332,"no","no","yes","no",7.59999990463257,9.64000034332275,0.100000001490116,1.15242004394531,17,"low","other"
"425","male","afam",41.939998626709,"no","no","yes","no",7.59999990463257,9.64000034332275,0.100000001490116,1.15242004394531,15,"low","other"
"426","female","other",64.5299987792969,"no","no","yes","no",7.59999990463257,9.64000034332275,0.100000001490116,1.15242004394531,15,"high","other"
"427","male","other",66.5199966430664,"no","no","no","no",6.69999980926514,10.039999961853,1.5,1.12702000141144,16,"low","other"
"428","female","other",53.0800018310547,"no","no","no","no",6.69999980926514,10.039999961853,1.5,1.12702000141144,12,"high","other"
"429","male","other",54.7599983215332,"no","yes","yes","no",6.69999980926514,10.039999961853,1.5,1.12702000141144,16,"high","other"
"430","female","other",54.5200004577637,"no","no","yes","no",6.69999980926514,10.039999961853,1.5,1.12702000141144,16,"low","other"
"431","female","other",47.0200004577637,"yes","no","yes","no",6.69999980926514,10.039999961853,1.5,1.12702000141144,13,"low","other"
"432","male","other",62.0299987792969,"yes","yes","yes","no",5.59999990463257,10.039999961853,0.5,1.12702000141144,15,"high","other"
"433","female","other",62.439998626709,"yes","yes","yes","no",5.59999990463257,10.039999961853,0.5,1.12702000141144,17,"high","other"
"434","male","other",57.5099983215332,"yes","yes","yes","no",5.59999990463257,10.039999961853,0.5,1.12702000141144,14,"low","other"
"435","male","other",56.1699981689453,"yes","yes","no","no",5.59999990463257,10.039999961853,0.5,1.12702000141144,13,"high","other"
"436","female","other",44.6300010681152,"yes","yes","yes","no",5.59999990463257,10.039999961853,0.5,1.12702000141144,13,"high","other"
"437","female","other",47.9000015258789,"no","no","yes","no",4.80000019073486,10.039999961853,1,1.12702000141144,12,"low","other"
"438","male","other",56.7200012207031,"no","no","no","no",4.80000019073486,10.039999961853,1,1.12702000141144,14,"high","other"
"439","male","other",52.3300018310547,"no","no","yes","no",4.80000019073486,10.039999961853,1,1.12702000141144,12,"low","other"
"440","male","hispanic",49.7599983215332,"no","no","yes","no",4.80000019073486,10.039999961853,1,1.12702000141144,12,"low","other"
"441","male","other",62.3800010681152,"no","no","no","no",4.80000019073486,10.039999961853,1,1.12702000141144,16,"low","other"
"442","male","other",62.5200004577637,"no","no","yes","no",6.19999980926514,10.039999961853,1.5,1.12702000141144,15,"high","other"
"443","female","hispanic",53.8600006103516,"no","no","yes","no",6.19999980926514,10.039999961853,1.5,1.12702000141144,15,"low","other"
"444","male","other",58.7900009155273,"no","no","yes","no",6.19999980926514,10.039999961853,1.5,1.12702000141144,15,"low","other"
"445","male","hispanic",41.5400009155273,"no","no","yes","no",7.40000009536743,10.039999961853,4.5,1.12702000141144,12,"high","other"
"446","male","other",58.5099983215332,"no","no","no","no",5.59999990463257,10.039999961853,0.400000005960464,1.12702000141144,14,"low","other"
"447","female","other",49.7000007629395,"no","no","yes","no",7.80000019073486,10.039999961853,0.699999988079071,1.12702000141144,15,"low","other"
"448","female","other",46.8699989318848,"no","no","yes","no",7.80000019073486,10.039999961853,0.699999988079071,1.12702000141144,12,"low","other"
"449","female","other",50.6699981689453,"yes","no","yes","no",7.80000019073486,10.039999961853,0.699999988079071,1.12702000141144,12,"low","other"
"450","female","other",49.2400016784668,"no","no","yes","no",7.80000019073486,10.039999961853,0.699999988079071,1.12702000141144,12,"low","other"
"451","male","afam",54.939998626709,"no","no","no","no",7.69999980926514,10.039999961853,0.699999988079071,1.12702000141144,16,"high","other"
"452","male","afam",41.189998626709,"yes","yes","yes","no",7.69999980926514,10.039999961853,0.699999988079071,1.12702000141144,16,"high","other"
"453","female","afam",58.810001373291,"no","no","yes","no",7.69999980926514,10.039999961853,0.699999988079071,1.12702000141144,14,"low","other"
"454","female","afam",44.0400009155273,"no","no","yes","no",7.69999980926514,10.039999961853,0.699999988079071,1.12702000141144,12,"low","other"
"455","female","afam",47.9599990844727,"yes","yes","yes","no",7.69999980926514,10.039999961853,0.5,1.12702000141144,16,"low","other"
"456","female","other",47.3499984741211,"no","no","no","no",7.69999980926514,10.039999961853,0.5,1.12702000141144,16,"high","other"
"457","male","other",60.9500007629395,"yes","yes","yes","no",7.69999980926514,10.039999961853,0.5,1.12702000141144,17,"high","other"
"458","female","other",55.9799995422363,"yes","no","no","no",7.69999980926514,10.039999961853,0.5,1.12702000141144,15,"high","other"
"459","male","other",69.3000030517578,"yes","no","yes","no",7.69999980926514,10.039999961853,0.5,1.12702000141144,18,"high","other"
"460","male","other",62.8300018310547,"no","no","yes","no",6.90000009536743,10.039999961853,1,1.12702000141144,14,"low","other"
"461","male","other",62.5499992370605,"no","no","no","no",6.90000009536743,10.039999961853,1,1.12702000141144,12,"low","other"
"462","female","other",58.6100006103516,"no","no","yes","no",6.69999980926514,10.039999961853,1.20000004768372,1.12702000141144,15,"high","other"
"463","female","other",57.5400009155273,"no","yes","yes","no",6.69999980926514,10.039999961853,1.20000004768372,1.12702000141144,16,"high","other"
"464","male","other",60.6699981689453,"no","yes","yes","no",6.69999980926514,10.039999961853,1.20000004768372,1.12702000141144,13,"high","other"
"465","male","other",68.4400024414062,"yes","yes","no","no",6.69999980926514,10.039999961853,0.100000001490116,1.12702000141144,12,"low","other"
"466","female","hispanic",64.5999984741211,"yes","no","no","no",6.69999980926514,10.039999961853,0.100000001490116,1.12702000141144,16,"high","other"
"467","female","other",68.7799987792969,"yes","yes","no","no",6.69999980926514,10.039999961853,0.100000001490116,1.12702000141144,17,"high","other"
"468","female","other",48.8499984741211,"no","yes","yes","no",5.90000009536743,10.039999961853,1.5,1.12702000141144,12,"high","other"
"469","female","other",64.0800018310547,"no","no","no","no",5.90000009536743,10.039999961853,1.5,1.12702000141144,14,"high","other"
"470","female","other",62.9199981689453,"yes","yes","yes","no",5.90000009536743,10.039999961853,1.5,1.12702000141144,16,"high","other"
"471","male","other",65.0500030517578,"yes","yes","yes","no",5.90000009536743,10.039999961853,1.5,1.12702000141144,16,"high","other"
"472","female","other",55.0400009155273,"yes","no","yes","no",5.90000009536743,10.039999961853,1.5,1.12702000141144,16,"high","other"
"473","male","other",58.0200004577637,"yes","no","yes","no",5.90000009536743,10.039999961853,1.5,1.12702000141144,13,"high","other"
"474","female","other",54.8400001525879,"yes","yes","yes","no",5.90000009536743,10.039999961853,1.5,1.12702000141144,16,"high","other"
"475","female","afam",38.1100006103516,"no","no","yes","yes",9.10000038146973,10.039999961853,0.300000011920929,1.12702000141144,12,"low","other"
"476","female","afam",36.3800010681152,"no","no","no","yes",9.10000038146973,10.039999961853,0.300000011920929,1.12702000141144,12,"low","other"
"477","female","hispanic",37.3400001525879,"no","no","no","yes",9.10000038146973,10.039999961853,0.300000011920929,1.12702000141144,12,"low","other"
"478","male","afam",48.3199996948242,"no","no","yes","yes",9.10000038146973,10.039999961853,0.300000011920929,1.12702000141144,16,"low","other"
"479","female","afam",35.6599998474121,"no","no","yes","yes",9.10000038146973,10.039999961853,0.300000011920929,1.12702000141144,13,"low","other"
"480","female","afam",39.8800010681152,"no","no","yes","yes",9.10000038146973,10.039999961853,0.300000011920929,1.12702000141144,12,"high","other"
"481","male","hispanic",61.8300018310547,"yes","no","no","no",5.59999990463257,10.039999961853,0,1.12702000141144,14,"low","other"
"482","female","other",53.4700012207031,"yes","no","no","no",4.80000019073486,10.039999961853,1.5,1.12702000141144,16,"high","other"
"483","male","other",61.439998626709,"yes","no","yes","no",4.80000019073486,10.039999961853,1.5,1.12702000141144,18,"high","other"
"484","female","other",63.75,"no","no","yes","no",4.80000019073486,10.039999961853,1.5,1.12702000141144,12,"low","other"
"485","female","other",56.1300010681152,"no","no","yes","no",4.80000019073486,10.039999961853,1.5,1.12702000141144,15,"low","other"
"486","male","other",67.1100006103516,"yes","yes","yes","no",4.80000019073486,10.039999961853,1.5,1.12702000141144,16,"low","other"
"487","male","other",57.2000007629395,"no","no","yes","no",4.80000019073486,10.039999961853,1.5,1.12702000141144,16,"high","other"
"488","female","other",56.5200004577637,"yes","yes","yes","no",4.80000019073486,10.039999961853,1.5,1.12702000141144,16,"high","other"
"489","female","other",54.7200012207031,"no","no","yes","no",4.80000019073486,10.039999961853,1.5,1.12702000141144,12,"high","other"
"490","male","other",57.6800003051758,"no","no","yes","no",4.80000019073486,10.039999961853,1.5,1.12702000141144,15,"low","other"
"491","female","other",48.0200004577637,"no","no","yes","no",4.80000019073486,10.039999961853,1.5,1.12702000141144,15,"low","other"
"492","female","other",55.2299995422363,"no","no","yes","no",4.80000019073486,10.039999961853,1.5,1.12702000141144,16,"high","other"
"493","female","other",45.0400009155273,"no","no","yes","no",6.19999980926514,10.039999961853,0.5,1.12702000141144,14,"high","other"
"494","male","other",61.7299995422363,"no","no","yes","no",6.19999980926514,10.039999961853,0.5,1.12702000141144,15,"low","other"
"495","male","hispanic",50.4199981689453,"no","no","yes","no",6.19999980926514,10.039999961853,0.5,1.12702000141144,15,"low","other"
"496","female","other",59.0699996948242,"no","no","yes","no",6.19999980926514,10.039999961853,0.5,1.12702000141144,16,"low","other"
"497","male","afam",47.4599990844727,"no","no","no","no",6.19999980926514,10.039999961853,0.5,1.12702000141144,13,"high","other"
"498","female","afam",56.3400001525879,"yes","no","no","no",6.19999980926514,10.039999961853,0.5,1.12702000141144,13,"high","other"
"499","female","other",50.9799995422363,"no","no","yes","no",6.19999980926514,10.039999961853,0.5,1.12702000141144,16,"low","other"
"500","female","afam",40.1699981689453,"no","no","yes","no",6.19999980926514,10.039999961853,0.5,1.12702000141144,12,"low","other"
"501","female","other",46.2400016784668,"no","no","yes","no",6.19999980926514,10.039999961853,0.5,1.12702000141144,12,"high","other"
"502","male","other",47.0699996948242,"yes","no","yes","no",7.40000009536743,10.039999961853,1,1.12702000141144,12,"high","other"
"503","female","other",58.9099998474121,"no","yes","no","no",7.40000009536743,10.039999961853,1,1.12702000141144,17,"low","other"
"504","male","other",58.5800018310547,"no","no","yes","no",7.40000009536743,10.039999961853,1,1.12702000141144,14,"high","other"
"505","female","other",41.75,"no","no","no","no",6.69999980926514,10.039999961853,1.5,1.12702000141144,12,"low","other"
"506","female","other",44.0499992370605,"yes","no","yes","no",6.69999980926514,10.039999961853,1.5,1.12702000141144,13,"high","other"
"507","female","afam",35.8199996948242,"yes","no","no","no",6.69999980926514,10.039999961853,1.5,1.12702000141144,16,"high","other"
"508","female","other",46.7999992370605,"no","no","no","no",6.19999980926514,10.039999961853,0.100000001490116,1.12702000141144,15,"high","other"
"509","female","other",48.2200012207031,"no","no","yes","no",6.19999980926514,10.039999961853,0.100000001490116,1.12702000141144,12,"low","other"
"510","female","other",54.1599998474121,"no","no","yes","no",6.19999980926514,10.039999961853,0.100000001490116,1.12702000141144,16,"high","other"
"511","male","afam",41.6599998474121,"no","no","yes","no",6.19999980926514,10.039999961853,0.100000001490116,1.12702000141144,12,"low","other"
"512","female","other",56.9799995422363,"no","no","yes","no",6.19999980926514,10.039999961853,0.100000001490116,1.12702000141144,12,"high","other"
"513","male","afam",42.3300018310547,"no","no","yes","no",6.19999980926514,10.039999961853,0.100000001490116,1.12702000141144,12,"high","other"
"514","male","other",55.2200012207031,"no","no","no","no",6.19999980926514,10.039999961853,0.100000001490116,1.12702000141144,16,"low","other"
"515","male","other",67.3199996948242,"yes","yes","yes","no",6.19999980926514,10.039999961853,0.100000001490116,1.12702000141144,16,"low","other"
"516","male","other",49.7999992370605,"no","no","no","no",6.19999980926514,10.039999961853,0.100000001490116,1.12702000141144,14,"high","other"
"517","female","afam",37.25,"no","no","no","yes",8.39999961853027,10.039999961853,0,1.12702000141144,13,"high","other"
"518","female","afam",48.560001373291,"no","no","no","yes",8.39999961853027,10.039999961853,0,1.12702000141144,12,"low","other"
"519","female","other",58.1300010681152,"no","no","no","no",5.90000009536743,10.039999961853,2,1.12702000141144,16,"low","other"
"520","female","afam",36.4599990844727,"no","no","yes","no",5.90000009536743,10.039999961853,2,1.12702000141144,12,"low","other"
"521","male","other",38.8699989318848,"no","no","no","no",5.90000009536743,10.039999961853,2,1.12702000141144,12,"high","other"
"522","female","afam",43.8600006103516,"no","no","no","no",5.90000009536743,10.039999961853,2,1.12702000141144,12,"low","other"
"523","male","afam",39.3600006103516,"no","no","yes","yes",6.59999990463257,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"524","male","afam",38.5699996948242,"no","no","yes","yes",6.59999990463257,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"525","male","afam",48.7299995422363,"no","no","yes","yes",6.59999990463257,9.96000003814697,0.100000001490116,1.4041600227356,13,"low","other"
"526","female","other",62.7000007629395,"yes","yes","yes","no",5.59999990463257,9.96000003814697,0.600000023841858,1.4041600227356,17,"low","other"
"527","male","other",54.6599998474121,"yes","yes","yes","no",5.59999990463257,9.96000003814697,0.600000023841858,1.4041600227356,12,"low","other"
"528","female","other",63.6300010681152,"yes","no","yes","no",5.59999990463257,9.96000003814697,0.600000023841858,1.4041600227356,12,"high","other"
"529","male","other",34.9300003051758,"yes","no","yes","no",5.59999990463257,9.96000003814697,0.600000023841858,1.4041600227356,12,"low","other"
"530","male","other",59,"no","no","yes","no",5.90000009536743,9.96000003814697,0.300000011920929,1.4041600227356,12,"low","other"
"531","female","other",61.4000015258789,"yes","no","yes","no",5.90000009536743,9.96000003814697,0.300000011920929,1.4041600227356,16,"low","other"
"532","female","other",51.25,"yes","no","yes","no",5.90000009536743,9.96000003814697,0.300000011920929,1.4041600227356,12,"low","other"
"533","male","other",45.2700004577637,"no","no","yes","yes",9.89999961853027,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"534","female","other",53.2799987792969,"no","no","yes","yes",9.89999961853027,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"535","male","other",39.9300003051758,"no","no","yes","yes",9.89999961853027,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"536","female","other",46.2299995422363,"yes","yes","yes","no",5.19999980926514,9.96000003814697,2,1.4041600227356,16,"high","other"
"537","female","other",63.3899993896484,"yes","no","yes","no",5.19999980926514,9.96000003814697,2,1.4041600227356,16,"high","other"
"538","female","other",48.3600006103516,"no","no","yes","no",5.19999980926514,9.96000003814697,2,1.4041600227356,14,"low","other"
"539","female","other",62.5099983215332,"yes","yes","yes","no",5.19999980926514,9.96000003814697,2,1.4041600227356,17,"high","other"
"540","female","other",54.0900001525879,"no","no","yes","no",5.19999980926514,9.96000003814697,2,1.4041600227356,12,"high","other"
"541","female","other",58.4900016784668,"yes","no","yes","no",5.19999980926514,9.96000003814697,2,1.4041600227356,13,"high","other"
"542","female","other",62.439998626709,"yes","yes","yes","no",5.19999980926514,9.96000003814697,2,1.4041600227356,16,"low","other"
"543","male","other",62,"yes","no","no","no",5.19999980926514,9.96000003814697,2,1.4041600227356,17,"low","other"
"544","male","other",47.5099983215332,"no","no","yes","no",5.19999980926514,9.96000003814697,2,1.4041600227356,12,"low","other"
"545","male","other",52.3199996948242,"no","no","yes","no",5.19999980926514,9.96000003814697,2,1.4041600227356,13,"high","other"
"546","female","other",43.0999984741211,"no","no","yes","yes",12.1000003814697,9.96000003814697,0.5,1.4041600227356,14,"high","other"
"547","female","other",62.5699996948242,"no","no","yes","yes",12.1000003814697,9.96000003814697,0.5,1.4041600227356,15,"low","other"
"548","female","other",63.1699981689453,"no","no","no","yes",12.1000003814697,9.96000003814697,0.5,1.4041600227356,16,"low","other"
"549","male","other",66.3099975585938,"no","no","yes","yes",12.1000003814697,9.96000003814697,0.5,1.4041600227356,12,"low","other"
"550","female","other",50.8300018310547,"no","no","yes","yes",12.1000003814697,9.96000003814697,0.5,1.4041600227356,12,"low","other"
"551","female","other",55.1399993896484,"no","no","yes","yes",12.1000003814697,9.96000003814697,0.5,1.4041600227356,16,"high","other"
"552","female","afam",35.7000007629395,"no","no","no","yes",12.1000003814697,9.96000003814697,0.5,1.4041600227356,12,"low","other"
"553","male","other",54.3400001525879,"no","no","yes","yes",12.1000003814697,9.96000003814697,0.5,1.4041600227356,14,"high","other"
"554","female","other",53.2299995422363,"yes","yes","yes","yes",12.1000003814697,9.96000003814697,0.5,1.4041600227356,18,"high","other"
"555","female","other",42.9799995422363,"no","no","yes","yes",12.1000003814697,9.96000003814697,0.5,1.4041600227356,13,"high","other"
"556","female","other",61.8600006103516,"no","no","yes","no",6.59999990463257,9.96000003814697,0.800000011920929,1.4041600227356,16,"low","other"
"557","male","other",59.2900009155273,"no","no","yes","no",6.59999990463257,9.96000003814697,0.800000011920929,1.4041600227356,12,"low","other"
"558","male","other",54.8499984741211,"yes","no","yes","no",6.59999990463257,9.96000003814697,0.800000011920929,1.4041600227356,13,"high","other"
"559","male","other",44.0299987792969,"yes","yes","yes","no",6.59999990463257,9.96000003814697,0.800000011920929,1.4041600227356,12,"high","other"
"560","female","afam",42.3199996948242,"no","no","no","no",6.59999990463257,9.96000003814697,0.800000011920929,1.4041600227356,12,"low","other"
"561","female","other",37,"no","no","no","no",6.59999990463257,9.96000003814697,0.800000011920929,1.4041600227356,12,"low","other"
"562","male","other",48,"yes","no","yes","no",11,9.96000003814697,0.699999988079071,1.4041600227356,17,"low","other"
"563","male","hispanic",44.9599990844727,"no","no","yes","no",11,9.96000003814697,0.699999988079071,1.4041600227356,12,"low","other"
"564","male","other",55.7400016784668,"no","no","yes","no",11,9.96000003814697,0.699999988079071,1.4041600227356,17,"high","other"
"565","male","other",43.6599998474121,"no","no","yes","no",11,9.96000003814697,0.699999988079071,1.4041600227356,14,"low","other"
"566","male","other",38.8499984741211,"yes","no","yes","no",11,9.96000003814697,0.699999988079071,1.4041600227356,13,"low","other"
"567","male","afam",65.5100021362305,"yes","no","yes","no",11,9.96000003814697,0.699999988079071,1.4041600227356,16,"low","other"
"568","male","other",54.9599990844727,"yes","no","yes","no",6.90000009536743,9.96000003814697,2.20000004768372,1.4041600227356,17,"high","other"
"569","female","other",62.310001373291,"yes","no","yes","no",6.90000009536743,9.96000003814697,2.20000004768372,1.4041600227356,16,"low","other"
"570","female","hispanic",47.4700012207031,"yes","no","yes","no",6.90000009536743,9.96000003814697,2.20000004768372,1.4041600227356,12,"high","other"
"571","female","other",35.560001373291,"no","no","no","no",6.90000009536743,9.96000003814697,2.20000004768372,1.4041600227356,12,"low","other"
"572","male","other",64.9300003051758,"yes","yes","yes","no",6.90000009536743,9.96000003814697,2.20000004768372,1.4041600227356,17,"high","other"
"573","female","other",69.3199996948242,"no","no","yes","no",6.90000009536743,9.96000003814697,2.20000004768372,1.4041600227356,16,"low","other"
"574","male","other",50.8899993896484,"no","no","yes","no",6.90000009536743,9.96000003814697,2.20000004768372,1.4041600227356,12,"high","other"
"575","female","other",57.1599998474121,"no","no","yes","no",6.90000009536743,9.96000003814697,2.20000004768372,1.4041600227356,14,"low","other"
"576","male","other",55.0400009155273,"no","no","yes","no",9,9.96000003814697,1.20000004768372,1.4041600227356,12,"low","other"
"577","female","other",61.2900009155273,"no","no","yes","no",9,9.96000003814697,1.20000004768372,1.4041600227356,12,"low","other"
"578","female","other",65.0199966430664,"no","no","yes","no",9,9.96000003814697,1.20000004768372,1.4041600227356,12,"low","other"
"579","male","other",49.0299987792969,"no","no","yes","no",9,9.96000003814697,1.20000004768372,1.4041600227356,12,"low","other"
"580","male","other",52.7900009155273,"no","no","yes","no",9,9.96000003814697,1.20000004768372,1.4041600227356,12,"low","other"
"581","male","afam",41.7200012207031,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.200000002980232,1.4041600227356,14,"low","other"
"582","male","other",56.5800018310547,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.200000002980232,1.4041600227356,12,"high","other"
"583","male","afam",58.6500015258789,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.200000002980232,1.4041600227356,13,"low","other"
"584","male","afam",38.1199989318848,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.200000002980232,1.4041600227356,12,"low","other"
"585","male","afam",46.4199981689453,"no","no","no","yes",7.69999980926514,9.96000003814697,0.200000002980232,1.4041600227356,14,"low","other"
"586","male","afam",50.810001373291,"no","yes","yes","yes",7.69999980926514,9.96000003814697,0.200000002980232,1.4041600227356,14,"high","other"
"587","female","other",49.189998626709,"no","no","no","yes",7.69999980926514,9.96000003814697,0.200000002980232,1.4041600227356,15,"low","other"
"588","female","afam",38.5699996948242,"no","no","no","yes",7.69999980926514,9.96000003814697,0.200000002980232,1.4041600227356,12,"high","other"
"589","female","other",57.4300003051758,"no","no","yes","no",11.8999996185303,9.96000003814697,0.300000011920929,1.4041600227356,12,"low","other"
"590","male","other",61.2900009155273,"yes","yes","yes","no",11.8999996185303,9.96000003814697,0.300000011920929,1.4041600227356,15,"high","other"
"591","male","other",65.7900009155273,"no","no","no","no",11.8999996185303,9.96000003814697,0.300000011920929,1.4041600227356,14,"low","other"
"592","female","afam",59.4700012207031,"no","no","yes","no",11.8999996185303,9.96000003814697,0.300000011920929,1.4041600227356,15,"low","other"
"593","male","other",42.6399993896484,"no","no","yes","no",11.8999996185303,9.96000003814697,0.300000011920929,1.4041600227356,12,"low","other"
"594","male","other",41.4799995422363,"no","no","yes","no",8.19999980926514,9.96000003814697,1.20000004768372,1.4041600227356,12,"low","other"
"595","male","afam",40.9799995422363,"no","no","yes","no",8.19999980926514,9.96000003814697,1.20000004768372,1.4041600227356,12,"high","other"
"596","female","other",36.939998626709,"no","no","yes","no",8.19999980926514,9.96000003814697,1.20000004768372,1.4041600227356,12,"high","other"
"597","male","other",57.7999992370605,"no","no","yes","no",8.19999980926514,9.96000003814697,1.20000004768372,1.4041600227356,12,"low","other"
"598","female","other",56.189998626709,"no","no","yes","no",8.19999980926514,9.96000003814697,1.20000004768372,1.4041600227356,14,"low","other"
"599","male","other",60.5099983215332,"no","no","yes","no",8.19999980926514,9.96000003814697,1.20000004768372,1.4041600227356,15,"low","other"
"600","female","hispanic",34.1599998474121,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.200000002980232,1.4041600227356,12,"low","other"
"601","female","hispanic",43.3699989318848,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.200000002980232,1.4041600227356,13,"low","other"
"602","male","other",40.1500015258789,"no","no","yes","no",6.59999990463257,9.96000003814697,1.5,1.4041600227356,12,"high","other"
"603","male","other",35.7299995422363,"yes","yes","yes","no",6.59999990463257,9.96000003814697,1.5,1.4041600227356,12,"low","other"
"604","male","other",38.7299995422363,"no","no","yes","no",9.39999961853027,9.96000003814697,2,1.4041600227356,12,"low","other"
"605","male","other",47,"no","no","yes","no",9.39999961853027,9.96000003814697,2,1.4041600227356,12,"low","other"
"606","female","other",37.4099998474121,"no","no","yes","no",9.39999961853027,9.96000003814697,2,1.4041600227356,12,"low","other"
"607","male","other",64.4700012207031,"no","no","yes","no",9.39999961853027,9.96000003814697,2,1.4041600227356,13,"low","other"
"608","male","other",62.25,"no","no","yes","no",9.39999961853027,9.96000003814697,2,1.4041600227356,14,"low","other"
"609","male","other",48.7700004577637,"no","no","yes","no",9.39999961853027,9.96000003814697,2,1.4041600227356,12,"low","other"
"610","female","other",51.9000015258789,"no","no","yes","no",9.5,9.96000003814697,0.300000011920929,1.4041600227356,12,"low","other"
"611","male","other",64.7099990844727,"yes","yes","yes","no",9.5,9.96000003814697,0.300000011920929,1.4041600227356,15,"low","other"
"612","female","other",46.4500007629395,"yes","yes","no","no",9.5,9.96000003814697,0.300000011920929,1.4041600227356,14,"high","other"
"613","male","other",57.1800003051758,"no","no","yes","no",9.5,9.96000003814697,0.300000011920929,1.4041600227356,12,"low","other"
"614","male","other",43.7099990844727,"no","no","no","no",9.5,9.96000003814697,0.300000011920929,1.4041600227356,12,"low","other"
"615","male","other",58.2400016784668,"no","no","yes","no",9.5,9.96000003814697,0.300000011920929,1.4041600227356,12,"low","other"
"616","male","other",45.6199989318848,"no","no","yes","no",9.5,9.96000003814697,0.300000011920929,1.4041600227356,12,"high","other"
"617","female","other",61.1500015258789,"no","no","yes","no",6.59999990463257,9.96000003814697,0.400000005960464,1.4041600227356,13,"high","other"
"618","male","other",46.5800018310547,"no","no","yes","no",6.59999990463257,9.96000003814697,0.400000005960464,1.4041600227356,12,"low","other"
"619","female","other",50.4199981689453,"no","no","no","no",6.59999990463257,9.96000003814697,0.400000005960464,1.4041600227356,12,"low","other"
"620","female","other",36.0900001525879,"no","no","yes","no",6.59999990463257,9.96000003814697,0.400000005960464,1.4041600227356,12,"low","other"
"621","male","other",43.2799987792969,"no","no","yes","no",6.59999990463257,9.96000003814697,0.400000005960464,1.4041600227356,12,"low","other"
"622","male","other",35.0999984741211,"no","no","yes","no",7.5,9.96000003814697,0.200000002980232,1.4041600227356,12,"low","other"
"623","female","other",43.5800018310547,"no","yes","yes","no",7.5,9.96000003814697,0.200000002980232,1.4041600227356,14,"low","other"
"624","female","other",64.1699981689453,"yes","no","yes","no",7.5,9.96000003814697,0.200000002980232,1.4041600227356,15,"high","other"
"625","male","afam",41.1399993896484,"no","no","yes","no",7.5,9.96000003814697,0.200000002980232,1.4041600227356,12,"low","other"
"626","female","other",41.1100006103516,"yes","no","yes","no",7.5,9.96000003814697,0.200000002980232,1.4041600227356,12,"low","other"
"627","female","other",53.25,"no","no","yes","no",7.5,9.96000003814697,0.200000002980232,1.4041600227356,12,"low","other"
"628","female","other",49.2799987792969,"no","no","yes","no",7.5,9.96000003814697,0.200000002980232,1.4041600227356,13,"low","other"
"629","male","afam",38.9599990844727,"no","no","no","no",7.5,9.96000003814697,0.200000002980232,1.4041600227356,12,"low","other"
"630","male","other",62.6599998474121,"no","no","yes","no",7.5,9.96000003814697,0.200000002980232,1.4041600227356,16,"low","other"
"631","female","other",60.1699981689453,"no","no","yes","no",7.5,9.96000003814697,0.200000002980232,1.4041600227356,15,"low","other"
"632","male","other",40.9700012207031,"no","no","no","no",7.5,9.96000003814697,0.200000002980232,1.4041600227356,12,"low","other"
"633","male","other",48.0800018310547,"no","no","yes","no",8.69999980926514,9.96000003814697,2,1.4041600227356,12,"low","other"
"634","female","other",52.6100006103516,"no","no","yes","no",8.69999980926514,9.96000003814697,2,1.4041600227356,16,"high","other"
"635","female","other",56.4000015258789,"no","no","no","no",8.69999980926514,9.96000003814697,2,1.4041600227356,12,"low","other"
"636","female","other",58.0299987792969,"no","no","yes","no",8.69999980926514,9.96000003814697,2,1.4041600227356,18,"low","other"
"637","female","other",51.0999984741211,"yes","no","yes","no",8.69999980926514,9.96000003814697,2,1.4041600227356,13,"low","other"
"638","male","other",65.7900009155273,"no","no","yes","no",8.69999980926514,9.96000003814697,2,1.4041600227356,12,"low","other"
"639","female","other",34.4000015258789,"no","no","yes","no",8.69999980926514,9.96000003814697,2,1.4041600227356,13,"high","other"
"640","male","other",61.2200012207031,"no","no","yes","no",8.69999980926514,9.96000003814697,2,1.4041600227356,17,"low","other"
"641","female","other",54.310001373291,"no","no","yes","no",8.69999980926514,9.96000003814697,2,1.4041600227356,16,"low","other"
"642","male","other",61.810001373291,"no","no","yes","no",8.69999980926514,9.96000003814697,2,1.4041600227356,16,"low","other"
"643","male","other",64.870002746582,"yes","no","yes","no",8.69999980926514,9.96000003814697,2,1.4041600227356,17,"high","other"
"644","female","other",45.8499984741211,"no","no","yes","no",6.59999990463257,9.96000003814697,0.5,1.4041600227356,12,"high","other"
"645","male","afam",50.3400001525879,"yes","no","yes","no",6.59999990463257,9.96000003814697,0.5,1.4041600227356,16,"high","other"
"646","male","afam",38.2200012207031,"no","no","yes","no",6.59999990463257,9.96000003814697,0.5,1.4041600227356,13,"low","other"
"647","female","other",54.939998626709,"no","no","yes","no",6.59999990463257,9.96000003814697,0.5,1.4041600227356,12,"low","other"
"648","male","other",42.1300010681152,"no","no","no","no",10.1999998092651,9.96000003814697,3,1.4041600227356,12,"low","other"
"649","male","other",61.689998626709,"no","no","no","no",10.1999998092651,9.96000003814697,3,1.4041600227356,16,"low","other"
"650","female","other",64.5299987792969,"no","no","yes","no",10.1999998092651,9.96000003814697,3,1.4041600227356,12,"low","other"
"651","male","other",47.310001373291,"no","no","yes","no",10.1999998092651,9.96000003814697,3,1.4041600227356,12,"low","other"
"652","male","other",40.2299995422363,"no","no","yes","no",10.1999998092651,9.96000003814697,3,1.4041600227356,16,"low","other"
"653","female","other",58.9199981689453,"no","no","yes","no",10.1999998092651,9.96000003814697,3,1.4041600227356,12,"low","other"
"654","female","other",52.939998626709,"yes","no","yes","no",6.59999990463257,9.96000003814697,1.5,1.4041600227356,12,"low","other"
"655","male","other",52.5900001525879,"no","no","yes","no",6.59999990463257,9.96000003814697,1.5,1.4041600227356,12,"high","other"
"656","female","other",48.8600006103516,"no","no","yes","no",6.59999990463257,9.96000003814697,1.5,1.4041600227356,15,"high","other"
"657","male","other",66.6699981689453,"no","no","yes","no",6.59999990463257,9.96000003814697,1.5,1.4041600227356,14,"high","other"
"658","female","other",45.9700012207031,"no","no","yes","no",13.3999996185303,9.96000003814697,7.5,1.4041600227356,12,"high","other"
"659","female","other",59.0099983215332,"no","no","yes","no",13.3999996185303,9.96000003814697,7.5,1.4041600227356,13,"low","other"
"660","female","other",41.0200004577637,"no","no","yes","no",13.3999996185303,9.96000003814697,7.5,1.4041600227356,12,"low","other"
"661","male","other",58.7700004577637,"no","no","yes","no",8.89999961853027,9.96000003814697,4,1.4041600227356,15,"low","other"
"662","female","other",48.5499992370605,"no","no","yes","no",8.89999961853027,9.96000003814697,4,1.4041600227356,12,"high","other"
"663","female","other",40.0099983215332,"no","no","yes","no",8.89999961853027,9.96000003814697,4,1.4041600227356,12,"low","other"
"664","female","other",59.1500015258789,"no","no","yes","no",8.89999961853027,9.96000003814697,4,1.4041600227356,12,"low","other"
"665","male","other",41.5400009155273,"no","no","yes","no",8.89999961853027,9.96000003814697,4,1.4041600227356,12,"low","other"
"666","male","other",54.3699989318848,"no","no","yes","no",8.89999961853027,9.96000003814697,3.79999995231628,1.4041600227356,16,"low","other"
"667","female","other",60.9000015258789,"no","no","yes","no",8.89999961853027,9.96000003814697,3.79999995231628,1.4041600227356,12,"low","other"
"668","female","other",35.7299995422363,"no","no","yes","no",8.89999961853027,9.96000003814697,3.79999995231628,1.4041600227356,12,"low","other"
"669","male","other",43.4500007629395,"yes","yes","yes","no",8.89999961853027,9.96000003814697,3.79999995231628,1.4041600227356,15,"high","other"
"670","male","other",65.4100036621094,"yes","yes","yes","no",8.89999961853027,9.96000003814697,3.79999995231628,1.4041600227356,16,"low","other"
"671","male","other",51.560001373291,"no","no","yes","no",8.89999961853027,9.96000003814697,3.79999995231628,1.4041600227356,15,"high","other"
"672","male","other",56.2400016784668,"no","no","yes","no",8.89999961853027,9.96000003814697,3.79999995231628,1.4041600227356,15,"low","other"
"673","female","other",60.6199989318848,"no","yes","yes","no",5.90000009536743,9.96000003814697,1,1.4041600227356,13,"high","other"
"674","female","afam",57.9000015258789,"no","no","yes","no",5.90000009536743,9.96000003814697,1,1.4041600227356,12,"high","other"
"675","male","afam",50.5299987792969,"no","no","yes","no",5.90000009536743,9.96000003814697,1,1.4041600227356,13,"high","other"
"676","female","other",54.6399993896484,"no","no","yes","no",5.90000009536743,9.96000003814697,1,1.4041600227356,16,"low","other"
"677","female","afam",52.7999992370605,"no","no","yes","no",5.90000009536743,9.96000003814697,1,1.4041600227356,14,"high","other"
"678","female","afam",44.7400016784668,"yes","yes","yes","no",5.90000009536743,9.96000003814697,1,1.4041600227356,17,"high","other"
"679","female","other",60,"no","no","yes","no",5.90000009536743,9.96000003814697,1,1.4041600227356,17,"low","other"
"680","female","other",36.7900009155273,"no","no","yes","no",7.09999990463257,9.96000003814697,1.5,1.4041600227356,12,"low","other"
"681","male","other",41.5900001525879,"no","no","yes","no",7.09999990463257,9.96000003814697,1.5,1.4041600227356,12,"low","other"
"682","male","other",46.5299987792969,"no","no","yes","no",7.09999990463257,9.96000003814697,1.5,1.4041600227356,12,"low","other"
"683","male","other",44.1500015258789,"no","no","yes","no",7.09999990463257,9.96000003814697,1.5,1.4041600227356,12,"low","other"
"684","female","other",38.7900009155273,"no","no","yes","no",7.09999990463257,9.96000003814697,1.5,1.4041600227356,12,"high","other"
"685","female","other",58.9500007629395,"no","no","yes","no",7.09999990463257,9.96000003814697,1.5,1.4041600227356,12,"low","other"
"686","female","other",64.3300018310547,"no","no","yes","no",7.09999990463257,9.96000003814697,1.5,1.4041600227356,15,"low","other"
"687","female","other",65.3399963378906,"no","no","yes","no",11.8999996185303,9.96000003814697,2.5,1.4041600227356,15,"low","other"
"688","male","other",48.9599990844727,"yes","yes","yes","no",11.8999996185303,9.96000003814697,2.5,1.4041600227356,13,"high","other"
"689","female","other",59.6300010681152,"no","no","yes","no",11.8999996185303,9.96000003814697,2.5,1.4041600227356,12,"low","other"
"690","female","other",40.4900016784668,"no","no","yes","no",11.8999996185303,9.96000003814697,2.5,1.4041600227356,12,"low","other"
"691","female","other",57.9799995422363,"no","no","yes","no",11.8999996185303,9.96000003814697,2.5,1.4041600227356,12,"high","other"
"692","female","other",44.1100006103516,"no","no","yes","no",11.8999996185303,9.96000003814697,2.5,1.4041600227356,12,"low","other"
"693","female","other",47.439998626709,"no","no","no","no",11.8999996185303,9.96000003814697,2.5,1.4041600227356,12,"low","other"
"694","male","afam",54.939998626709,"no","no","yes","no",11.8999996185303,9.96000003814697,2.5,1.4041600227356,12,"low","other"
"695","male","afam",45.3400001525879,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"696","female","afam",36.189998626709,"no","no","no","yes",7.69999980926514,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"697","male","afam",55.8499984741211,"no","no","no","yes",7.69999980926514,9.96000003814697,0.100000001490116,1.4041600227356,13,"low","other"
"698","female","afam",43.1599998474121,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"699","female","afam",34.2000007629395,"no","yes","yes","yes",7.69999980926514,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"700","female","other",39.1500015258789,"yes","yes","no","no",6.59999990463257,9.96000003814697,1,1.4041600227356,12,"low","other"
"701","female","other",47.439998626709,"no","no","yes","no",6.59999990463257,9.96000003814697,1,1.4041600227356,15,"high","other"
"702","female","other",56.5200004577637,"yes","yes","yes","no",6.59999990463257,9.96000003814697,1,1.4041600227356,15,"high","other"
"703","male","afam",45.939998626709,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.5,1.4041600227356,14,"low","other"
"704","female","other",55.4799995422363,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.5,1.4041600227356,17,"low","other"
"705","female","afam",41.6800003051758,"yes","no","yes","yes",7.69999980926514,9.96000003814697,0.5,1.4041600227356,17,"high","other"
"706","male","afam",49.5099983215332,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.5,1.4041600227356,12,"low","other"
"707","female","other",57.5699996948242,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.5,1.4041600227356,12,"low","other"
"708","female","hispanic",59.5499992370605,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.5,1.4041600227356,17,"low","other"
"709","female","afam",49.4700012207031,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.5,1.4041600227356,12,"high","other"
"710","male","other",60.2400016784668,"no","no","yes","yes",7.69999980926514,9.96000003814697,0.5,1.4041600227356,16,"low","other"
"711","male","other",62.6300010681152,"no","no","yes","yes",6.59999990463257,9.96000003814697,0.300000011920929,1.4041600227356,15,"low","other"
"712","female","other",51.6300010681152,"yes","no","yes","yes",6.59999990463257,9.96000003814697,0.300000011920929,1.4041600227356,15,"low","other"
"713","female","afam",36.0200004577637,"no","no","no","yes",6.59999990463257,9.96000003814697,0.300000011920929,1.4041600227356,13,"low","other"
"714","male","other",67.5199966430664,"no","no","yes","no",11.3000001907349,9.96000003814697,5,1.4041600227356,15,"low","other"
"715","male","other",54.1199989318848,"no","no","yes","no",11.3000001907349,9.96000003814697,5,1.4041600227356,12,"low","other"
"716","male","other",55.5299987792969,"no","no","yes","no",11.3000001907349,9.96000003814697,5,1.4041600227356,16,"low","other"
"717","female","other",54.9199981689453,"no","yes","yes","no",11.3000001907349,9.96000003814697,5,1.4041600227356,15,"high","other"
"718","female","other",48.5400009155273,"no","no","yes","no",11.3000001907349,9.96000003814697,5,1.4041600227356,12,"low","other"
"719","female","other",58.3400001525879,"no","no","yes","no",11.3000001907349,9.96000003814697,5,1.4041600227356,17,"low","other"
"720","female","other",49.8899993896484,"no","no","yes","no",11.3000001907349,9.96000003814697,5,1.4041600227356,12,"low","other"
"721","female","other",48.8300018310547,"no","no","yes","no",11.3000001907349,9.96000003814697,5,1.4041600227356,12,"low","other"
"722","male","other",42.6500015258789,"no","no","no","no",8.10000038146973,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"723","female","other",60.4900016784668,"no","no","no","no",8.10000038146973,9.96000003814697,0.100000001490116,1.4041600227356,14,"low","other"
"724","male","other",46.6599998474121,"no","no","yes","no",8.10000038146973,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"725","male","other",55.4700012207031,"no","no","yes","no",8.10000038146973,9.96000003814697,0.100000001490116,1.4041600227356,13,"high","other"
"726","male","hispanic",38.4300003051758,"yes","yes","yes","no",8.10000038146973,9.96000003814697,0.100000001490116,1.4041600227356,12,"high","other"
"727","female","other",62.8699989318848,"no","no","yes","no",8.10000038146973,9.96000003814697,0.100000001490116,1.4041600227356,15,"low","other"
"728","female","other",40.7700004577637,"no","no","yes","no",8.10000038146973,9.96000003814697,0.100000001490116,1.4041600227356,12,"low","other"
"729","female","other",64.6699981689453,"no","no","yes","no",8.10000038146973,9.96000003814697,0.100000001490116,1.4041600227356,15,"low","other"
"730","female","other",51.560001373291,"no","no","no","no",3.40000009536743,7.53999996185303,7,0.818710029125214,17,"high","other"
"731","female","other",61.7599983215332,"yes","no","yes","no",3.40000009536743,7.53999996185303,7,0.818710029125214,16,"high","other"
"732","male","afam",47.3899993896484,"no","yes","yes","no",3.40000009536743,7.53999996185303,7,0.818710029125214,15,"low","other"
"733","female","other",49.5900001525879,"no","no","yes","no",3.40000009536743,7.53999996185303,7,0.818710029125214,12,"high","other"
"734","male","afam",43.7999992370605,"no","no","yes","no",5.5,7.53999996185303,0.100000001490116,0.818710029125214,12,"low","other"
"735","female","afam",41.810001373291,"no","no","yes","no",5.5,7.53999996185303,0.100000001490116,0.818710029125214,15,"low","other"
"736","male","other",55.9000015258789,"no","no","no","no",5.5,7.53999996185303,0.100000001490116,0.818710029125214,13,"low","other"
"737","female","afam",43,"no","no","no","no",5.5,7.53999996185303,0.100000001490116,0.818710029125214,12,"low","other"
"738","female","other",45.8499984741211,"no","no","yes","no",5.59999990463257,7.53999996185303,0.600000023841858,0.818710029125214,12,"low","other"
"739","male","other",47.0900001525879,"no","no","yes","no",5.59999990463257,7.53999996185303,0.600000023841858,0.818710029125214,13,"high","other"
"740","male","other",50.6800003051758,"no","no","yes","no",5.59999990463257,7.53999996185303,0.600000023841858,0.818710029125214,12,"low","other"
"741","female","other",61.2299995422363,"no","no","yes","no",5.59999990463257,7.53999996185303,0.600000023841858,0.818710029125214,12,"low","other"
"742","female","other",43.8699989318848,"no","no","yes","no",5.59999990463257,7.53999996185303,0.600000023841858,0.818710029125214,12,"high","other"
"743","male","hispanic",54.4000015258789,"no","no","yes","yes",5,7.53999996185303,0.200000002980232,0.818710029125214,12,"low","other"
"744","female","other",43.2299995422363,"no","no","yes","yes",5,7.53999996185303,0.200000002980232,0.818710029125214,12,"low","other"
"745","female","other",36.1599998474121,"no","no","yes","yes",5,7.53999996185303,0.200000002980232,0.818710029125214,12,"low","other"
"746","male","other",59.6399993896484,"no","no","yes","no",5.5,7.34999990463257,1.79999995231628,0.751729965209961,13,"low","other"
"747","female","other",37.9799995422363,"no","no","yes","no",5.5,7.34999990463257,1.79999995231628,0.751729965209961,12,"low","other"
"748","male","other",34.6399993896484,"no","no","yes","no",5.5,7.34999990463257,1.79999995231628,0.751729965209961,12,"low","other"
"749","female","other",62.2299995422363,"no","no","yes","no",5.5,7.34999990463257,1.79999995231628,0.751729965209961,12,"low","other"
"750","male","other",52.5900001525879,"no","no","no","no",5.5,7.34999990463257,1.79999995231628,0.751729965209961,12,"low","other"
"751","male","afam",34.5299987792969,"no","no","yes","no",5.5,7.34999990463257,1.79999995231628,0.751729965209961,12,"low","other"
"752","male","other",42.4300003051758,"yes","no","no","no",4.19999980926514,9.68000030517578,0.100000001490116,1.09353005886078,15,"high","other"
"753","female","afam",61.7700004577637,"no","no","no","no",4.19999980926514,9.68000030517578,0.100000001490116,1.09353005886078,12,"low","other"
"754","female","other",48.4599990844727,"no","no","yes","no",4.19999980926514,9.68000030517578,0.100000001490116,1.09353005886078,14,"low","other"
"755","female","other",61.060001373291,"yes","yes","yes","no",4.19999980926514,9.68000030517578,0.100000001490116,1.09353005886078,14,"low","other"
"756","male","afam",43.1599998474121,"no","no","no","no",4.19999980926514,9.68000030517578,0.100000001490116,1.09353005886078,13,"low","other"
"757","male","other",47.3300018310547,"no","no","yes","no",4.19999980926514,9.68000030517578,0.100000001490116,1.09353005886078,12,"low","other"
"758","female","hispanic",47.5499992370605,"yes","no","yes","no",4.19999980926514,9.68000030517578,0.100000001490116,1.09353005886078,14,"low","other"
"759","male","other",55.9300003051758,"no","no","no","no",4.19999980926514,9.68000030517578,0.100000001490116,1.09353005886078,12,"low","other"
"760","female","afam",39.3199996948242,"no","no","yes","no",4.19999980926514,9.68000030517578,0.100000001490116,1.09353005886078,14,"high","other"
"761","male","other",59.4799995422363,"yes","yes","yes","no",5.30000019073486,7.53999996185303,0.5,0.818710029125214,12,"high","other"
"762","male","other",43.5400009155273,"no","no","yes","no",5.30000019073486,7.53999996185303,0.5,0.818710029125214,15,"low","other"
"763","female","other",54.3300018310547,"yes","yes","yes","no",5.30000019073486,7.53999996185303,0.5,0.818710029125214,14,"low","other"
"764","female","other",51.25,"no","no","yes","no",5.30000019073486,7.53999996185303,0.5,0.818710029125214,14,"low","other"
"765","male","other",37.9099998474121,"no","no","yes","yes",5,7.53999996185303,0.400000005960464,0.818710029125214,12,"low","other"
"766","male","other",46.7700004577637,"no","yes","yes","yes",5,7.53999996185303,0.400000005960464,0.818710029125214,12,"low","other"
"767","female","afam",38.5699996948242,"no","yes","no","no",4.19999980926514,9.68000030517578,0.5,1.09353005886078,12,"high","other"
"768","male","other",64.0100021362305,"yes","no","yes","no",4.19999980926514,9.68000030517578,0.5,1.09353005886078,15,"high","other"
"769","female","hispanic",40.4799995422363,"no","no","no","no",4.19999980926514,9.68000030517578,0.5,1.09353005886078,14,"low","other"
"770","female","afam",58.189998626709,"no","no","no","no",4.19999980926514,9.68000030517578,0.5,1.09353005886078,14,"low","other"
"771","female","other",52.9799995422363,"yes","yes","yes","no",4.19999980926514,9.68000030517578,0.5,1.09353005886078,15,"low","other"
"772","male","afam",48.8199996948242,"no","no","yes","no",4.19999980926514,9.68000030517578,0.5,1.09353005886078,13,"high","other"
"773","female","afam",52.560001373291,"no","no","yes","no",4.19999980926514,9.68000030517578,0.5,1.09353005886078,16,"high","other"
"774","male","afam",55.1100006103516,"yes","no","yes","no",4.19999980926514,9.68000030517578,0.5,1.09353005886078,15,"high","other"
"775","female","afam",42.5699996948242,"no","no","yes","no",4.19999980926514,9.68000030517578,0.5,1.09353005886078,12,"low","other"
"776","female","other",51.4900016784668,"no","no","yes","no",5.30000019073486,7.53999996185303,0.5,0.818710029125214,12,"low","other"
"777","male","other",54.3800010681152,"yes","no","yes","no",5.30000019073486,7.53999996185303,0.5,0.818710029125214,12,"low","other"
"778","male","other",43.7000007629395,"no","no","yes","no",5.30000019073486,7.53999996185303,0.5,0.818710029125214,13,"low","other"
"779","male","other",63.9500007629395,"no","no","no","no",5.30000019073486,9.68000030517578,1.20000004768372,1.09353005886078,16,"low","other"
"780","female","other",53.3400001525879,"yes","no","yes","no",5.30000019073486,9.68000030517578,1.20000004768372,1.09353005886078,15,"high","other"
"781","male","other",51.3600006103516,"no","no","yes","no",5.30000019073486,9.68000030517578,1.20000004768372,1.09353005886078,14,"low","other"
"782","female","other",53.6699981689453,"no","no","no","no",5.30000019073486,9.68000030517578,1.20000004768372,1.09353005886078,12,"low","other"
"783","male","other",36.2599983215332,"no","yes","yes","no",5.30000019073486,9.68000030517578,1.20000004768372,1.09353005886078,12,"low","other"
"784","female","other",46.939998626709,"no","no","yes","no",5.30000019073486,9.68000030517578,1.20000004768372,1.09353005886078,15,"low","other"
"785","male","other",48.6100006103516,"no","no","no","no",5.30000019073486,9.68000030517578,1.20000004768372,1.09353005886078,12,"low","other"
"786","male","afam",56.3899993896484,"no","no","yes","no",5.30000019073486,9.68000030517578,1.20000004768372,1.09353005886078,14,"low","other"
"787","female","other",49.810001373291,"no","no","yes","no",5.30000019073486,9.68000030517578,1.20000004768372,1.09353005886078,12,"low","other"
"788","male","other",62.3899993896484,"yes","yes","yes","no",3,9.68000030517578,1.5,1.09353005886078,16,"high","other"
"789","male","other",60.4000015258789,"no","no","yes","no",3,9.68000030517578,1.5,1.09353005886078,13,"low","other"
"790","male","other",61.7200012207031,"yes","no","yes","no",3,9.68000030517578,1.5,1.09353005886078,13,"high","other"
"791","female","other",53.7200012207031,"yes","no","yes","no",3,9.68000030517578,1.5,1.09353005886078,15,"high","other"
"792","male","hispanic",49.3800010681152,"no","no","yes","no",3,9.68000030517578,1.5,1.09353005886078,12,"high","other"
"793","female","afam",57.0999984741211,"yes","yes","yes","no",3,9.68000030517578,1.5,1.09353005886078,16,"high","other"
"794","female","other",50.060001373291,"yes","no","yes","no",3,9.68000030517578,1.5,1.09353005886078,14,"high","other"
"795","female","other",59.7599983215332,"yes","no","yes","no",3,9.68000030517578,1.5,1.09353005886078,16,"low","other"
"796","male","other",53.1599998474121,"yes","yes","yes","no",3,9.68000030517578,1.5,1.09353005886078,13,"low","other"
"797","female","other",38.9000015258789,"no","no","yes","no",3,9.68000030517578,1.5,1.09353005886078,15,"low","other"
"798","female","other",52.3199996948242,"no","yes","yes","no",3,9.68000030517578,1.5,1.09353005886078,16,"high","other"
"799","male","other",52.6100006103516,"yes","yes","yes","no",5.59999990463257,7.53999996185303,5,0.818710029125214,14,"high","other"
"800","female","other",63.7599983215332,"no","no","yes","no",4.59999990463257,7.34999990463257,0.699999988079071,0.751729965209961,12,"high","other"
"801","female","other",64.8199996948242,"no","no","yes","no",4.59999990463257,7.34999990463257,0.699999988079071,0.751729965209961,17,"low","other"
"802","male","other",48.75,"no","no","yes","no",4.59999990463257,7.34999990463257,0.699999988079071,0.751729965209961,12,"high","other"
"803","female","other",57.0200004577637,"no","no","yes","no",4.59999990463257,7.34999990463257,0.699999988079071,0.751729965209961,16,"high","other"
"804","female","other",53.0200004577637,"no","no","yes","no",2.5,7.17999982833862,2,1.16513001918793,12,"low","other"
"805","female","other",55.939998626709,"yes","yes","yes","no",2.5,7.17999982833862,2,1.16513001918793,13,"high","other"
"806","female","other",58.5900001525879,"yes","yes","yes","no",2.5,7.17999982833862,2,1.16513001918793,16,"high","other"
"807","male","other",66.370002746582,"yes","yes","yes","no",2.5,7.17999982833862,2,1.16513001918793,14,"high","other"
"808","female","other",52.810001373291,"no","no","yes","no",2.5,7.17999982833862,2,1.16513001918793,14,"low","other"
"809","female","other",46.8499984741211,"no","no","yes","no",4,7.53999996185303,2,0.818710029125214,13,"low","other"
"810","female","other",59.810001373291,"yes","no","no","no",4,7.53999996185303,2,0.818710029125214,16,"high","other"
"811","male","other",45.25,"yes","no","yes","no",4,7.53999996185303,2,0.818710029125214,17,"low","other"
"812","female","hispanic",32.0999984741211,"no","no","no","no",4,7.53999996185303,2,0.818710029125214,12,"low","other"
"813","male","other",52.5299987792969,"no","no","yes","no",4,7.53999996185303,2,0.818710029125214,12,"low","other"
"814","female","hispanic",56.8199996948242,"no","no","yes","no",4,7.53999996185303,2,0.818710029125214,15,"low","other"
"815","male","afam",58.2200012207031,"no","no","yes","no",4,7.53999996185303,2,0.818710029125214,13,"low","other"
"816","male","other",55.7799987792969,"no","no","no","no",5.09999990463257,7.34999990463257,0.300000011920929,0.751729965209961,12,"low","other"
"817","female","other",47.3499984741211,"no","yes","yes","no",4,7.53999996185303,0.100000001490116,0.818710029125214,17,"high","other"
"818","female","other",59.9900016784668,"no","no","yes","no",4,7.53999996185303,0.100000001490116,0.818710029125214,16,"low","other"
"819","female","afam",55.8499984741211,"no","no","yes","no",4,7.53999996185303,0.100000001490116,0.818710029125214,17,"low","other"
"820","male","other",62.4300003051758,"no","no","yes","no",4,7.53999996185303,0.100000001490116,0.818710029125214,12,"low","other"
"821","female","hispanic",58.7299995422363,"no","no","yes","no",2.5,7.17999982833862,1.5,1.16513001918793,15,"high","other"
"822","male","other",62.7200012207031,"yes","yes","yes","no",2.5,7.17999982833862,1.5,1.16513001918793,12,"high","other"
"823","female","other",55.810001373291,"no","no","yes","no",2.5,7.17999982833862,1.5,1.16513001918793,12,"low","other"
"824","female","hispanic",54.0699996948242,"yes","yes","no","no",2.5,7.17999982833862,1.5,1.16513001918793,16,"high","other"
"825","female","afam",40.25,"no","no","no","no",4.19999980926514,9.68000030517578,1,1.09353005886078,12,"low","other"
"826","female","other",59.0200004577637,"no","no","no","no",4.19999980926514,9.68000030517578,1,1.09353005886078,15,"high","other"
"827","male","other",41.7400016784668,"no","no","yes","no",4.19999980926514,9.68000030517578,1,1.09353005886078,12,"low","other"
"828","male","other",45.8600006103516,"yes","no","yes","no",4.19999980926514,9.68000030517578,1,1.09353005886078,13,"high","other"
"829","male","other",67.75,"yes","no","yes","no",4.19999980926514,9.68000030517578,1,1.09353005886078,16,"high","other"
"830","female","other",49.7299995422363,"no","no","yes","no",4.19999980926514,9.68000030517578,1,1.09353005886078,12,"high","other"
"831","male","other",44.4599990844727,"yes","no","yes","no",4.19999980926514,9.68000030517578,1,1.09353005886078,12,"low","other"
"832","female","other",45.2000007629395,"no","no","yes","no",4.19999980926514,9.68000030517578,1,1.09353005886078,12,"low","other"
"833","female","other",41.5200004577637,"no","no","yes","no",4.19999980926514,9.68000030517578,1,1.09353005886078,12,"low","other"
"834","female","other",64.75,"no","no","yes","no",6.30000019073486,9.68000030517578,1.89999997615814,1.09353005886078,16,"low","other"
"835","female","afam",41.9599990844727,"no","no","no","no",6.30000019073486,9.68000030517578,1.89999997615814,1.09353005886078,12,"low","other"
"836","female","other",44.2400016784668,"no","no","no","no",6.30000019073486,9.68000030517578,1.89999997615814,1.09353005886078,13,"low","other"
"837","male","other",54.0299987792969,"no","no","yes","no",6.30000019073486,9.68000030517578,1.89999997615814,1.09353005886078,12,"low","other"
"838","female","other",44.7799987792969,"no","no","yes","no",8.30000019073486,7.53999996185303,3.79999995231628,0.818710029125214,12,"low","other"
"839","female","afam",43.2299995422363,"no","no","yes","no",8.30000019073486,7.53999996185303,3.79999995231628,0.818710029125214,12,"low","other"
"840","male","other",51.5699996948242,"no","no","yes","no",8.30000019073486,7.53999996185303,3.79999995231628,0.818710029125214,12,"low","other"
"841","male","afam",40.8199996948242,"no","no","yes","no",8.30000019073486,7.53999996185303,3.79999995231628,0.818710029125214,13,"low","other"
"842","male","afam",33.9500007629395,"no","no","yes","no",6.80000019073486,7.32999992370605,2.5,0.655889987945557,12,"low","other"
"843","male","afam",37.25,"no","no","no","no",6.80000019073486,7.32999992370605,2.5,0.655889987945557,12,"low","other"
"844","male","other",43.6800003051758,"no","no","yes","no",6.80000019073486,7.32999992370605,2.5,0.655889987945557,12,"low","other"
"845","male","other",57.3699989318848,"yes","no","yes","no",6.80000019073486,7.32999992370605,2.5,0.655889987945557,13,"low","other"
"846","male","other",50.1500015258789,"no","no","no","no",6.80000019073486,7.32999992370605,2.5,0.655889987945557,12,"low","other"
"847","female","other",51.6599998474121,"no","no","yes","no",14.1999998092651,10.1499996185303,3,0.434179991483688,12,"low","other"
"848","female","other",50.1699981689453,"no","no","yes","no",14.1999998092651,10.1499996185303,3,0.434179991483688,13,"low","other"
"849","female","other",49.5200004577637,"no","no","no","no",14.1999998092651,10.1499996185303,3,0.434179991483688,14,"low","other"
"850","female","other",68.9599990844727,"no","no","no","no",14.1999998092651,10.1499996185303,3,0.434179991483688,15,"low","other"
"851","female","other",61.3800010681152,"no","no","yes","no",14.1999998092651,10.1499996185303,3,0.434179991483688,12,"low","other"
"852","female","other",56.3400001525879,"no","no","yes","no",14.1999998092651,10.1499996185303,3,0.434179991483688,15,"low","other"
"853","female","other",38.75,"no","no","yes","no",14.1999998092651,10.1499996185303,3,0.434179991483688,12,"low","other"
"854","female","other",61.3199996948242,"no","no","no","no",14.1999998092651,10.1499996185303,3,0.434179991483688,16,"low","other"
"855","female","other",50.6699981689453,"no","no","no","no",4.5,7.32999992370605,2.5,0.655889987945557,12,"high","other"
"856","female","other",44.1399993896484,"no","yes","no","no",4.5,7.32999992370605,2.5,0.655889987945557,12,"low","other"
"857","female","other",46.0900001525879,"no","no","yes","no",4.5,7.32999992370605,2.5,0.655889987945557,12,"low","other"
"858","male","other",59.560001373291,"no","no","yes","no",4.5,7.32999992370605,2.5,0.655889987945557,13,"low","other"
"859","female","other",45.5200004577637,"no","yes","yes","no",4.5,7.32999992370605,2.5,0.655889987945557,13,"low","other"
"860","male","afam",54.0299987792969,"no","no","yes","no",7.19999980926514,7.32999992370605,5,0.655889987945557,16,"low","other"
"861","female","other",50.310001373291,"no","no","yes","no",7.19999980926514,7.32999992370605,5,0.655889987945557,13,"low","other"
"862","male","afam",35.7700004577637,"no","no","no","no",7.19999980926514,7.32999992370605,5,0.655889987945557,13,"low","other"
"863","male","other",55.1199989318848,"no","no","yes","no",7.19999980926514,7.32999992370605,5,0.655889987945557,12,"low","other"
"864","male","other",44.5699996948242,"no","no","yes","no",7.19999980926514,7.32999992370605,5,0.655889987945557,12,"low","other"
"865","male","other",58.0499992370605,"no","no","no","no",7.19999980926514,7.32999992370605,5,0.655889987945557,12,"low","other"
"866","male","afam",38.810001373291,"no","no","yes","no",7.19999980926514,7.32999992370605,5,0.655889987945557,12,"low","other"
"867","male","afam",34.2400016784668,"no","no","yes","no",7.19999980926514,7.32999992370605,5,0.655889987945557,12,"low","other"
"868","male","afam",38.560001373291,"no","no","yes","no",7.19999980926514,7.32999992370605,5,0.655889987945557,12,"low","other"
"869","female","other",42.5800018310547,"no","no","yes","no",7.19999980926514,7.32999992370605,5,0.655889987945557,12,"low","other"
"870","male","hispanic",40.1800003051758,"no","no","yes","no",7.19999980926514,7.32999992370605,5,0.655889987945557,12,"high","other"
"871","female","other",64.9300003051758,"no","no","yes","no",7.19999980926514,7.32999992370605,5,0.655889987945557,16,"high","other"
"872","male","other",47.3199996948242,"no","no","no","no",7.19999980926514,7.32999992370605,5,0.655889987945557,12,"low","other"
"873","female","other",55.2000007629395,"no","no","yes","no",6.69999980926514,7.17999982833862,0.5,1.16513001918793,12,"high","other"
"874","female","other",40.9000015258789,"no","no","no","no",6.69999980926514,7.17999982833862,0.5,1.16513001918793,12,"low","other"
"875","male","other",65.5100021362305,"no","no","yes","no",6.69999980926514,7.17999982833862,0.5,1.16513001918793,15,"low","other"
"876","female","other",59.8600006103516,"no","no","yes","no",6.69999980926514,7.17999982833862,0.5,1.16513001918793,12,"low","other"
"877","male","other",38.1599998474121,"no","no","yes","no",6.69999980926514,7.17999982833862,0.5,1.16513001918793,15,"high","other"
"878","female","other",41.810001373291,"no","no","yes","no",12.6000003814697,10.1499996185303,6.5,0.434179991483688,14,"high","other"
"879","female","other",44.7099990844727,"no","no","yes","no",12.6000003814697,10.1499996185303,6.5,0.434179991483688,16,"high","other"
"880","female","other",45.3800010681152,"no","no","yes","no",12.6000003814697,10.1499996185303,6.5,0.434179991483688,15,"low","other"
"881","female","other",32.1399993896484,"no","no","yes","no",12.6000003814697,10.1499996185303,6.5,0.434179991483688,12,"low","other"
"882","male","hispanic",37.8899993896484,"no","no","yes","no",12.6000003814697,10.1499996185303,6.5,0.434179991483688,12,"low","other"
"883","female","other",59.4000015258789,"no","no","yes","no",7.19999980926514,7.17999982833862,3.59999990463257,1.16513001918793,15,"low","other"
"884","female","other",55.3800010681152,"no","no","yes","no",7.19999980926514,7.17999982833862,3.59999990463257,1.16513001918793,13,"low","other"
"885","female","other",41.8899993896484,"no","no","no","no",7.19999980926514,7.17999982833862,3.59999990463257,1.16513001918793,12,"low","other"
"886","male","other",36.0999984741211,"no","no","yes","no",7.19999980926514,7.17999982833862,3.59999990463257,1.16513001918793,12,"low","other"
"887","male","other",67.1900024414062,"yes","yes","yes","no",7.19999980926514,7.17999982833862,3.59999990463257,1.16513001918793,16,"high","other"
"888","female","afam",40.3499984741211,"no","no","yes","no",7.19999980926514,7.17999982833862,3.59999990463257,1.16513001918793,14,"low","other"
"889","female","other",53.7700004577637,"no","no","yes","no",7.19999980926514,7.17999982833862,3.59999990463257,1.16513001918793,13,"low","other"
"890","female","other",62.9700012207031,"no","no","yes","no",7.19999980926514,7.17999982833862,3.59999990463257,1.16513001918793,12,"low","other"
"891","male","other",57.2599983215332,"no","yes","yes","no",7.19999980926514,7.17999982833862,3.59999990463257,1.16513001918793,16,"low","other"
"892","female","other",47.5699996948242,"no","no","yes","no",7.19999980926514,7.17999982833862,3.59999990463257,1.16513001918793,12,"low","other"
"893","female","other",48.1199989318848,"no","no","yes","no",15.6999998092651,10.1499996185303,4,0.434179991483688,13,"low","other"
"894","male","other",57.4000015258789,"no","no","yes","no",15.6999998092651,10.1499996185303,4,0.434179991483688,18,"low","other"
"895","male","other",55.6699981689453,"no","no","yes","no",15.6999998092651,10.1499996185303,4,0.434179991483688,15,"low","other"
"896","female","other",53.7599983215332,"no","no","yes","no",15.6999998092651,10.1499996185303,4,0.434179991483688,14,"low","other"
"897","female","other",46.5699996948242,"no","no","yes","no",15.6999998092651,10.1499996185303,4,0.434179991483688,12,"low","other"
"898","male","other",58.4300003051758,"no","no","yes","no",15.6999998092651,10.1499996185303,4,0.434179991483688,16,"low","other"
"899","female","hispanic",45.0400009155273,"no","no","no","no",15.6999998092651,10.1499996185303,4,0.434179991483688,12,"low","other"
"900","female","other",54.75,"no","no","no","no",15.6999998092651,10.1499996185303,4,0.434179991483688,16,"high","other"
"901","male","hispanic",47.9000015258789,"no","no","yes","no",12.6000003814697,10.1499996185303,3,0.434179991483688,12,"low","other"
"902","male","other",45.560001373291,"no","no","yes","no",12.6000003814697,10.1499996185303,3,0.434179991483688,12,"low","other"
"903","female","other",51.9000015258789,"no","no","yes","no",12.6000003814697,10.1499996185303,3,0.434179991483688,12,"low","other"
"904","female","other",36.25,"no","no","yes","no",12.6000003814697,10.1499996185303,3,0.434179991483688,12,"low","other"
"905","female","other",47.5200004577637,"no","no","yes","no",12.6000003814697,10.1499996185303,3,0.434179991483688,13,"low","other"
"906","female","other",43.810001373291,"no","no","yes","no",12.6000003814697,10.1499996185303,3,0.434179991483688,14,"low","other"
"907","male","other",40.1300010681152,"no","no","yes","no",12.6000003814697,10.1499996185303,3,0.434179991483688,12,"low","other"
"908","female","other",36.5499992370605,"no","no","yes","no",12.6000003814697,10.1499996185303,3,0.434179991483688,12,"low","other"
"909","female","other",51.8199996948242,"no","no","no","no",6.5,7.34999990463257,0.300000011920929,0.751729965209961,12,"low","other"
"910","female","afam",55.75,"no","no","no","no",6.5,7.34999990463257,0.300000011920929,0.751729965209961,12,"low","other"
"911","male","afam",45.5,"no","no","no","no",6.5,7.34999990463257,0.300000011920929,0.751729965209961,12,"low","other"
"912","male","afam",43.6699981689453,"no","no","no","no",6.5,7.34999990463257,0.300000011920929,0.751729965209961,13,"low","other"
"913","male","other",61.310001373291,"no","no","no","no",9.19999980926514,10.1499996185303,0.200000002980232,0.434179991483688,12,"low","other"
"914","female","afam",38.5299987792969,"yes","no","yes","no",9.19999980926514,10.1499996185303,0.200000002980232,0.434179991483688,15,"high","other"
"915","female","afam",55.4799995422363,"no","yes","yes","no",9.19999980926514,10.1499996185303,0.200000002980232,0.434179991483688,12,"low","other"
"916","female","other",44.0800018310547,"no","no","yes","no",9.19999980926514,10.1499996185303,0.200000002980232,0.434179991483688,14,"low","other"
"917","male","afam",46.9900016784668,"yes","no","yes","no",9.19999980926514,10.1499996185303,0.200000002980232,0.434179991483688,13,"low","other"
"918","female","other",55.3699989318848,"yes","yes","yes","no",9.19999980926514,10.1499996185303,0.200000002980232,0.434179991483688,16,"high","other"
"919","female","other",58.4300003051758,"yes","yes","yes","no",9.19999980926514,10.1499996185303,0.200000002980232,0.434179991483688,16,"low","other"
"920","female","afam",49.689998626709,"no","no","yes","no",9.19999980926514,10.1499996185303,0.200000002980232,0.434179991483688,12,"low","other"
"921","female","afam",47.9000015258789,"no","no","no","no",9.19999980926514,10.1499996185303,0.200000002980232,0.434179991483688,14,"low","other"
"922","male","afam",35.6800003051758,"no","no","yes","no",9.19999980926514,10.1499996185303,0.200000002980232,0.434179991483688,12,"low","other"
"923","male","other",63.7599983215332,"yes","no","yes","no",10.8000001907349,9.68000030517578,1,1.09353005886078,15,"low","other"
"924","female","other",49.75,"no","no","no","no",10.8000001907349,9.68000030517578,1,1.09353005886078,13,"low","other"
"925","female","other",66.1900024414062,"no","no","yes","no",10.8000001907349,9.68000030517578,1,1.09353005886078,12,"low","other"
"926","female","other",45.5900001525879,"no","no","yes","no",10.8000001907349,9.68000030517578,1,1.09353005886078,12,"low","other"
"927","male","other",41.7700004577637,"no","no","yes","no",10.8000001907349,9.68000030517578,1,1.09353005886078,12,"high","other"
"928","female","afam",46.1699981689453,"yes","no","yes","no",7.30000019073486,9.68000030517578,1,1.09353005886078,12,"low","other"
"929","male","afam",38.9799995422363,"no","no","yes","no",7.30000019073486,9.68000030517578,1,1.09353005886078,12,"low","other"
"930","female","afam",40.6300010681152,"no","no","yes","no",7.30000019073486,9.68000030517578,1,1.09353005886078,12,"low","other"
"931","male","afam",54.689998626709,"no","no","yes","no",7.30000019073486,9.68000030517578,1,1.09353005886078,12,"low","other"
"932","male","other",56.1399993896484,"no","no","no","no",7.30000019073486,9.68000030517578,1,1.09353005886078,16,"low","other"
"933","female","other",50.0800018310547,"no","no","yes","no",7.30000019073486,9.68000030517578,1,1.09353005886078,12,"low","other"
"934","female","afam",51.310001373291,"no","no","no","no",6.30000019073486,7.32999992370605,2,0.655889987945557,12,"low","other"
"935","female","afam",39.3300018310547,"no","no","yes","no",6.30000019073486,7.32999992370605,2,0.655889987945557,12,"low","other"
"936","male","other",56.5,"no","no","yes","no",6.30000019073486,7.32999992370605,2,0.655889987945557,16,"low","other"
"937","female","afam",41.1699981689453,"no","no","no","no",6.30000019073486,7.32999992370605,2,0.655889987945557,14,"low","other"
"938","male","afam",47.3699989318848,"no","no","yes","no",6.30000019073486,7.32999992370605,2,0.655889987945557,12,"low","other"
"939","female","other",58.4799995422363,"no","no","yes","no",6.30000019073486,7.32999992370605,2,0.655889987945557,15,"low","other"
"940","female","afam",52.6399993896484,"no","no","yes","no",6.30000019073486,7.32999992370605,2,0.655889987945557,16,"low","other"
"941","female","afam",33.8800010681152,"no","no","no","no",6.30000019073486,7.32999992370605,2,0.655889987945557,13,"low","other"
"942","male","afam",51.6300010681152,"no","no","yes","no",8.69999980926514,7.53999996185303,7,0.818710029125214,12,"low","other"
"943","male","other",39.7799987792969,"no","no","yes","no",8.69999980926514,7.53999996185303,7,0.818710029125214,13,"high","other"
"944","male","other",43.2799987792969,"yes","yes","yes","no",8.69999980926514,7.53999996185303,7,0.818710029125214,16,"low","other"
"945","female","afam",36.8499984741211,"no","no","yes","no",7.19999980926514,7.32999992370605,3,0.655889987945557,12,"low","other"
"946","female","afam",48.1199989318848,"no","no","yes","no",7.19999980926514,7.32999992370605,3,0.655889987945557,17,"low","other"
"947","female","other",45.4599990844727,"no","no","yes","no",7.19999980926514,7.32999992370605,3,0.655889987945557,16,"low","other"
"948","female","afam",38.6500015258789,"no","no","no","no",7.19999980926514,7.32999992370605,3,0.655889987945557,13,"low","other"
"949","male","hispanic",49.75,"no","no","yes","no",7.19999980926514,7.32999992370605,3,0.655889987945557,15,"high","other"
"950","male","other",56.3899993896484,"no","yes","yes","no",7.19999980926514,7.32999992370605,3,0.655889987945557,16,"low","other"
"951","male","afam",41.4700012207031,"no","no","yes","no",7.19999980926514,7.32999992370605,3,0.655889987945557,12,"low","other"
"952","male","other",56.560001373291,"yes","yes","yes","no",7.19999980926514,7.32999992370605,3,0.655889987945557,16,"high","other"
"953","male","afam",45.1599998474121,"no","no","yes","no",7.19999980926514,7.32999992370605,3,0.655889987945557,15,"low","other"
"954","male","afam",35.1100006103516,"no","no","no","no",7.19999980926514,7.32999992370605,3,0.655889987945557,12,"low","other"
"955","female","afam",40.2599983215332,"no","no","yes","no",7.19999980926514,7.32999992370605,3,0.655889987945557,12,"low","other"
"956","female","afam",36.6699981689453,"no","no","no","no",7.19999980926514,7.32999992370605,3,0.655889987945557,12,"low","other"
"957","male","other",52.6699981689453,"no","no","yes","no",7.19999980926514,7.32999992370605,3,0.655889987945557,13,"low","other"
"958","male","afam",58.0499992370605,"no","no","yes","no",6.90000009536743,7.17999982833862,0.100000001490116,1.16513001918793,13,"high","other"
"959","male","other",56.9000015258789,"no","no","yes","no",6.90000009536743,7.17999982833862,0.100000001490116,1.16513001918793,13,"low","other"
"960","female","afam",44.4300003051758,"no","no","yes","no",6.90000009536743,7.17999982833862,0.100000001490116,1.16513001918793,14,"low","other"
"961","male","afam",39.6800003051758,"no","no","yes","no",6.90000009536743,7.17999982833862,0.100000001490116,1.16513001918793,12,"high","other"
"962","female","other",58.6300010681152,"yes","no","yes","no",6.90000009536743,7.17999982833862,0.100000001490116,1.16513001918793,16,"high","other"
"963","female","other",40.4599990844727,"no","no","yes","no",6.90000009536743,7.17999982833862,0.100000001490116,1.16513001918793,12,"low","other"
"964","female","other",53.0299987792969,"no","no","yes","no",8,7.53999996185303,0.699999988079071,0.818710029125214,14,"high","other"
"965","female","other",55.6599998474121,"no","no","yes","no",8,7.53999996185303,0.699999988079071,0.818710029125214,12,"low","other"
"966","female","other",51.5099983215332,"no","no","yes","no",8,7.53999996185303,0.699999988079071,0.818710029125214,12,"low","other"
"967","male","other",56.4599990844727,"no","no","yes","no",8,7.53999996185303,0.699999988079071,0.818710029125214,14,"low","other"
"968","male","other",37.9599990844727,"no","no","yes","no",8,7.53999996185303,0.699999988079071,0.818710029125214,12,"high","other"
"969","male","afam",57.2900009155273,"no","yes","yes","no",8,7.53999996185303,0.699999988079071,0.818710029125214,16,"high","other"
"970","female","other",44.9599990844727,"yes","no","yes","no",8,7.53999996185303,0.699999988079071,0.818710029125214,14,"low","other"
"971","female","hispanic",49.5699996948242,"no","no","yes","no",8,7.53999996185303,0.699999988079071,0.818710029125214,12,"low","other"
"972","male","other",64.2200012207031,"no","no","yes","no",8,7.53999996185303,0.699999988079071,0.818710029125214,16,"low","other"
"973","male","other",50.9099998474121,"no","no","yes","no",9.89999961853027,10.1499996185303,1.89999997615814,0.434179991483688,14,"low","other"
"974","female","other",47.4700012207031,"no","no","yes","no",9.89999961853027,10.1499996185303,1.89999997615814,0.434179991483688,16,"low","other"
"975","male","other",67.0599975585938,"no","no","yes","no",9.89999961853027,10.1499996185303,1.89999997615814,0.434179991483688,15,"low","other"
"976","female","other",43.1199989318848,"no","no","yes","no",9.89999961853027,10.1499996185303,1.89999997615814,0.434179991483688,12,"low","other"
"977","female","other",55.3600006103516,"yes","no","yes","no",9.89999961853027,10.1499996185303,1.89999997615814,0.434179991483688,14,"high","other"
"978","female","afam",48.1500015258789,"no","no","yes","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,17,"low","other"
"979","female","afam",39.8899993896484,"no","no","no","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,13,"low","other"
"980","female","afam",39.25,"no","no","yes","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,12,"low","other"
"981","male","afam",47,"no","no","no","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,12,"low","other"
"982","male","afam",40.2099990844727,"no","no","no","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,12,"low","other"
"983","female","afam",44.189998626709,"no","no","no","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,16,"low","other"
"984","female","afam",47.810001373291,"yes","no","yes","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,14,"low","other"
"985","female","afam",54.4099998474121,"no","no","yes","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,16,"high","other"
"986","male","afam",43.3899993896484,"no","no","yes","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,12,"high","other"
"987","female","afam",38.8899993896484,"no","no","yes","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,13,"low","other"
"988","female","afam",43.2599983215332,"yes","no","no","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,12,"low","other"
"989","female","afam",36.1500015258789,"no","no","no","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,12,"low","other"
"990","male","afam",42.2000007629395,"no","no","yes","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,12,"low","other"
"991","male","afam",48.1199989318848,"no","no","no","no",5.09999990463257,7.34999990463257,0.800000011920929,0.751729965209961,12,"low","other"
"992","male","afam",38.1699981689453,"no","no","yes","no",5.30000019073486,7.53999996185303,1.79999995231628,0.818710029125214,13,"low","other"
"993","female","afam",41.439998626709,"yes","yes","yes","no",5.30000019073486,7.53999996185303,1.79999995231628,0.818710029125214,14,"high","other"
"994","female","afam",41.5999984741211,"no","no","yes","no",5.30000019073486,7.53999996185303,1.79999995231628,0.818710029125214,13,"low","other"
"995","male","afam",30.7800006866455,"no","no","no","no",5.30000019073486,7.53999996185303,1.79999995231628,0.818710029125214,12,"low","other"
"996","male","afam",48.5200004577637,"no","no","no","no",5.30000019073486,7.53999996185303,1.79999995231628,0.818710029125214,15,"low","other"
"997","male","afam",31.1200008392334,"no","no","no","no",5.30000019073486,7.53999996185303,1.79999995231628,0.818710029125214,12,"high","other"
"998","male","afam",35.1500015258789,"no","no","no","no",5.30000019073486,7.53999996185303,1.79999995231628,0.818710029125214,12,"low","other"
"999","female","afam",40.310001373291,"no","no","yes","no",5.30000019073486,7.53999996185303,1.79999995231628,0.818710029125214,16,"low","other"