-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathds38_train.csv
We can't make this file beautiful and searchable because it's too large.
5627 lines (5627 loc) · 998 KB
/
ds38_train.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
ownershg,value,rent,ftotinc,nfams,ncouples,nmothers,nfathers,momloc,momrule,poploc,poprule,sploc,sprule,famsize,nchild,nchlt5,nsibs,relateg,age,sex,raceg,marst,school,educrec,occscore,sei,inctot,incwage,poverty,movedin,binaryClass
Rented,999999.0,325.0,9505.0,1,1,1,1,0,0,0,0,1,1,4,2,2,0,Spouse,25.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,18.0,44.0,0.0,0.0,128.0,0,P
Rented,999999.0,287.0,8005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,20.0,Female,Black_Negro,Never_married_single,No_not_in_school,Grade_12,22.0,61.0,8005.0,8005.0,211.0,1,P
Owned_or_being_bought_(loan),85000.0,0.0,29635.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,4.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,304.0,0,P
Rented,999999.0,185.0,7610.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,25.0,Female,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,17.0,13.0,4520.0,4505.0,119.0,0,P
Rented,999999.0,135.0,75000.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,44.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_12,20.0,9.0,57240.0,56525.0,501.0,2,P
Rented,999999.0,237.0,7760.0,1,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,7.0,Female,Black_Negro,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,105.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,14510.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,73.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,14510.0,0.0,329.0,5,P
Owned_or_being_bought_(loan),112500.0,0.0,2700.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,27.0,Female,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,40.0,77.0,2700.0,2105.0,71.0,2,P
Owned_or_being_bought_(loan),999999.0,0.0,42065.0,1,0,0,0,0,0,0,0,0,0,2,0,0,1,Head_Householder,50.0,Male,White,Divorced,Yes_in_school,Grade_5-8,20.0,8.0,16860.0,15605.0,501.0,6,P
Rented,999999.0,287.0,11630.0,1,2,1,1,4,3,3,3,0,0,7,0,0,2,Other_relatives,3.0,Male,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,100.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,18205.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,11.0,Male,Japanese,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,209.0,0,P
Rented,999999.0,212.0,11300.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,50.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,27.0,64.0,7205.0,7205.0,192.0,0,N
Owned_or_being_bought_(loan),137500.0,0.0,48010.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,15.0,Female,White,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,0.0,999999.0,501.0,0,P
Rented,999999.0,325.0,18005.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,31.0,Female,White,Divorced,Yes_in_school,1_to_3_years_of_college,40.0,77.0,18005.0,18005.0,358.0,2,N
Owned_or_being_bought_(loan),67500.0,0.0,15740.0,1,1,2,1,3,2,0,0,0,0,7,0,0,3,Grandchild,12.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,139.0,0,P
Rented,999999.0,262.0,12505.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,29.0,Female,White,Divorced,No_not_in_school,1_to_3_years_of_college,41.0,68.0,12505.0,12505.0,330.0,2,P
Rented,999999.0,1.0,18205.0,2,0,0,1,0,0,1,1,0,0,2,0,0,0,Child,13.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,362.0,0,P
Rented,999999.0,212.0,10160.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,62.0,Female,White,Divorced,No_not_in_school,Grade_12,22.0,51.0,10160.0,10005.0,268.0,5,P
Owned_or_being_bought_(loan),112500.0,0.0,53330.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,16.0,Female,White,Never_married_single,Yes_in_school,Grade_10,0.0,0.0,0.0,0.0,441.0,0,P
Rented,999999.0,375.0,6510.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,39.0,Female,White,Divorced,No_not_in_school,Grade_11,11.0,16.0,4505.0,4505.0,133.0,1,P
Owned_or_being_bought_(loan),23750.0,0.0,17985.0,1,1,1,0,3,1,0,0,1,1,3,0,0,0,Spouse,60.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,315.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,54245.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,13.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,501.0,0,P
Rented,999999.0,325.0,24165.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,24.0,Male,Japanese,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,15.0,26.0,16160.0,16005.0,495.0,1,P
Owned_or_being_bought_(loan),95000.0,0.0,37850.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,40.0,Female,Other_race_nec,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,24.0,44.0,14805.0,14805.0,501.0,0,P
Rented,999999.0,85.0,4810.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,72.0,Female,Black_Negro,Widowed,No_not_in_school,Grade_1-4,0.0,0.0,4810.0,0.0,137.0,6,P
Rented,999999.0,325.0,26305.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,26.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,35.0,68.0,26305.0,26305.0,501.0,1,P
Rented,999999.0,325.0,7205.0,1,0,1,0,0,0,0,0,0,0,5,4,0,0,Head_Householder,35.0,Female,White,Divorced,No_not_in_school,Grade_12,18.0,44.0,7205.0,7205.0,84.0,1,P
Rented,999999.0,325.0,18005.0,1,0,1,0,1,1,0,0,0,0,2,0,0,0,Child,11.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,358.0,0,P
Rented,999999.0,262.0,11005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,21.0,Female,White,Never_married_single,No_not_in_school,Grade_12,25.0,44.0,11005.0,11005.0,290.0,1,P
Rented,999999.0,500.0,26910.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,15.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,0.0,999999.0,309.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,39520.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,20.0,Male,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,24.0,47.0,6005.0,6005.0,393.0,0,N
Owned_or_being_bought_(loan),37500.0,0.0,4810.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,72.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,0.0,0.0,2405.0,0.0,109.0,7,P
Rented,999999.0,262.0,8005.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,7.0,Male,White,Never_married_single,No_not_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,82.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,24110.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,42.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,11.0,18.0,19505.0,19505.0,494.0,1,P
Owned_or_being_bought_(loan),999999.0,0.0,23925.0,1,1,1,1,1,1,2,1,0,0,7,0,0,4,Child,23.0,Female,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,26.0,52.0,1960.0,955.0,202.0,0,N
Owned_or_being_bought_(loan),137500.0,0.0,26870.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,17.0,Female,White,Never_married_single,Yes_in_school,Grade_11,0.0,0.0,0.0,0.0,301.0,0,P
Rented,999999.0,185.0,4005.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,11.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,37.0,0,P
Rented,999999.0,325.0,12005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,30.0,Male,Japanese,Separated,No_not_in_school,Grade_5-8,24.0,47.0,12005.0,12005.0,316.0,1,P
Rented,999999.0,175.0,18220.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,19.0,Female,Other_Asian_or_Pacific,Never_married_single,Yes_in_school,Grade_10,18.0,44.0,805.0,805.0,242.0,0,P
Rented,999999.0,175.0,3305.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,38.0,Female,Black_Negro,Divorced,No_not_in_school,Grade_12,26.0,22.0,0.0,0.0,1.0,0,N
Rented,999999.0,500.0,55815.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,54.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,41.0,68.0,44205.0,44205.0,501.0,0,N
Owned_or_being_bought_(loan),175000.0,0.0,29125.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,38.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,35.0,62.0,11810.0,5005.0,394.0,5,P
Rented,999999.0,212.0,15530.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,30.0,Female,Black_Negro,Married_spouse_present,Yes_in_school,1_to_3_years_of_college,30.0,65.0,1315.0,1315.0,210.0,0,N
Rented,999999.0,237.0,11005.0,1,0,1,0,0,0,0,0,0,0,4,3,0,0,Head_Householder,45.0,Female,White,Separated,No_not_in_school,None_or_preschool,17.0,26.0,11005.0,11005.0,149.0,5,N
Rented,999999.0,450.0,4910.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,85.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,4910.0,0.0,140.0,2,P
Owned_or_being_bought_(loan),95000.0,0.0,30695.0,1,0,1,0,2,1,0,0,0,0,2,0,0,0,Head_Householder,48.0,Male,Other_Asian_or_Pacific,Never_married_single,No_not_in_school,4+_years_of_college,27.0,31.0,30000.0,26665.0,501.0,6,P
Owned_or_being_bought_(loan),112500.0,0.0,20010.0,1,1,1,1,0,0,0,0,2,1,4,2,1,0,Head_Householder,35.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,41.0,68.0,16005.0,16005.0,271.0,2,P
Owned_or_being_bought_(loan),21250.0,0.0,4510.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,41.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,92.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,14935.0,1,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,19.0,Male,White,Never_married_single,Yes_in_school,Grade_12,16.0,15.0,3605.0,3605.0,195.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,21010.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,44.0,Female,Japanese,Married_spouse_present,No_not_in_school,Grade_12,11.0,16.0,4005.0,4005.0,358.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,20600.0,1,1,1,1,0,0,0,0,1,1,6,3,0,0,Spouse,34.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,24.0,44.0,0.0,0.0,211.0,0,P
Rented,999999.0,175.0,10005.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,8.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,135.0,0,P
Rented,999999.0,105.0,1450.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,26.0,Male,Black_Negro,Never_married_single,No_not_in_school,Grade_12,31.0,33.0,1450.0,725.0,38.0,2,P
Owned_or_being_bought_(loan),200000.0,0.0,68020.0,1,1,1,1,0,0,0,0,1,2,3,1,1,0,Spouse,34.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,41.0,68.0,44010.0,43005.0,501.0,0,P
Rented,999999.0,237.0,25190.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,6.0,Male,Other_race_nec,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,289.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,26505.0,1,1,1,1,0,0,0,0,2,1,6,4,0,0,Head_Householder,35.0,Male,White,Married_spouse_present,No_not_in_school,Grade_11,31.0,73.0,26505.0,26505.0,272.0,6,P
Owned_or_being_bought_(loan),112500.0,0.0,31390.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,39.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,4.0,27.0,7605.0,7605.0,501.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,53215.0,1,1,1,0,0,0,0,0,1,1,5,0,0,0,Spouse,54.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,22.0,61.0,13205.0,13205.0,501.0,0,P
Rented,999999.0,237.0,8005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,31.0,Male,White,Never_married_single,No_not_in_school,Grade_1-4,23.0,18.0,8005.0,8005.0,211.0,2,P
Rented,999999.0,125.0,4255.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,53.0,Male,White,Never_married_single,No_not_in_school,Grade_5-8,0.0,0.0,4255.0,0.0,112.0,8,P
Rented,999999.0,500.0,15510.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,3.0,Female,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,159.0,0,P
Rented,999999.0,195.0,18560.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,32.0,Male,White,Never_married_single,Yes_in_school,4+_years_of_college,31.0,65.0,18560.0,18505.0,489.0,2,P
Owned_or_being_bought_(loan),999999.0,0.0,3430.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,82.0,Female,White,Widowed,No_not_in_school,Grade_11,0.0,0.0,3430.0,0.0,98.0,7,P
Rented,999999.0,237.0,6765.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,2.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,78.0,0,P
Owned_or_being_bought_(loan),42499.0,0.0,1405.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,26.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_11,0.0,0.0,0.0,0.0,29.0,0,P
Owned_or_being_bought_(loan),23750.0,0.0,8325.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,32.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,26.0,19.0,0.0,0.0,113.0,2,P
Rented,999999.0,500.0,-1165.0,1,1,0,0,0,0,0,0,1,1,3,0,0,0,Spouse,63.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_5-8,6.0,7.0,3345.0,605.0,1.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,22030.0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,Head_Householder,60.0,Male,White,Widowed,No_not_in_school,Grade_5-8,20.0,9.0,17085.0,17085.0,451.0,6,N
Rented,999999.0,262.0,14005.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,58.0,Female,White,Separated,No_not_in_school,1_to_3_years_of_college,22.0,61.0,14005.0,14005.0,279.0,5,P
Owned_or_being_bought_(loan),999999.0,0.0,13005.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,11.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,119.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,33020.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,33.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,33.0,48.0,24310.0,24005.0,501.0,1,P
Owned_or_being_bought_(loan),112500.0,0.0,53120.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,501.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,10285.0,1,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,16.0,Female,White,Never_married_single,Yes_in_school,Grade_9,18.0,44.0,0.0,0.0,139.0,0,P
Rented,999999.0,165.0,16255.0,1,1,0,0,0,0,0,0,0,0,3,0,0,1,Sibling-in-Law,24.0,Male,White,Never_married_single,No_not_in_school,Grade_1-4,28.0,22.0,8845.0,8845.0,285.0,0,P
Rented,999999.0,262.0,17200.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,63.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,31.0,65.0,17200.0,16695.0,301.0,5,P
Rented,999999.0,325.0,15005.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,16.0,Male,White,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,0.0,0.0,203.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,75000.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,89.0,Male,White,Widowed,No_not_in_school,4+_years_of_college,39.0,73.0,75000.0,2785.0,501.0,7,P
Owned_or_being_bought_(loan),42499.0,0.0,0.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,26.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,1.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,17215.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,74.0,Male,White,Married_spouse_present,Yes_in_school,4+_years_of_college,0.0,0.0,17215.0,0.0,390.0,2,P
Rented,999999.0,125.0,4275.0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,Grandchild,19.0,Female,Black_Negro,Never_married_single,No_not_in_school,Grade_11,0.0,0.0,0.0,0.0,56.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,18835.0,1,0,0,0,0,0,0,0,0,0,3,0,0,2,Sibling,32.0,Female,White,Separated,No_not_in_school,Grade_5-8,41.0,68.0,6705.0,6705.0,330.0,0,P
Rented,999999.0,262.0,46775.0,1,1,1,1,0,0,0,0,0,0,11,0,0,0,Other_relatives,25.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,22.0,61.0,6765.0,6765.0,309.0,0,P
Rented,999999.0,237.0,8835.0,1,0,1,0,1,1,0,0,0,0,2,0,0,0,Child,6.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,176.0,0,P
Rented,999999.0,0.0,20515.0,1,1,1,1,2,1,1,1,0,0,5,0,0,1,Child,3.0,Female,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,230.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,35715.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,24.0,Female,White,Never_married_single,Yes_in_school,4+_years_of_college,36.0,66.0,13105.0,13105.0,501.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,33375.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,37.0,Female,White,Married_spouse_present,No_not_in_school,Grade_10,22.0,51.0,9865.0,9865.0,451.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,25690.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,31.0,Male,White,Never_married_single,No_not_in_school,Grade_12,26.0,47.0,25690.0,25505.0,501.0,1,P
Owned_or_being_bought_(loan),12500.0,0.0,18910.0,1,1,1,1,0,0,0,0,0,0,7,0,0,1,Sibling-in-Law,17.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_10,16.0,15.0,405.0,405.0,173.0,0,N
Rented,999999.0,325.0,8915.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,9.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,152.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,62005.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,62.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,501.0,0,P
Rented,999999.0,325.0,13640.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,72.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,8835.0,0.0,309.0,6,P
Rented,999999.0,262.0,5185.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,74.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,5185.0,0.0,148.0,5,P
Owned_or_being_bought_(loan),85000.0,0.0,6740.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,71.0,Male,White,Married_spouse_present,No_not_in_school,Grade_1-4,0.0,0.0,4845.0,0.0,153.0,7,P
Owned_or_being_bought_(loan),77500.0,0.0,20400.0,1,1,1,1,0,0,0,0,0,0,6,0,0,3,Sibling,3.0,Male,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,209.0,0,P
Rented,999999.0,375.0,0.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,5.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,1.0,0,P
Rented,999999.0,0.0,10010.0,1,1,1,1,0,0,0,0,2,2,8,6,1,0,Head_Householder,42.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,0.0,0.0,0.0,0.0,83.0,1,P
Rented,999999.0,115.0,12070.0,1,1,2,1,0,0,0,0,0,0,10,6,0,1,Head_Householder,40.0,Female,White,Separated,No_not_in_school,None_or_preschool,16.0,15.0,0.0,0.0,82.0,1,N
Rented,999999.0,212.0,8380.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,51.0,Male,Black_Negro,Never_married_single,No_not_in_school,Grade_5-8,20.0,8.0,2775.0,2775.0,73.0,0,N
Owned_or_being_bought_(loan),37500.0,0.0,8820.0,1,1,1,1,0,0,0,0,1,1,7,5,1,0,Spouse,32.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,22.0,18.0,0.0,0.0,81.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,23820.0,1,1,0,0,0,0,0,0,1,1,4,0,0,0,Spouse,50.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_12,42.0,86.0,615.0,0.0,322.0,0,P
Rented,999999.0,262.0,13815.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,21.0,Male,American_Indian,Never_married_single,No_not_in_school,Grade_9,25.0,18.0,805.0,805.0,242.0,0,N
Owned_or_being_bought_(loan),52500.0,0.0,3270.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,89.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,3270.0,0.0,93.0,7,P
Owned_or_being_bought_(loan),62500.0,0.0,28135.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,41.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,41.0,68.0,20130.0,20005.0,380.0,6,P
Rented,999999.0,262.0,23260.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,304.0,0,P
Rented,999999.0,212.0,19010.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,31.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,41.0,68.0,17005.0,17005.0,324.0,2,P
Owned_or_being_bought_(loan),137500.0,0.0,32215.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,36.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,37.0,49.0,21210.0,21005.0,501.0,0,P
Rented,999999.0,125.0,7090.0,1,1,0,0,0,0,0,0,3,2,3,0,0,1,Sibling,16.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,6.0,7.0,0.0,0.0,121.0,0,P
Rented,999999.0,105.0,5005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,63.0,Male,White,Divorced,No_not_in_school,Grade_12,42.0,86.0,5005.0,0.0,132.0,5,P
Owned_or_being_bought_(loan),26250.0,0.0,41555.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,26.0,Male,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,0.0,0.0,25.0,0.0,501.0,0,P
Rented,999999.0,125.0,15010.0,1,1,2,1,2,1,1,1,0,0,8,0,0,3,Child,4.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,117.0,0,P
Rented,999999.0,115.0,5005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,33.0,Male,White,Divorced,No_not_in_school,Grade_12,20.0,8.0,5005.0,5005.0,132.0,1,P
Owned_or_being_bought_(loan),72500.0,0.0,27010.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,2.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,460.0,0,P
Rented,999999.0,175.0,2700.0,1,1,0,0,0,0,0,0,1,1,3,0,0,0,Spouse,56.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,6.0,19.0,0.0,0.0,46.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,19720.0,1,2,1,1,0,0,0,0,1,1,6,2,0,0,Spouse,29.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,22.0,18.0,4005.0,4005.0,192.0,0,P
Rented,999999.0,325.0,31010.0,2,0,0,1,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,45.0,Female,Other_Asian_or_Pacific,Divorced,Yes_in_school,1_to_3_years_of_college,41.0,68.0,7005.0,7005.0,185.0,0,P
Rented,999999.0,237.0,14930.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,54.0,Female,White,Divorced,No_not_in_school,Grade_11,16.0,15.0,8965.0,8965.0,306.0,2,P
Owned_or_being_bought_(loan),112500.0,0.0,28315.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,17.0,Male,White,Never_married_single,Yes_in_school,Grade_10,0.0,0.0,0.0,0.0,325.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,7510.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,56.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_11,13.0,10.0,1805.0,1805.0,154.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,45530.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,23.0,Female,White,Never_married_single,Yes_in_school,4+_years_of_college,30.0,65.0,1805.0,1805.0,501.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,16005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,41.0,Male,White,Divorced,No_not_in_school,1_to_3_years_of_college,23.0,45.0,16005.0,16005.0,422.0,6,N
Rented,999999.0,287.0,310.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,9.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,3.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,15400.0,1,1,0,0,0,0,0,0,0,0,3,0,0,0,Grandchild,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,262.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,71015.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,48.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,39.0,73.0,58010.0,0.0,501.0,6,P
Owned_or_being_bought_(loan),112500.0,0.0,26720.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,37.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,27.0,49.0,2710.0,2255.0,299.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,53145.0,1,1,1,1,2,1,1,1,0,0,8,0,0,5,Child,15.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,0.0,999999.0,406.0,0,P
Rented,999999.0,262.0,27095.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,8.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,311.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,34015.0,1,1,1,1,2,1,1,1,0,0,8,0,0,5,Child,16.0,Female,Black_Negro,Never_married_single,Yes_in_school,Grade_10,14.0,26.0,0.0,0.0,260.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,43220.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,25.0,Female,White,Never_married_single,No_not_in_school,4+_years_of_college,20.0,31.0,8005.0,8005.0,501.0,0,P
Rented,999999.0,450.0,2455.0,1,1,1,1,0,0,0,0,2,1,4,2,1,0,Head_Householder,32.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,25.0,44.0,1550.0,1505.0,33.0,1,P
Owned_or_being_bought_(loan),67500.0,0.0,12540.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,56.0,Female,White,Married_spouse_present,Yes_in_school,1_to_3_years_of_college,41.0,84.0,485.0,485.0,220.0,0,N
Owned_or_being_bought_(loan),175000.0,0.0,24015.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,15.0,Male,White,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,0.0,999999.0,325.0,0,P
Rented,999999.0,237.0,8490.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,52.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,3485.0,0.0,174.0,1,P
Rented,999999.0,450.0,15005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,35.0,Male,White,Divorced,No_not_in_school,1_to_3_years_of_college,23.0,18.0,15005.0,15005.0,395.0,2,N
Owned_or_being_bought_(loan),175000.0,0.0,75000.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,16.0,Female,White,Never_married_single,Yes_in_school,Grade_10,0.0,0.0,505.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,15005.0,1,1,1,1,0,0,0,0,2,1,4,2,2,0,Head_Householder,24.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,31.0,33.0,15005.0,15005.0,203.0,2,N
Owned_or_being_bought_(loan),175000.0,0.0,35010.0,2,0,1,0,1,1,0,0,0,0,2,0,0,0,Child,30.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,25.0,36.0,20005.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,21410.0,1,1,1,1,0,0,0,0,2,1,6,3,0,0,Head_Householder,30.0,Male,White,Married_spouse_present,No_not_in_school,Grade_10,24.0,47.0,14405.0,14405.0,220.0,5,N
Owned_or_being_bought_(loan),52500.0,0.0,32520.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,28.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,37.0,49.0,20310.0,20005.0,501.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,15005.0,1,1,1,1,0,0,0,0,1,1,4,2,2,0,Spouse,32.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,24.0,44.0,0.0,0.0,203.0,0,N
Owned_or_being_bought_(loan),85000.0,0.0,13060.0,1,1,1,1,0,0,0,0,1,1,4,2,1,0,Spouse,26.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,31.0,73.0,0.0,0.0,177.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,13445.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,64.0,Female,White,Widowed,No_not_in_school,4+_years_of_college,26.0,58.0,13445.0,0.0,354.0,7,P
Owned_or_being_bought_(loan),72500.0,0.0,20205.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,22.0,Female,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,31.0,73.0,8135.0,8135.0,214.0,0,P
Rented,999999.0,212.0,29170.0,1,1,1,1,2,1,1,1,0,0,11,0,0,8,Child,5.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,207.0,0,P
Owned_or_being_bought_(loan),47500.0,0.0,17005.0,1,1,0,0,0,0,0,0,1,1,4,0,0,0,Spouse,48.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_11,0.0,0.0,0.0,0.0,230.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,13125.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,75.0,Male,White,Married_spouse_present,No_not_in_school,Grade_9,0.0,0.0,2710.0,0.0,298.0,6,P
Owned_or_being_bought_(loan),95000.0,0.0,19720.0,1,2,1,1,2,1,1,1,0,0,6,0,0,1,Child,11.0,Female,White,Never_married_single,No_not_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,192.0,0,P
Rented,999999.0,237.0,26815.0,1,1,1,1,0,0,0,0,2,1,4,2,1,0,Head_Householder,33.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,37.0,49.0,26815.0,26815.0,363.0,2,P
Rented,999999.0,195.0,7255.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,30.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,20.0,52.0,7255.0,0.0,124.0,1,N
Rented,999999.0,237.0,17315.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,69.0,Female,Other_race_nec,Widowed,No_not_in_school,1_to_3_years_of_college,22.0,51.0,17315.0,15005.0,495.0,6,P
Owned_or_being_bought_(loan),999999.0,0.0,0.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,53.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,34.0,67.0,0.0,0.0,1.0,7,P
Rented,999999.0,165.0,22510.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,3.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,383.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,75000.0,1,1,1,1,0,0,0,0,1,1,10,6,0,0,Spouse,43.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,496.0,0,P
Rented,999999.0,105.0,15010.0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,Child,31.0,Male,White,Never_married_single,No_not_in_school,Grade_1-4,41.0,68.0,9005.0,9005.0,307.0,0,N
Rented,999999.0,325.0,3975.0,2,0,1,0,1,1,0,0,0,0,2,0,0,0,Child,2.0,Female,Black_Negro,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,79.0,0,P
Owned_or_being_bought_(loan),16250.0,0.0,11175.0,1,0,1,0,1,1,0,0,0,0,6,0,0,4,Child,26.0,Female,White,Divorced,No_not_in_school,Grade_9,27.0,64.0,1085.0,1085.0,109.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,58010.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,55.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,22.0,20.0,58010.0,50005.0,501.0,2,P
Rented,999999.0,237.0,9015.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,72.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,3005.0,0.0,204.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,5655.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,59.0,Female,Black_Negro,Divorced,Yes_in_school,4+_years_of_college,79.0,92.0,5655.0,415.0,149.0,6,P
Owned_or_being_bought_(loan),999999.0,0.0,26715.0,1,1,1,1,2,1,1,1,0,0,5,0,0,1,Child,3.0,Female,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,299.0,0,P
Rented,999999.0,262.0,21800.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,37.0,Female,Black_Negro,Separated,No_not_in_school,Grade_12,13.0,44.0,14475.0,14475.0,446.0,1,P
Rented,999999.0,175.0,7660.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,55.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,13.0,10.0,5795.0,5795.0,157.0,0,N
Rented,999999.0,287.0,9710.0,3,1,1,1,0,0,0,0,2,2,4,2,0,0,Head_Householder,31.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,11.0,16.0,4205.0,0.0,131.0,1,P
Rented,999999.0,287.0,4925.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,8.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,84.0,0,P
Rented,999999.0,325.0,6030.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,21.0,Male,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,34.0,67.0,6030.0,6005.0,159.0,1,P
Owned_or_being_bought_(loan),85000.0,0.0,9510.0,1,1,1,1,0,0,0,0,1,1,6,4,0,0,Spouse,45.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,98.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,7475.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,57.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,17.0,8.0,185.0,0.0,153.0,0,P
Rented,999999.0,500.0,75000.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,6.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,501.0,0,P
Rented,999999.0,237.0,0.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,31.0,Female,White,Divorced,No_not_in_school,1_to_3_years_of_college,0.0,0.0,0.0,0.0,1.0,1,P
Rented,999999.0,185.0,7805.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,47.0,Female,American_Indian,Divorced,No_not_in_school,Grade_1-4,22.0,18.0,7805.0,7805.0,206.0,5,N
Rented,999999.0,325.0,7405.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,9.0,Female,Other_Asian_or_Pacific,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,76.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,33805.0,1,1,1,1,0,0,0,0,2,1,4,2,1,0,Head_Householder,36.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,41.0,68.0,33805.0,33805.0,457.0,1,P
Rented,999999.0,325.0,0.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,29.0,Male,White,Never_married_single,No_not_in_school,Grade_1-4,9.0,6.0,2205.0,2205.0,58.0,0,P
Rented,999999.0,165.0,11340.0,2,0,0,0,0,0,0,0,0,0,2,0,0,1,Sibling,22.0,Male,White,Never_married_single,No_not_in_school,Grade_1-4,28.0,22.0,5095.0,5095.0,232.0,0,P
Rented,999999.0,325.0,11770.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,78.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,11770.0,0.0,336.0,7,P
Owned_or_being_bought_(loan),95000.0,0.0,11880.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,83.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,11880.0,0.0,340.0,6,P
Owned_or_being_bought_(loan),95000.0,0.0,32655.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,50.0,Female,White,Married_spouse_present,No_not_in_school,Grade_9,23.0,18.0,6285.0,6285.0,501.0,0,N
Owned_or_being_bought_(loan),137500.0,0.0,34030.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,19.0,Female,White,Never_married_single,Yes_in_school,Grade_12,23.0,45.0,2205.0,2205.0,501.0,0,P
Rented,999999.0,325.0,12695.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,26.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,11.0,16.0,1445.0,1445.0,216.0,0,P
Rented,999999.0,287.0,18880.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,34.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,25.0,15.0,18880.0,16125.0,498.0,2,P
Rented,999999.0,85.0,4510.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,68.0,Female,Black_Negro,Widowed,No_not_in_school,Grade_5-8,6.0,7.0,4510.0,0.0,129.0,6,P
Owned_or_being_bought_(loan),72500.0,0.0,24060.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,31.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,36.0,50.0,5140.0,5115.0,410.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,54795.0,1,1,1,1,0,0,0,0,2,1,7,5,0,0,Head_Householder,52.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,41.0,68.0,20285.0,20285.0,471.0,2,P
Rented,999999.0,0.0,13205.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,35.0,Female,White,Never_married_single,No_not_in_school,4+_years_of_college,24.0,44.0,13205.0,13205.0,348.0,5,P
Rented,999999.0,135.0,1105.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,40.0,Female,White,Divorced,No_not_in_school,1_to_3_years_of_college,25.0,44.0,1105.0,1105.0,22.0,5,P
Owned_or_being_bought_(loan),200000.0,0.0,47715.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,38.0,Female,White,Married_spouse_present,Yes_in_school,4+_years_of_college,27.0,72.0,14705.0,14705.0,501.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,75000.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,39.0,Female,White,Married_spouse_present,Yes_in_school,4+_years_of_college,26.0,72.0,13005.0,13005.0,501.0,0,P
Rented,999999.0,450.0,29855.0,1,1,1,1,2,1,1,1,0,0,6,0,0,1,Child,8.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,291.0,0,P
Rented,999999.0,262.0,25005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,25.0,Male,White,Never_married_single,No_not_in_school,Grade_12,25.0,15.0,25005.0,0.0,501.0,2,N
Rented,999999.0,135.0,6155.0,2,0,1,1,1,1,0,0,0,0,8,0,0,5,Child,13.0,Male,Other_race_nec,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,51.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,64085.0,1,1,1,1,0,0,0,0,1,1,6,4,0,0,Spouse,39.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,0.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,7005.0,1,1,1,1,0,0,0,0,2,1,5,3,0,0,Head_Householder,43.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,26.0,19.0,7005.0,7005.0,79.0,6,P
Owned_or_being_bought_(loan),112500.0,0.0,23735.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,13.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,321.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,21670.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,69.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,24.0,47.0,16415.0,0.0,492.0,6,P
Owned_or_being_bought_(loan),42499.0,0.0,16915.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,10.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,155.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,15995.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,85.0,Male,White,Married_spouse_present,No_not_in_school,Grade_1-4,0.0,0.0,9355.0,0.0,363.0,8,P
Rented,999999.0,175.0,9005.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,22.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,184.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,43435.0,1,2,1,1,0,0,0,0,3,1,4,1,0,0,Parent-in-Law,42.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,501.0,0,P
Rented,999999.0,105.0,18505.0,1,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,11.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,249.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,11035.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,50.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,22.0,61.0,3935.0,0.0,226.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,37155.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,63.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,29.0,72.0,17810.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,28515.0,1,1,2,1,0,0,0,0,0,0,4,1,0,0,Parent,66.0,Female,Other_Asian_or_Pacific,Married_spouse_absent,No_not_in_school,Grade_5-8,0.0,0.0,2505.0,0.0,373.0,0,P
Rented,999999.0,195.0,8845.0,1,1,1,1,0,0,0,0,2,1,5,3,1,0,Head_Householder,31.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,18.0,19.0,8845.0,8845.0,102.0,5,P
Owned_or_being_bought_(loan),112500.0,0.0,35165.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,53.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,501.0,0,P
Rented,999999.0,237.0,22005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,49.0,Male,White,Separated,No_not_in_school,1_to_3_years_of_college,41.0,72.0,22005.0,22005.0,501.0,1,P
Owned_or_being_bought_(loan),72500.0,0.0,5410.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,58.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,26.0,72.0,5410.0,0.0,111.0,0,P
Rented,999999.0,125.0,13005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,46.0,Male,White,Never_married_single,No_not_in_school,Grade_9,24.0,44.0,13005.0,13005.0,343.0,2,P
Owned_or_being_bought_(loan),137500.0,0.0,30005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,44.0,Male,White,Divorced,No_not_in_school,Grade_12,41.0,72.0,30005.0,30005.0,501.0,1,P
Rented,999999.0,262.0,24970.0,2,1,2,1,2,1,1,1,0,0,6,0,0,3,Child,9.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,256.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,38905.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,11.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,501.0,0,P
Rented,999999.0,450.0,4020.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,25.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,20.0,8.0,4005.0,4005.0,68.0,1,N
Rented,999999.0,105.0,22075.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,47.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,13.0,10.0,605.0,605.0,247.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,22380.0,1,1,0,0,0,0,0,0,1,1,3,0,0,0,Spouse,41.0,Female,White,Married_spouse_present,No_not_in_school,None_or_preschool,0.0,0.0,0.0,0.0,392.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,40515.0,2,1,0,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,52.0,Female,White,Separated,No_not_in_school,Grade_12,6.0,19.0,4205.0,4205.0,111.0,0,N
Rented,999999.0,212.0,9705.0,1,1,1,1,0,0,0,0,1,1,6,4,1,0,Spouse,33.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,0.0,0.0,0.0,0.0,100.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,57015.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,43.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,23.0,18.0,12005.0,0.0,501.0,2,N
Owned_or_being_bought_(loan),175000.0,0.0,42635.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,78.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,20385.0,0.0,501.0,8,P
Rented,999999.0,262.0,14010.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,5.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,161.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,5610.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,43.0,Female,White,Widowed,No_not_in_school,None_or_preschool,22.0,18.0,5610.0,0.0,95.0,5,N
Rented,999999.0,212.0,17700.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,48.0,Female,White,Divorced,No_not_in_school,1_to_3_years_of_college,39.0,82.0,17700.0,17695.0,466.0,2,P
Owned_or_being_bought_(loan),999999.0,0.0,50010.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,58.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,0.0,0.0,0.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,41955.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,10.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,470.0,0,P
Rented,999999.0,0.0,10005.0,1,1,2,1,2,1,1,1,0,0,4,0,0,0,Child,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,131.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,32410.0,1,1,1,1,0,0,0,0,0,0,6,0,0,0,Grandchild,16.0,Male,White,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,0.0,0.0,333.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,26410.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,64.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,43.0,86.0,26410.0,25005.0,501.0,7,P
Owned_or_being_bought_(loan),85000.0,0.0,27915.0,1,1,1,1,0,0,0,0,2,1,4,2,1,0,Head_Householder,41.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,25.0,44.0,27610.0,27305.0,377.0,2,P
Rented,999999.0,450.0,23110.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,34.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,31.0,73.0,23110.0,23005.0,501.0,2,P
Owned_or_being_bought_(loan),999999.0,0.0,8965.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,66.0,Female,White,Widowed,No_not_in_school,Grade_5-8,0.0,0.0,8965.0,4075.0,256.0,6,P
Owned_or_being_bought_(loan),999999.0,0.0,10560.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,62.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,216.0,0,P
Rented,999999.0,155.0,13210.0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,Head_Householder,65.0,Female,White,Widowed,No_not_in_school,Grade_5-8,6.0,7.0,6005.0,6005.0,173.0,5,N
Rented,999999.0,237.0,30820.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,9.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,335.0,0,P
Rented,999999.0,325.0,10325.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,23.0,Female,White,Never_married_single,No_not_in_school,4+_years_of_college,22.0,61.0,11780.0,11585.0,310.0,0,P
Rented,999999.0,237.0,1805.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,21.0,Male,White,Never_married_single,No_not_in_school,Grade_12,25.0,15.0,1805.0,1805.0,48.0,1,P
Owned_or_being_bought_(loan),200000.0,0.0,11505.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,38.0,Female,White,Divorced,No_not_in_school,1_to_3_years_of_college,41.0,68.0,11505.0,0.0,196.0,6,P
Owned_or_being_bought_(loan),21250.0,0.0,20005.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,60.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_11,27.0,29.0,20005.0,20005.0,410.0,6,N
Owned_or_being_bought_(loan),57500.0,0.0,40515.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,24.0,Male,Japanese,Never_married_single,Yes_in_school,4+_years_of_college,31.0,73.0,6430.0,6105.0,501.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,34325.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,23.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,20.0,8.0,9645.0,7465.0,501.0,0,P
Rented,999999.0,212.0,14510.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,44.0,Female,White,Widowed,No_not_in_school,Grade_12,11.0,16.0,7005.0,7005.0,297.0,2,N
Owned_or_being_bought_(loan),999999.0,0.0,7295.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,35.0,Female,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,Grade_11,24.0,44.0,5905.0,5905.0,149.0,0,P
Rented,999999.0,195.0,4955.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,72.0,Female,White,Divorced,No_not_in_school,Grade_5-8,0.0,0.0,4955.0,0.0,142.0,5,P
Owned_or_being_bought_(loan),999999.0,0.0,35325.0,1,1,1,1,2,1,1,1,0,0,5,0,0,1,Child,24.0,Male,White,Never_married_single,No_not_in_school,Grade_11,26.0,22.0,7575.0,7575.0,389.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,57715.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,71.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,41.0,68.0,44710.0,41005.0,501.0,6,P
Rented,999999.0,287.0,25810.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,23.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,23.0,18.0,18805.0,18805.0,501.0,1,P
Owned_or_being_bought_(loan),67500.0,0.0,29005.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,42.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,23.0,18.0,23000.0,22005.0,501.0,5,P
Rented,999999.0,105.0,22000.0,1,1,1,1,2,1,1,1,0,0,9,0,0,4,Child,12.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,150.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,11810.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,71.0,Male,White,Married_spouse_present,No_not_in_school,Grade_10,0.0,0.0,9245.0,0.0,268.0,5,P
Owned_or_being_bought_(loan),112500.0,0.0,12010.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,25.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,41.0,68.0,12010.0,10505.0,316.0,2,P
Owned_or_being_bought_(loan),137500.0,0.0,34000.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,50.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,34.0,67.0,19100.0,18975.0,501.0,5,P
Owned_or_being_bought_(loan),95000.0,0.0,20055.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,47.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,16.0,15.0,0.0,0.0,411.0,0,P
Rented,999999.0,0.0,4005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,71.0,Female,White,Divorced,No_not_in_school,Grade_5-8,0.0,0.0,4005.0,0.0,114.0,6,P
Rented,999999.0,237.0,23505.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,48.0,Male,White,Divorced,No_not_in_school,Grade_12,24.0,44.0,23505.0,23505.0,501.0,2,P
Owned_or_being_bought_(loan),95000.0,0.0,14110.0,1,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,15.0,Male,White,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,1100.0,999999.0,190.0,0,P
Rented,999999.0,450.0,12020.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,24.0,Male,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,25.0,44.0,12020.0,12005.0,317.0,1,P
Owned_or_being_bought_(loan),112500.0,0.0,44305.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,44.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,41.0,68.0,31005.0,31005.0,501.0,2,N
Owned_or_being_bought_(loan),137500.0,0.0,27010.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,11.0,Male,Other_race_nec,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,365.0,0,P
Rented,999999.0,237.0,8005.0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,22.0,Male,White,Never_married_single,No_not_in_school,Grade_12,18.0,19.0,8005.0,8005.0,211.0,1,P
Owned_or_being_bought_(loan),175000.0,0.0,47510.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,21.0,Male,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,25.0,48.0,7505.0,7505.0,501.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,43670.0,1,1,1,1,0,0,0,0,1,2,3,1,0,0,Spouse,22.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,38.0,68.0,14570.0,14045.0,501.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,41020.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,28.0,Male,White,Divorced,Yes_in_school,4+_years_of_college,37.0,78.0,19505.0,19505.0,501.0,0,P
Rented,999999.0,375.0,30690.0,1,1,1,1,0,0,0,0,0,0,4,0,0,1,Sibling-in-Law,23.0,Male,White,Never_married_single,No_not_in_school,Grade_11,23.0,18.0,19685.0,19685.0,401.0,0,N
Rented,999999.0,262.0,185.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,40.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,0.0,0.0,0.0,0.0,3.0,0,P
Rented,999999.0,262.0,17210.0,1,1,1,1,0,0,0,0,2,1,4,2,1,0,Head_Householder,42.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,23.0,18.0,11525.0,11525.0,233.0,2,P
Rented,999999.0,185.0,1710.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,35.0,Male,White,Divorced,Yes_in_school,4+_years_of_college,25.0,36.0,1710.0,1505.0,45.0,5,N
Rented,999999.0,195.0,23010.0,2,0,1,0,0,0,0,0,0,0,3,0,0,1,Head_Householder,34.0,Female,White,Divorced,No_not_in_school,Grade_12,21.0,66.0,12005.0,12005.0,392.0,2,P
Rented,999999.0,450.0,12540.0,1,1,1,1,0,0,0,0,2,1,6,4,0,0,Head_Householder,51.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,26.0,19.0,12505.0,12505.0,129.0,1,P
Owned_or_being_bought_(loan),137500.0,0.0,33810.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,6.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,388.0,0,P
Rented,999999.0,125.0,12810.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,0.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,117.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,18415.0,1,1,1,1,0,0,0,0,2,1,5,3,0,0,Head_Householder,35.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,31.0,33.0,18415.0,18415.0,212.0,2,P
Owned_or_being_bought_(loan),67500.0,0.0,43615.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,22.0,Female,White,Never_married_single,No_not_in_school,Grade_12,17.0,5.0,10195.0,10195.0,501.0,0,P
Rented,999999.0,185.0,23410.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,40.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,4+_years_of_college,23.0,18.0,15605.0,15605.0,479.0,1,P
Rented,999999.0,0.0,36420.0,1,1,2,1,2,1,1,1,0,0,6,0,0,1,Child,7.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,362.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,3005.0,1,0,0,0,0,0,0,0,0,0,2,0,0,1,Head_Householder,34.0,Male,White,Divorced,No_not_in_school,4+_years_of_college,63.0,96.0,0.0,0.0,62.0,6,P
Rented,999999.0,450.0,13865.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,32.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,29.0,36.0,13865.0,10045.0,236.0,2,P
Owned_or_being_bought_(loan),175000.0,0.0,51620.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,41.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,41.0,72.0,47615.0,46005.0,501.0,2,P
Rented,999999.0,155.0,17910.0,1,1,1,1,1,1,2,1,0,0,5,0,0,2,Child,11.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,206.0,0,P
Owned_or_being_bought_(loan),23750.0,0.0,9805.0,1,1,0,0,0,0,0,0,2,2,2,0,0,0,Head_Householder,62.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,0.0,0.0,201.0,2,P
Rented,999999.0,212.0,8605.0,2,1,2,1,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,52.0,Male,White,Never_married_single,No_not_in_school,Grade_5-8,23.0,18.0,1005.0,1005.0,26.0,0,N
Rented,999999.0,175.0,11210.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,3.0,Female,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,152.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,15410.0,1,1,1,1,0,0,0,0,2,1,5,3,0,0,Head_Householder,55.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,27.0,27.0,4860.0,0.0,177.0,6,N
Owned_or_being_bought_(loan),112500.0,0.0,20510.0,1,1,1,1,0,0,0,0,1,1,5,3,1,0,Spouse,42.0,Female,White,Married_spouse_present,No_not_in_school,Grade_10,11.0,16.0,8505.0,8505.0,236.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,30100.0,1,0,0,1,0,0,0,0,0,0,3,0,0,0,Child,43.0,Female,White,Married_spouse_absent,No_not_in_school,Grade_10,0.0,0.0,0.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,39620.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,60.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,22.0,51.0,7110.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,3160.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,68.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,2405.0,0.0,72.0,0,P
Rented,999999.0,500.0,19320.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,45.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,4.0,27.0,4910.0,1405.0,261.0,1,P
Owned_or_being_bought_(loan),95000.0,0.0,33015.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,53.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,29.0,27.0,30510.0,28005.0,432.0,1,N
Rented,999999.0,155.0,17005.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,10.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,230.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,36720.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,325.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,12005.0,1,1,1,1,0,0,0,0,2,1,5,2,0,1,Head_Householder,28.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,24.0,19.0,12005.0,12005.0,135.0,1,N
Owned_or_being_bought_(loan),999999.0,0.0,9890.0,1,1,1,1,0,0,0,0,1,1,4,2,2,0,Spouse,26.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,11.0,16.0,875.0,875.0,134.0,0,P
Rented,999999.0,237.0,16010.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,28.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,16.0,15.0,8005.0,8005.0,328.0,2,P
Rented,999999.0,375.0,27010.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,24.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,36.0,50.0,23005.0,23005.0,501.0,1,N
Owned_or_being_bought_(loan),85000.0,0.0,26010.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,3.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,352.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,9515.0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,49.0,Male,Other_race_nec,Divorced,No_not_in_school,Grade_5-8,30.0,24.0,7005.0,7005.0,185.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,15215.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,57.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,24.0,44.0,1205.0,1205.0,267.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,55445.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,22.0,Male,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,28.0,22.0,5725.0,5725.0,501.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,16470.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,56.0,Female,White,Widowed,No_not_in_school,Grade_12,20.0,9.0,16470.0,16115.0,434.0,2,P
Rented,999999.0,287.0,11410.0,1,2,2,2,0,0,0,0,0,0,7,0,0,1,Sibling,37.0,Male,White,Never_married_single,No_not_in_school,None_or_preschool,9.0,6.0,0.0,0.0,94.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,21215.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,66.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,23.0,18.0,4805.0,0.0,282.0,7,P
Owned_or_being_bought_(loan),5000.0,0.0,4510.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,70.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,2005.0,0.0,102.0,0,P
Rented,999999.0,500.0,33490.0,1,1,1,1,0,0,0,0,0,0,7,0,0,0,Grandchild,2.0,Female,Black_Negro,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,307.0,0,P
Rented,999999.0,75.0,26390.0,1,1,1,1,0,0,0,0,0,0,10,0,0,2,Sibling,30.0,Female,White,Married_spouse_absent,No_not_in_school,None_or_preschool,11.0,11.0,7620.0,6765.0,179.0,0,N
Rented,999999.0,165.0,6505.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,56.0,Female,White,Married_spouse_present,No_not_in_school,Grade_10,0.0,0.0,0.0,0.0,133.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,28435.0,1,1,0,0,0,0,0,0,1,1,3,0,0,0,Spouse,60.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,498.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,24010.0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,30.0,Female,White,Divorced,No_not_in_school,Grade_12,11.0,16.0,3310.0,2305.0,87.0,0,P
Rented,999999.0,237.0,9030.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,39.0,Female,Other_Asian_or_Pacific,Never_married_single,No_not_in_school,4+_years_of_college,41.0,68.0,9030.0,9005.0,238.0,5,P
Rented,999999.0,375.0,22010.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,63.0,Female,White,Never_married_single,No_not_in_school,4+_years_of_college,27.0,72.0,22010.0,18005.0,501.0,5,P
Owned_or_being_bought_(loan),77500.0,0.0,6085.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,32.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,70.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,22155.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,9.0,Male,Other_Asian_or_Pacific,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,255.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,33625.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,58.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,22.0,61.0,10615.0,10615.0,501.0,0,N
Rented,999999.0,115.0,5005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,40.0,Female,Black_Negro,Separated,No_not_in_school,Grade_12,24.0,44.0,5005.0,5005.0,132.0,2,N
Owned_or_being_bought_(loan),95000.0,0.0,14005.0,1,1,1,1,0,0,0,0,2,1,7,5,2,0,Head_Householder,30.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,39.0,82.0,14005.0,14005.0,128.0,2,P
Owned_or_being_bought_(loan),77500.0,0.0,28005.0,1,0,0,1,0,0,1,1,0,0,3,0,0,1,Child,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,477.0,0,P
Rented,999999.0,262.0,18310.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,24.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,23.0,18.0,14305.0,14305.0,375.0,1,P
Rented,999999.0,450.0,0.0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,61.0,Male,White,Never_married_single,No_not_in_school,Grade_5-8,0.0,0.0,4455.0,0.0,117.0,0,P
Rented,999999.0,450.0,4110.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,46.0,Male,Black_Negro,Divorced,No_not_in_school,4+_years_of_college,26.0,58.0,4110.0,1505.0,108.0,2,P
Owned_or_being_bought_(loan),175000.0,0.0,27480.0,1,0,1,0,1,1,0,0,0,0,5,0,0,3,Child,16.0,Female,White,Never_married_single,Yes_in_school,Grade_10,0.0,0.0,0.0,0.0,321.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,31695.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,14.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,325.0,0,P
Rented,999999.0,212.0,10505.0,3,1,1,1,0,0,0,0,1,1,5,3,1,0,Spouse,34.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,121.0,0,P
Owned_or_being_bought_(loan),47500.0,0.0,12665.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,83.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,0.0,0.0,3505.0,0.0,287.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,37715.0,1,1,1,1,2,1,1,1,0,0,8,0,0,5,Child,16.0,Female,White,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,0.0,0.0,295.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,75000.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,37.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,41.0,80.0,75000.0,75000.0,501.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,7865.0,1,0,2,0,4,1,0,0,0,0,5,2,0,0,Head_Householder,38.0,Female,Other_Asian_or_Pacific,Divorced,No_not_in_school,1_to_3_years_of_college,0.0,0.0,4310.0,0.0,90.0,5,P
Owned_or_being_bought_(loan),137500.0,0.0,21885.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,18.0,Female,White,Never_married_single,Yes_in_school,Grade_11,0.0,0.0,0.0,0.0,384.0,0,P
Rented,999999.0,262.0,8385.0,1,1,2,1,0,0,0,0,2,3,7,1,1,0,Child-in-law,24.0,Male,Chinese,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,175.0,0.0,71.0,0,P
Rented,999999.0,105.0,30845.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,3.0,Male,Other_Asian_or_Pacific,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,417.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,12510.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,12.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,213.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,47715.0,1,1,2,1,0,0,0,0,2,1,5,1,0,0,Head_Householder,45.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,23.0,18.0,24650.0,20815.0,501.0,2,P
Rented,999999.0,262.0,16510.0,1,2,0,0,0,0,0,0,4,1,5,0,0,0,Sibling-in-Law,23.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,24.0,44.0,0.0,0.0,182.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,18135.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,28.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,38.0,68.0,13515.0,17505.0,371.0,2,P
Rented,999999.0,195.0,12005.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,31.0,Male,White,Married_spouse_present,No_not_in_school,Grade_9,37.0,49.0,12005.0,12005.0,162.0,5,P
Rented,999999.0,450.0,23770.0,1,1,1,1,2,1,1,1,0,0,9,0,0,6,Child,14.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,153.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,41770.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,16.0,Male,White,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,0.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,19355.0,1,1,1,1,0,0,0,0,2,1,6,4,0,0,Head_Householder,32.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,24.0,19.0,19355.0,19355.0,199.0,5,P
Rented,999999.0,212.0,2505.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,42.0,Male,White,Never_married_single,No_not_in_school,Grade_5-8,23.0,18.0,2505.0,0.0,66.0,2,P
Rented,999999.0,500.0,12970.0,2,0,0,1,0,0,0,0,0,0,2,0,0,0,Head_Householder,55.0,Female,Black_Negro,Widowed,No_not_in_school,Grade_5-8,17.0,13.0,9005.0,9005.0,266.0,2,P
Owned_or_being_bought_(loan),137500.0,0.0,36515.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,6.0,Male,Black_Negro,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,494.0,0,P
Rented,999999.0,175.0,14130.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,30.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,13.0,10.0,3125.0,3125.0,241.0,0,P
Rented,999999.0,287.0,13415.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,5.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,154.0,0,P
Rented,999999.0,212.0,2005.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,3.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,22.0,0,P
Rented,999999.0,155.0,19425.0,1,2,1,1,2,1,1,1,0,0,14,0,0,5,Child,11.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,138.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,75000.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,62.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,2735.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,18.0,Female,White,Never_married_single,Yes_in_school,Grade_11,22.0,18.0,3290.0,1435.0,87.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,36655.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,17.0,Female,White,Never_married_single,Yes_in_school,Grade_11,24.0,47.0,135.0,135.0,501.0,0,P
Rented,999999.0,375.0,0.0,1,1,1,1,0,0,0,0,2,1,5,3,0,0,Head_Householder,49.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,0.0,0.0,1.0,1,P
Owned_or_being_bought_(loan),95000.0,0.0,25010.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,43.0,Female,White,Divorced,Yes_in_school,4+_years_of_college,26.0,72.0,22005.0,22005.0,501.0,2,P
Owned_or_being_bought_(loan),52500.0,0.0,25010.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,7.0,Female,Black_Negro,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,338.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,12005.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,3.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,138.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,18410.0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,45.0,Male,White,Separated,No_not_in_school,1_to_3_years_of_college,32.0,37.0,22005.0,0.0,501.0,0,P
Rented,999999.0,375.0,38010.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,11.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,501.0,0,P
Rented,999999.0,175.0,2205.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,51.0,Male,White,Never_married_single,No_not_in_school,Grade_12,41.0,68.0,2205.0,2205.0,58.0,2,P
Owned_or_being_bought_(loan),112500.0,0.0,18515.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,34.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,19.0,46.0,6505.0,6505.0,379.0,0,P
Rented,999999.0,375.0,41630.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,23.0,Female,Black_Negro,Never_married_single,No_not_in_school,1_to_3_years_of_college,21.0,45.0,5005.0,5005.0,501.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,18010.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,32.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,30.0,67.0,6005.0,0.0,369.0,2,N
Rented,999999.0,325.0,16005.0,3,0,1,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,36.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_12,30.0,24.0,9885.0,9885.0,260.0,0,P
Rented,999999.0,237.0,16010.0,2,1,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,32.0,Male,White,Never_married_single,No_not_in_school,Grade_12,18.0,8.0,12005.0,12005.0,316.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,34525.0,1,2,2,2,2,1,1,1,0,0,5,0,0,0,Child,3.0,Male,Other_Asian_or_Pacific,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,375.0,0,P
Owned_or_being_bought_(loan),28750.0,0.0,38115.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,26.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,20.0,8.0,5205.0,5205.0,501.0,0,N
Owned_or_being_bought_(loan),85000.0,0.0,19150.0,1,2,3,2,2,1,1,1,6,3,7,1,1,1,Child,18.0,Female,White,Married_spouse_present,No_not_in_school,Grade_11,0.0,0.0,0.0,0.0,158.0,0,P
Rented,999999.0,262.0,15005.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,41.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,33.0,44.0,15005.0,15005.0,256.0,5,P
Owned_or_being_bought_(loan),85000.0,0.0,36870.0,1,1,1,1,0,0,0,0,2,1,5,3,0,0,Head_Householder,43.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,22.0,18.0,16005.0,16005.0,401.0,5,P
Rented,999999.0,237.0,15005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,53.0,Male,White,Divorced,No_not_in_school,Grade_12,26.0,32.0,15005.0,15005.0,395.0,5,P
Owned_or_being_bought_(loan),999999.0,0.0,8410.0,1,1,0,0,0,0,0,0,1,2,2,0,0,0,Spouse,67.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,25.0,18.0,3300.0,0.0,191.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,12170.0,1,1,1,1,0,0,0,0,1,2,4,2,0,0,Spouse,39.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_10,41.0,68.0,9010.0,0.0,165.0,0,N
Rented,999999.0,375.0,10020.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,13.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,115.0,0,P
Rented,999999.0,450.0,7810.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,23.0,Female,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,18.0,44.0,7810.0,7725.0,206.0,1,P
Owned_or_being_bought_(loan),999999.0,0.0,-9215.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,51.0,Female,Black_Negro,Separated,No_not_in_school,4+_years_of_college,17.0,8.0,-9215.0,0.0,1.0,7,P
Owned_or_being_bought_(loan),112500.0,0.0,35015.0,1,1,1,1,0,0,0,0,1,1,6,4,1,0,Spouse,45.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,334.0,0,P
Rented,999999.0,375.0,12270.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,6.0,Female,Black_Negro,Never_married_single,No_not_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,141.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,5730.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,57.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,24.0,47.0,4085.0,4085.0,117.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,13010.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,25.0,Male,Black_Negro,Never_married_single,No_not_in_school,Grade_11,20.0,9.0,0.0,0.0,141.0,0,P
Rented,999999.0,450.0,42720.0,1,0,0,0,0,0,0,0,0,0,4,0,0,3,Head_Householder,33.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,23.0,18.0,8005.0,8005.0,501.0,2,P
Rented,999999.0,237.0,30005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,28.0,Male,Black_Negro,Never_married_single,No_not_in_school,4+_years_of_college,42.0,86.0,30005.0,30005.0,501.0,5,P
Owned_or_being_bought_(loan),200000.0,0.0,22660.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,57.0,Female,White,Divorced,No_not_in_school,4+_years_of_college,39.0,81.0,18690.0,18615.0,464.0,6,P
Owned_or_being_bought_(loan),137500.0,0.0,53490.0,1,1,2,1,0,0,0,0,0,0,5,1,0,0,Parent,86.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,9970.0,0.0,501.0,0,P
Rented,999999.0,237.0,11290.0,1,1,1,1,1,1,2,1,0,0,7,0,0,3,Child,12.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,103.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,50560.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,57.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,41.0,68.0,39710.0,36005.0,501.0,1,P
Rented,999999.0,450.0,10710.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,46.0,Female,White,Divorced,No_not_in_school,4+_years_of_college,26.0,72.0,10710.0,10505.0,219.0,2,P
Owned_or_being_bought_(loan),77500.0,0.0,31245.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,29.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,22.0,51.0,16135.0,16135.0,501.0,0,P
Rented,999999.0,325.0,33005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,48.0,Male,White,Divorced,No_not_in_school,1_to_3_years_of_college,41.0,68.0,33005.0,33005.0,501.0,1,P
Owned_or_being_bought_(loan),37500.0,0.0,50630.0,1,1,1,1,2,1,1,1,0,0,7,0,0,3,Child,27.0,Female,White,Never_married_single,No_not_in_school,Grade_1-4,23.0,18.0,8005.0,8005.0,427.0,0,P
Rented,999999.0,262.0,5515.0,1,1,1,1,0,0,0,0,2,1,6,2,2,2,Head_Householder,33.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,Grade_5-8,25.0,15.0,3005.0,0.0,54.0,1,P
Rented,999999.0,125.0,7675.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,62.0,Male,White,Never_married_single,No_not_in_school,Grade_9,0.0,0.0,7675.0,0.0,202.0,5,P
Rented,999999.0,237.0,14005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,27.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,39.0,73.0,14015.0,6005.0,369.0,0,P
Rented,999999.0,450.0,22610.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,39.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,37.0,49.0,22610.0,22005.0,463.0,1,P
Owned_or_being_bought_(loan),137500.0,0.0,30515.0,2,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,39.0,Female,White,Divorced,No_not_in_school,1_to_3_years_of_college,19.0,46.0,27005.0,27005.0,501.0,2,P
Rented,999999.0,500.0,6610.0,1,0,1,0,0,0,0,0,0,0,5,4,1,0,Head_Householder,29.0,Female,White,Separated,No_not_in_school,Grade_12,25.0,44.0,6610.0,2305.0,77.0,1,P
Rented,999999.0,0.0,10010.0,1,1,1,1,1,1,2,1,0,0,8,0,0,5,Child,9.0,Male,White,Never_married_single,No_not_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,83.0,0,P
Rented,999999.0,325.0,75000.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,37.0,Male,White,Separated,No_not_in_school,1_to_3_years_of_college,32.0,34.0,75000.0,0.0,501.0,1,N
Owned_or_being_bought_(loan),137500.0,0.0,44170.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,62.0,Female,White,Married_spouse_present,No_not_in_school,Grade_10,0.0,0.0,655.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),57500.0,0.0,75000.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,69.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,31.0,33.0,75000.0,75000.0,501.0,7,P
Owned_or_being_bought_(loan),62500.0,0.0,26125.0,1,1,1,1,0,0,0,0,1,2,4,2,1,0,Spouse,35.0,Male,White,Married_spouse_present,No_not_in_school,Grade_9,25.0,15.0,15120.0,14885.0,353.0,0,N
Rented,999999.0,155.0,19770.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,68.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_9,0.0,0.0,3255.0,0.0,347.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,9210.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,68.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,11.0,22.0,5165.0,0.0,209.0,0,P
Rented,999999.0,237.0,23205.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,81.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,24.0,47.0,5700.0,0.0,501.0,8,P
Owned_or_being_bought_(loan),67500.0,0.0,35115.0,1,1,1,0,3,1,0,0,2,1,3,0,0,0,Head_Householder,61.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,32.0,44.0,31450.0,28815.0,501.0,5,N
Rented,999999.0,212.0,5005.0,3,0,2,0,1,1,0,0,0,0,5,0,0,3,Child,4.0,Female,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,58.0,0,P
Rented,999999.0,325.0,74410.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,36.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,61.0,93.0,74410.0,66005.0,501.0,5,P
Rented,999999.0,165.0,24475.0,1,1,1,1,0,0,0,0,1,1,6,4,0,0,Spouse,48.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,13.0,10.0,8465.0,8465.0,243.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,27770.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,50.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,37.0,49.0,2605.0,2605.0,363.0,5,N
Rented,999999.0,375.0,27005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,48.0,Female,White,Divorced,No_not_in_school,Grade_12,41.0,68.0,27005.0,27005.0,501.0,2,P
Rented,999999.0,65.0,14595.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,20.0,Male,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,24.0,47.0,14595.0,14595.0,385.0,1,P
Rented,999999.0,105.0,3905.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,55.0,Male,White,Divorced,No_not_in_school,4+_years_of_college,0.0,0.0,3905.0,0.0,103.0,1,P
Owned_or_being_bought_(loan),175000.0,0.0,46010.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,7.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,472.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,45150.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,53.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,165.0,0.0,501.0,0,P
Rented,999999.0,185.0,4515.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,71.0,Female,White,Divorced,No_not_in_school,Grade_12,26.0,72.0,4515.0,1625.0,129.0,6,N
Owned_or_being_bought_(loan),72500.0,0.0,8065.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,61.0,Female,White,Married_spouse_present,No_not_in_school,Grade_11,0.0,0.0,0.0,0.0,165.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,25610.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,6.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,263.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,33515.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,10.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,453.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,2115.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,16.0,Female,Black_Negro,Never_married_single,Yes_in_school,Grade_11,0.0,0.0,0.0,0.0,36.0,0,P
Rented,999999.0,375.0,20005.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,24.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,30.0,27.0,20005.0,20005.0,341.0,2,P
Rented,999999.0,212.0,26090.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,26.0,Female,White,Never_married_single,No_not_in_school,4+_years_of_college,32.0,42.0,26090.0,26005.0,501.0,6,P
Rented,999999.0,500.0,16510.0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,54.0,Male,White,Divorced,No_not_in_school,Grade_12,35.0,62.0,16510.0,16005.0,435.0,1,P
Rented,999999.0,75.0,3425.0,1,0,1,0,0,0,0,0,0,0,3,2,2,0,Head_Householder,22.0,Female,Black_Negro,Never_married_single,No_not_in_school,Grade_11,24.0,44.0,3425.0,0.0,58.0,2,P
Owned_or_being_bought_(loan),77500.0,0.0,22010.0,1,1,1,1,0,0,0,0,2,1,4,2,1,0,Head_Householder,32.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,4+_years_of_college,31.0,73.0,20505.0,20505.0,298.0,2,P
Rented,999999.0,237.0,8410.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,65.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,39.0,82.0,3805.0,0.0,191.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,27070.0,1,1,1,1,0,0,0,0,1,1,4,1,0,0,Spouse,51.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,41.0,68.0,21665.0,21665.0,366.0,0,N
Owned_or_being_bought_(loan),112500.0,0.0,0.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,60.0,Female,White,Divorced,No_not_in_school,1_to_3_years_of_college,0.0,0.0,0.0,0.0,1.0,6,P
Owned_or_being_bought_(loan),85000.0,0.0,49755.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,55.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,31.0,33.0,20610.0,19005.0,501.0,6,N
Owned_or_being_bought_(loan),77500.0,0.0,24010.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,54.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,45.0,82.0,24010.0,21005.0,492.0,6,P
Rented,999999.0,375.0,14455.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,80.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,3920.0,0.0,253.0,1,P
Rented,999999.0,287.0,3020.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,32.0,Female,White,Separated,No_not_in_school,Grade_12,23.0,45.0,3020.0,3005.0,80.0,1,P
Owned_or_being_bought_(loan),137500.0,0.0,65570.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,22.0,Male,American_Indian,Never_married_single,No_not_in_school,Grade_11,23.0,18.0,13985.0,13985.0,501.0,0,N
Owned_or_being_bought_(loan),67500.0,0.0,18010.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,14.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,207.0,0,P
Rented,999999.0,325.0,20010.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,21.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,26.0,52.0,10005.0,10005.0,341.0,1,P
Rented,999999.0,287.0,0.0,1,0,1,0,0,0,0,0,0,0,4,3,1,0,Head_Householder,29.0,Female,Black_Negro,Divorced,No_not_in_school,Grade_11,0.0,0.0,0.0,0.0,1.0,2,P
Owned_or_being_bought_(loan),85000.0,0.0,31735.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,11.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,415.0,0,P
Rented,999999.0,105.0,16510.0,1,1,1,1,2,1,1,1,0,0,6,0,0,2,Child,7.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,169.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,26510.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,55.0,Female,White,Married_spouse_present,No_not_in_school,Grade_10,0.0,0.0,0.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,73020.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,13.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,501.0,0,P
Rented,999999.0,375.0,505.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,22.0,Female,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,22.0,61.0,505.0,505.0,13.0,1,P
Owned_or_being_bought_(loan),77500.0,0.0,27320.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,42.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,37.0,49.0,15005.0,15005.0,479.0,6,P
Owned_or_being_bought_(loan),52500.0,0.0,13005.0,1,1,0,0,0,0,0,0,1,1,3,0,0,0,Spouse,30.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,222.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,5910.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,75.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,2805.0,0.0,134.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,40510.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,45.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,17.0,8.0,14005.0,14005.0,501.0,0,N
Owned_or_being_bought_(loan),16250.0,0.0,10005.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,22.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,17.0,11.0,10005.0,10005.0,170.0,2,N
Owned_or_being_bought_(loan),67500.0,0.0,25005.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,6.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,287.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,8275.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,74.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,1325.0,0.0,188.0,7,P
Owned_or_being_bought_(loan),16250.0,0.0,18005.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,39.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,34.0,53.0,18005.0,18005.0,243.0,6,P
Owned_or_being_bought_(loan),85000.0,0.0,11065.0,1,0,0,1,0,0,0,0,0,0,5,0,0,0,Parent,35.0,Female,White,Married_spouse_absent,No_not_in_school,Grade_11,19.0,17.0,8060.0,2055.0,127.0,0,P
Rented,999999.0,287.0,15410.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,27.0,Male,White,Divorced,No_not_in_school,Grade_10,26.0,32.0,15410.0,15005.0,406.0,2,P
Owned_or_being_bought_(loan),23750.0,0.0,9670.0,1,0,1,0,1,1,0,0,0,0,7,0,0,4,Child,9.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,89.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,42650.0,1,1,1,1,0,0,0,0,1,1,5,3,1,0,Spouse,30.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,41.0,68.0,13005.0,13005.0,490.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,45615.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,53.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,41.0,68.0,43010.0,40005.0,501.0,5,P
Owned_or_being_bought_(loan),85000.0,0.0,22210.0,1,1,2,1,0,0,0,0,0,0,5,1,0,0,Parent-in-Law,55.0,Female,White,Widowed,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,249.0,0,P
Rented,999999.0,195.0,10135.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,17.0,Male,White,Never_married_single,No_not_in_school,Grade_11,24.0,19.0,605.0,605.0,172.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,20425.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,24.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,31.0,33.0,6380.0,6125.0,418.0,1,P
Rented,999999.0,85.0,8470.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,83.0,Male,Black_Negro,Divorced,No_not_in_school,Grade_1-4,0.0,0.0,8470.0,0.0,242.0,5,P
Owned_or_being_bought_(loan),77500.0,0.0,42020.0,1,1,1,1,0,0,0,0,1,1,7,5,0,0,Spouse,34.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_5-8,17.0,13.0,15010.0,8005.0,385.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,24070.0,1,1,0,0,0,0,0,0,0,0,3,0,0,0,Other_relatives,40.0,Male,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,30.0,67.0,1530.0,0.0,422.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,15085.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,9.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,204.0,0,P
Rented,999999.0,155.0,18145.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,16.0,Female,White,Never_married_single,Yes_in_school,Grade_10,18.0,44.0,2935.0,2935.0,186.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,75000.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,59.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,425.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,17900.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,61.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,24.0,47.0,12290.0,11965.0,366.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,6555.0,1,0,1,0,1,1,0,0,0,0,2,0,0,0,Child,15.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,595.0,999999.0,130.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,46855.0,1,1,1,1,0,0,0,0,2,1,4,1,0,0,Head_Householder,39.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,22.0,51.0,15680.0,15545.0,501.0,2,P
Owned_or_being_bought_(loan),72500.0,0.0,6710.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,69.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,4505.0,0.0,152.0,8,P
Owned_or_being_bought_(loan),21250.0,0.0,17085.0,1,1,0,0,0,0,0,0,2,2,2,0,0,0,Head_Householder,65.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,6510.0,0.0,388.0,6,P
Rented,999999.0,375.0,25005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,33.0,Male,Black_Negro,Never_married_single,No_not_in_school,4+_years_of_college,35.0,62.0,25005.0,25005.0,501.0,2,P
Rented,999999.0,325.0,7300.0,1,1,1,1,0,0,0,0,1,1,3,1,1,0,Spouse,21.0,Female,Chinese,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,124.0,0,P
Rented,999999.0,195.0,18405.0,1,0,1,0,0,0,0,0,0,0,5,0,0,0,Other_relatives,17.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_11,20.0,9.0,4775.0,4775.0,215.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,26460.0,1,1,1,1,0,0,0,0,2,1,6,1,0,0,Head_Householder,66.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_5-8,20.0,9.0,8450.0,0.0,258.0,7,P
Rented,999999.0,262.0,50410.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,3.0,Male,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,501.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,35040.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,53.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,38.0,68.0,20890.0,19955.0,501.0,5,N
Owned_or_being_bought_(loan),175000.0,0.0,44130.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,11.0,Male,Other_Asian_or_Pacific,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,373.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,22765.0,1,1,1,1,2,1,1,1,0,0,8,0,0,5,Child,15.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,0.0,999999.0,184.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,52840.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,10.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,501.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,64020.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,13.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,501.0,0,P
Rented,999999.0,450.0,11455.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,33.0,Male,White,Divorced,No_not_in_school,1_to_3_years_of_college,25.0,18.0,1560.0,125.0,41.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,11085.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,54.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,15.0,28.0,11085.0,11085.0,227.0,6,P
Owned_or_being_bought_(loan),112500.0,0.0,44170.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,46.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,31.0,73.0,31210.0,31005.0,501.0,6,P
Rented,999999.0,185.0,15020.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,28.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,27.0,64.0,15020.0,15005.0,396.0,2,P
Rented,999999.0,105.0,10005.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,45.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_12,25.0,15.0,10005.0,10005.0,205.0,1,N
Rented,999999.0,262.0,18810.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,3.0,Male,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,172.0,0,P
Rented,999999.0,287.0,16640.0,1,1,2,1,0,0,0,0,0,0,4,1,0,0,Parent,54.0,Female,White,Divorced,No_not_in_school,4+_years_of_college,26.0,18.0,9795.0,9795.0,218.0,0,P
Rented,999999.0,237.0,6765.0,1,0,2,0,0,0,0,0,0,0,5,0,0,0,Grandchild,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,78.0,0,P
Rented,999999.0,135.0,2915.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,21.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_11,20.0,9.0,205.0,205.0,50.0,1,N
Owned_or_being_bought_(loan),999999.0,0.0,22010.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,52.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,35.0,41.0,15005.0,0.0,386.0,2,P
Owned_or_being_bought_(loan),175000.0,0.0,39820.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,22.0,Male,White,Never_married_single,No_not_in_school,Grade_12,26.0,12.0,6005.0,6005.0,446.0,0,N
Owned_or_being_bought_(loan),112500.0,0.0,43200.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,60.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,36.0,66.0,5810.0,4005.0,501.0,0,P
Rented,999999.0,175.0,5830.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,49.0,Female,White,Divorced,No_not_in_school,None_or_preschool,16.0,15.0,5830.0,905.0,99.0,5,P
Owned_or_being_bought_(loan),175000.0,0.0,24660.0,1,1,1,1,0,0,0,0,2,1,4,2,2,0,Head_Householder,41.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,41.0,68.0,24660.0,23405.0,333.0,2,P
Rented,999999.0,262.0,17210.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,19.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,28.0,45.0,7205.0,7205.0,352.0,0,P
Rented,999999.0,450.0,32520.0,1,1,1,2,0,0,0,0,0,0,5,1,0,0,Parent,61.0,Male,White,Separated,No_not_in_school,Grade_12,41.0,68.0,10505.0,0.0,364.0,0,N
Owned_or_being_bought_(loan),62500.0,0.0,15760.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,24.0,Male,Black_Negro,Married_spouse_absent,Yes_in_school,1_to_3_years_of_college,24.0,44.0,2755.0,0.0,276.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,75000.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,10.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,501.0,0,P
Rented,999999.0,375.0,2010.0,6,1,0,0,0,0,0,0,2,2,2,0,0,0,Head_Householder,29.0,Female,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,4+_years_of_college,24.0,44.0,1005.0,1005.0,41.0,1,P
Rented,999999.0,165.0,18010.0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,17.0,Male,White,Never_married_single,No_not_in_school,Grade_5-8,14.0,26.0,2245.0,2245.0,59.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,34310.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,65.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,6.0,7.0,5420.0,3065.0,501.0,0,N
Rented,999999.0,500.0,27020.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,32.0,Male,White,Divorced,No_not_in_school,4+_years_of_college,9.0,6.0,27020.0,4005.0,501.0,1,P
Rented,999999.0,500.0,3005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,21.0,Female,White,Never_married_single,Yes_in_school,4+_years_of_college,24.0,47.0,0.0,0.0,1.0,0,P
Rented,999999.0,165.0,9005.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,3.0,Male,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,103.0,0,P
Rented,999999.0,375.0,40550.0,1,1,0,0,0,0,0,0,2,2,2,0,0,0,Head_Householder,25.0,Female,White,Married_spouse_present,Yes_in_school,4+_years_of_college,19.0,46.0,15800.0,15705.0,501.0,1,P
Owned_or_being_bought_(loan),200000.0,0.0,75000.0,1,1,2,1,0,0,0,0,0,0,6,1,0,0,Parent,50.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,10005.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,39210.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,41.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,41.0,84.0,39210.0,35005.0,501.0,5,N
Owned_or_being_bought_(loan),999999.0,0.0,29820.0,1,1,1,1,0,0,0,0,2,1,6,2,0,0,Head_Householder,35.0,Male,White,Married_spouse_present,No_not_in_school,Grade_1-4,16.0,15.0,11805.0,11805.0,291.0,1,P
Owned_or_being_bought_(loan),200000.0,0.0,75000.0,1,1,1,1,0,0,0,0,2,2,4,2,0,0,Head_Householder,39.0,Female,White,Married_spouse_present,Yes_in_school,4+_years_of_college,33.0,76.0,37150.0,1685.0,501.0,6,P
Owned_or_being_bought_(loan),200000.0,0.0,42095.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,50.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,41.0,68.0,38090.0,38005.0,501.0,5,P
Owned_or_being_bought_(loan),112500.0,0.0,31415.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,12.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,361.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,75000.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,72.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,5110.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,14015.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,70.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,11010.0,0.0,318.0,7,P
Owned_or_being_bought_(loan),72500.0,0.0,49060.0,2,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,25.0,Male,White,Never_married_single,No_not_in_school,Grade_12,23.0,18.0,9910.0,9885.0,501.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,23005.0,1,1,1,1,0,0,0,0,2,1,4,2,1,0,Head_Householder,26.0,Male,White,Married_spouse_present,No_not_in_school,Grade_11,23.0,18.0,23005.0,23005.0,311.0,1,P
Rented,999999.0,325.0,6005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,67.0,Female,White,Widowed,No_not_in_school,Grade_12,41.0,77.0,6005.0,0.0,172.0,6,P
Owned_or_being_bought_(loan),137500.0,0.0,55865.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,49.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,18.0,25.0,18255.0,18255.0,501.0,2,P
Rented,999999.0,325.0,20005.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,28.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,31.0,33.0,20005.0,20005.0,341.0,2,P
Owned_or_being_bought_(loan),200000.0,0.0,75000.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,42.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,4+_years_of_college,79.0,92.0,75000.0,0.0,501.0,1,P
Rented,999999.0,500.0,13505.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,29.0,Female,White,Divorced,No_not_in_school,Grade_12,22.0,61.0,13505.0,13505.0,356.0,1,P
Owned_or_being_bought_(loan),57500.0,0.0,30015.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,18.0,Female,White,Never_married_single,Yes_in_school,Grade_11,24.0,47.0,2005.0,2005.0,393.0,0,P
Rented,999999.0,115.0,4625.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,54.0,Female,White,Widowed,No_not_in_school,Grade_5-8,0.0,0.0,4625.0,0.0,122.0,7,P
Owned_or_being_bought_(loan),999999.0,0.0,29100.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,68.0,Male,White,Married_spouse_present,No_not_in_school,Grade_9,0.0,0.0,5740.0,0.0,501.0,7,P
Owned_or_being_bought_(loan),47500.0,0.0,6470.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,67.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,1645.0,0.0,147.0,2,P
Owned_or_being_bought_(loan),47500.0,0.0,15005.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,60.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,33.0,48.0,15005.0,15005.0,307.0,7,N
Owned_or_being_bought_(loan),112500.0,0.0,40015.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,50.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,41.0,72.0,32010.0,30005.0,501.0,6,P
Rented,999999.0,450.0,23105.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,7.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,312.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,16025.0,1,2,2,2,0,0,0,0,1,1,6,1,1,0,Spouse,35.0,Female,Chinese,Married_spouse_present,No_not_in_school,Grade_12,24.0,44.0,3805.0,3805.0,156.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,37670.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,18.0,Female,White,Never_married_single,Yes_in_school,Grade_12,27.0,22.0,4090.0,4005.0,319.0,0,P
Rented,999999.0,165.0,11440.0,1,0,2,0,6,1,0,0,0,0,6,2,1,2,Head_Householder,23.0,Female,Black_Negro,Never_married_single,No_not_in_school,Grade_12,22.0,61.0,5470.0,2005.0,114.0,2,P
Rented,999999.0,115.0,12130.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,25.0,Male,White,Married_spouse_present,No_not_in_school,Grade_11,20.0,9.0,12005.0,12005.0,207.0,2,P
Owned_or_being_bought_(loan),200000.0,0.0,28240.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,64.0,Female,White,Divorced,No_not_in_school,4+_years_of_college,48.0,87.0,28240.0,225.0,501.0,1,P
Owned_or_being_bought_(loan),112500.0,0.0,38360.0,1,1,2,1,0,0,0,0,2,1,5,2,0,0,Head_Householder,42.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,24.0,44.0,23560.0,23345.0,430.0,2,P
Owned_or_being_bought_(loan),95000.0,0.0,18130.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,51.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,24.0,44.0,18130.0,17825.0,478.0,5,N
Rented,999999.0,375.0,1505.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,21.0,Female,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,18.0,44.0,3915.0,3915.0,103.0,0,P
Rented,999999.0,165.0,21490.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,11.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,366.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,28605.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,67.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,23.0,18.0,28605.0,28605.0,501.0,7,P
Owned_or_being_bought_(loan),112500.0,0.0,26000.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,36.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,11.0,18.0,26000.0,26505.0,443.0,1,P
Rented,999999.0,450.0,15005.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,49.0,Female,White,Married_spouse_present,No_not_in_school,Grade_9,0.0,0.0,0.0,0.0,168.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,31815.0,1,1,1,1,0,0,0,0,2,1,5,3,1,0,Head_Householder,36.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,26.0,19.0,25805.0,25805.0,365.0,2,N
Owned_or_being_bought_(loan),47500.0,0.0,15005.0,1,1,1,1,0,0,0,0,1,1,4,2,1,0,Spouse,34.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,203.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,2625.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,8.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,23.0,0,P
Rented,999999.0,375.0,16505.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,40.0,Male,White,Divorced,No_not_in_school,Grade_12,29.0,27.0,16005.0,16005.0,422.0,0,P
Rented,999999.0,262.0,15005.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,3.0,Female,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,256.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,62005.0,1,1,0,0,0,0,0,0,1,2,2,0,0,0,Spouse,55.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,79.0,92.0,62005.0,62005.0,501.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,61865.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,69.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,35.0,46.0,29950.0,24445.0,501.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,9630.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,70.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,9630.0,0.0,275.0,8,P
Owned_or_being_bought_(loan),200000.0,0.0,21010.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,28.0,Female,Chinese,Married_spouse_present,No_not_in_school,4+_years_of_college,0.0,0.0,0.0,0.0,430.0,0,P
Rented,999999.0,212.0,13505.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,34.0,Female,White,Divorced,No_not_in_school,Grade_12,22.0,61.0,13505.0,13505.0,356.0,5,P
Owned_or_being_bought_(loan),112500.0,0.0,53330.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,18.0,Female,White,Never_married_single,Yes_in_school,Grade_11,16.0,15.0,1375.0,1375.0,441.0,0,P
Rented,999999.0,262.0,23005.0,1,1,1,1,0,0,0,0,1,1,6,4,2,0,Spouse,26.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,21.0,45.0,0.0,0.0,236.0,0,P
Rented,999999.0,500.0,41085.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,53.0,Male,White,Divorced,No_not_in_school,4+_years_of_college,24.0,47.0,41085.0,41085.0,501.0,1,P
Rented,999999.0,325.0,0.0,1,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,4.0,Female,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,1.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,25940.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,66.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,35.0,68.0,24735.0,24735.0,501.0,7,P
Owned_or_being_bought_(loan),112500.0,0.0,35365.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,43.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,41.0,72.0,19405.0,19405.0,501.0,2,P
Owned_or_being_bought_(loan),72500.0,0.0,19990.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,33.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,21.0,45.0,0.0,0.0,270.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,25310.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,43.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,26.0,44.0,8045.0,8045.0,336.0,0,N
Owned_or_being_bought_(loan),137500.0,0.0,41560.0,1,1,1,1,2,1,1,1,0,0,7,0,0,2,Child,13.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,381.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,60065.0,1,1,1,1,0,0,0,0,2,1,5,3,0,0,Head_Householder,45.0,Male,White,Married_spouse_present,Yes_in_school,1_to_3_years_of_college,41.0,68.0,48950.0,47475.0,501.0,6,N
Rented,999999.0,262.0,6065.0,1,0,0,0,0,0,0,0,0,0,3,0,0,2,Sibling,22.0,Female,Black_Negro,Never_married_single,No_not_in_school,Grade_12,18.0,44.0,0.0,0.0,106.0,0,N
Owned_or_being_bought_(loan),77500.0,0.0,30515.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,87.0,Female,White,Widowed,No_not_in_school,Grade_11,0.0,0.0,3165.0,0.0,501.0,7,P
Owned_or_being_bought_(loan),52500.0,0.0,11295.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,18.0,Female,Other_Asian_or_Pacific,Never_married_single,Yes_in_school,Grade_12,22.0,61.0,4260.0,3265.0,198.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,4190.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,80.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,4190.0,0.0,120.0,2,P
Rented,999999.0,325.0,20690.0,1,1,1,1,0,0,0,0,1,1,3,1,1,0,Spouse,23.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,22.0,61.0,7685.0,7685.0,352.0,0,P
Rented,999999.0,175.0,21720.0,1,0,0,0,0,0,0,0,0,0,4,0,0,1,Sibling,29.0,Male,White,Never_married_single,No_not_in_school,Grade_5-8,20.0,8.0,5545.0,5545.0,289.0,0,P
Rented,999999.0,65.0,3210.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,65.0,Female,White,Divorced,No_not_in_school,Grade_12,22.0,61.0,3210.0,0.0,92.0,1,P
Owned_or_being_bought_(loan),95000.0,0.0,37815.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,11.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,501.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,29010.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,52.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,26.0,72.0,19005.0,19005.0,501.0,5,P
Rented,999999.0,212.0,14410.0,1,0,1,0,1,1,0,0,0,0,5,0,0,3,Child,11.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,168.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,45005.0,3,0,1,0,0,0,0,0,0,0,2,1,0,0,Parent,68.0,Female,Other_Asian_or_Pacific,Widowed,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,501.0,0,P
Rented,999999.0,500.0,22005.0,2,0,1,1,0,0,0,0,0,0,2,1,0,0,Head_Householder,36.0,Male,White,Divorced,No_not_in_school,1_to_3_years_of_college,41.0,72.0,22005.0,22005.0,438.0,1,P
Owned_or_being_bought_(loan),95000.0,0.0,17490.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,68.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,1995.0,0.0,397.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,48720.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,60.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,22.0,51.0,10210.0,8405.0,501.0,0,P
Rented,999999.0,115.0,8005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,45.0,Male,White,Married_spouse_absent,No_not_in_school,Grade_5-8,20.0,9.0,6005.0,6005.0,158.0,0,N
Owned_or_being_bought_(loan),72500.0,0.0,26615.0,1,1,1,1,0,0,0,0,2,1,5,3,1,0,Head_Householder,39.0,Male,White,Married_spouse_present,Yes_in_school,Grade_12,37.0,49.0,16610.0,16005.0,306.0,1,P
Rented,999999.0,325.0,22760.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,58.0,Male,Black_Negro,Never_married_single,No_not_in_school,Grade_12,20.0,52.0,22760.0,0.0,501.0,2,P
Owned_or_being_bought_(loan),999999.0,0.0,10170.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,17.0,Female,Black_Negro,Never_married_single,Yes_in_school,Grade_10,14.0,17.0,1505.0,1505.0,101.0,0,P
Rented,999999.0,262.0,12045.0,1,0,1,0,2,1,0,0,0,0,2,0,0,0,Head_Householder,51.0,Female,White,Widowed,No_not_in_school,Grade_11,11.0,16.0,8440.0,7895.0,247.0,5,P
Rented,999999.0,237.0,8870.0,1,0,2,0,3,6,0,0,0,0,4,0,0,0,Other_relatives,3.0,Male,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,120.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,33170.0,1,1,2,1,2,1,1,1,0,0,4,0,0,0,Child,14.0,Female,American_Indian,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,434.0,0,P
Rented,999999.0,0.0,10005.0,1,1,2,1,0,0,0,0,1,1,4,1,0,0,Spouse,44.0,Female,White,Married_spouse_present,No_not_in_school,Grade_10,0.0,0.0,0.0,0.0,131.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,16005.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,32.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,26.0,18.0,16005.0,16005.0,273.0,5,P
Owned_or_being_bought_(loan),175000.0,0.0,6325.0,1,0,1,0,1,1,0,0,0,0,5,0,0,3,Child,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,74.0,0,P
Rented,999999.0,165.0,14410.0,1,1,1,1,0,0,0,0,1,1,3,1,1,0,Spouse,21.0,Female,Other_race_nec,Married_spouse_present,No_not_in_school,Grade_12,13.0,10.0,6005.0,0.0,245.0,0,P
Rented,999999.0,500.0,75000.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,38.0,Female,Japanese,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,501.0,0,P
Rented,999999.0,287.0,26010.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,28.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,31.0,33.0,24005.0,24005.0,501.0,1,P
Owned_or_being_bought_(loan),175000.0,0.0,45615.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,49.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,30.0,65.0,2605.0,2605.0,501.0,0,N
Rented,999999.0,450.0,24290.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Parent,79.0,Female,White,Widowed,No_not_in_school,Grade_5-8,0.0,0.0,8980.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,21015.0,3,1,1,1,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,29.0,Male,White,Divorced,No_not_in_school,Grade_5-8,22.0,18.0,12005.0,12005.0,316.0,0,P
Rented,999999.0,450.0,31390.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,17.0,Female,White,Never_married_single,Yes_in_school,Grade_10,11.0,16.0,605.0,605.0,352.0,0,P
Rented,999999.0,450.0,5390.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,66.0,Female,Japanese,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,2655.0,0.0,122.0,0,P
Rented,999999.0,287.0,5765.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,53.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,None_or_preschool,0.0,0.0,0.0,0.0,75.0,1,P
Rented,999999.0,237.0,15350.0,1,1,0,0,0,0,0,0,2,2,3,0,0,0,Head_Householder,68.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,7545.0,0.0,269.0,2,P
Rented,999999.0,325.0,11610.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,65.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,203.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,64700.0,1,2,2,1,4,1,0,0,2,1,6,1,1,0,Head_Householder,39.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,4+_years_of_college,31.0,65.0,24985.0,24985.0,501.0,2,P
Owned_or_being_bought_(loan),95000.0,0.0,15020.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,42.0,Female,Chinese,Married_spouse_present,No_not_in_school,Grade_12,22.0,45.0,9010.0,9005.0,256.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,13020.0,2,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,40.0,Female,White,Divorced,No_not_in_school,4+_years_of_college,26.0,72.0,12015.0,6005.0,222.0,5,P
Owned_or_being_bought_(loan),95000.0,0.0,19710.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,53.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,404.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,23740.0,1,1,1,1,0,0,0,0,1,1,3,1,1,0,Spouse,26.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,0.0,0.0,404.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,66885.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,58.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,41.0,68.0,66600.0,65005.0,501.0,5,P
Owned_or_being_bought_(loan),112500.0,0.0,25955.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,7.0,Female,Other_Asian_or_Pacific,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,298.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,25040.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,57.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,20.0,8.0,16235.0,16235.0,426.0,5,P
Owned_or_being_bought_(loan),999999.0,0.0,14650.0,1,1,1,1,1,1,2,1,0,0,6,0,0,3,Child,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,150.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,26715.0,1,0,1,0,1,1,0,0,0,0,3,0,0,0,Child,10.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,455.0,0,P
Rented,999999.0,450.0,20220.0,1,0,2,1,2,2,0,0,0,0,5,0,0,0,Grandchild,3.0,Female,Black_Negro,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,220.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,21315.0,1,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,14.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,288.0,0,P
Rented,999999.0,1.0,20110.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,56.0,Male,Chinese,Married_spouse_present,No_not_in_school,Grade_10,38.0,68.0,4110.0,0.0,352.0,1,P
Owned_or_being_bought_(loan),95000.0,0.0,13000.0,1,1,1,1,2,1,1,1,0,0,5,0,0,1,Child,13.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,146.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,18890.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,69.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,24.0,47.0,5575.0,2605.0,428.0,0,P
Owned_or_being_bought_(loan),57500.0,0.0,30795.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,43.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,335.0,0,P
Rented,999999.0,95.0,2005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,18.0,Male,White,Never_married_single,No_not_in_school,Grade_11,16.0,15.0,2005.0,2005.0,53.0,1,N
Rented,999999.0,165.0,13250.0,1,1,1,1,0,0,0,0,1,1,3,1,1,0,Spouse,22.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_11,23.0,45.0,4405.0,4405.0,226.0,0,P
Owned_or_being_bought_(loan),47500.0,0.0,75000.0,1,1,1,1,0,0,0,0,0,0,9,0,0,0,Other_relatives,19.0,Male,White,Never_married_single,No_not_in_school,Grade_5-8,28.0,19.0,6255.0,6255.0,468.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,32090.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,32.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,16.0,38.0,13895.0,13895.0,501.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,33105.0,1,1,2,1,0,0,0,0,0,0,6,0,0,0,Other_relatives,12.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,323.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,23010.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,45.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,34.0,67.0,18005.0,18005.0,301.0,5,N
Owned_or_being_bought_(loan),999999.0,0.0,75000.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,47.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,19.0,46.0,10005.0,10005.0,501.0,0,N
Owned_or_being_bought_(loan),72500.0,0.0,14795.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,68.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,12385.0,0.0,336.0,7,P
Rented,999999.0,212.0,3610.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,72.0,Female,White,Widowed,No_not_in_school,Grade_10,0.0,0.0,3610.0,0.0,103.0,1,P
Rented,999999.0,1.0,5450.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,82.0,Female,Black_Negro,Divorced,No_not_in_school,Grade_5-8,0.0,0.0,5450.0,0.0,156.0,5,P
Owned_or_being_bought_(loan),72500.0,0.0,22760.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,32.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,388.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,15010.0,1,1,1,1,0,0,0,0,2,1,4,2,1,0,Head_Householder,32.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,23.0,18.0,15010.0,0.0,203.0,2,P
Owned_or_being_bought_(loan),21250.0,0.0,21190.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,60.0,Female,Black_Negro,Divorced,No_not_in_school,4+_years_of_college,31.0,53.0,19735.0,19735.0,434.0,7,P
Rented,999999.0,262.0,1710.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,36.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_12,11.0,18.0,1405.0,1405.0,35.0,1,P
Owned_or_being_bought_(loan),85000.0,0.0,17005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,27.0,Female,White,Divorced,No_not_in_school,4+_years_of_college,41.0,72.0,17005.0,17005.0,448.0,2,P
Rented,999999.0,375.0,22060.0,1,1,1,1,0,0,0,0,1,1,5,3,1,0,Spouse,24.0,Female,White,Married_spouse_present,No_not_in_school,Grade_9,23.0,18.0,5555.0,5555.0,253.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,7005.0,1,0,1,0,0,0,0,0,0,0,3,2,1,0,Head_Householder,29.0,Female,White,Separated,No_not_in_school,1_to_3_years_of_college,28.0,45.0,7005.0,7005.0,119.0,2,P
Owned_or_being_bought_(loan),999999.0,0.0,19520.0,1,1,2,1,2,1,1,1,0,0,6,0,0,1,Child,21.0,Female,Black_Negro,Never_married_single,No_not_in_school,Grade_12,23.0,18.0,11250.0,9275.0,190.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,4250.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,35.0,Male,White,Divorced,No_not_in_school,1_to_3_years_of_college,35.0,68.0,11515.0,6505.0,303.0,0,P
Rented,999999.0,375.0,13620.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,24.0,Female,White,Never_married_single,No_not_in_school,4+_years_of_college,37.0,78.0,13620.0,13445.0,359.0,2,P
Owned_or_being_bought_(loan),112500.0,0.0,36450.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,30.0,Male,Chinese,Never_married_single,No_not_in_school,4+_years_of_college,39.0,82.0,9160.0,9005.0,484.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,18415.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,38.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,26.0,47.0,18415.0,18415.0,249.0,5,P
Owned_or_being_bought_(loan),52500.0,0.0,14380.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,52.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,25.0,44.0,1685.0,1685.0,294.0,0,N
Owned_or_being_bought_(loan),67500.0,0.0,5900.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,48.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,23.0,16.0,5900.0,0.0,121.0,6,P
Rented,999999.0,125.0,9705.0,1,1,1,1,0,0,0,0,2,1,5,3,1,0,Head_Householder,25.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,15.0,15.0,9705.0,9705.0,111.0,2,N
Rented,999999.0,165.0,15005.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,13.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,154.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,25425.0,1,0,1,0,1,1,0,0,0,0,2,0,0,0,Child,27.0,Female,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,24.0,47.0,6125.0,6125.0,501.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,26705.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,58.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,43.0,86.0,22650.0,21625.0,501.0,7,P
Owned_or_being_bought_(loan),85000.0,0.0,32510.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,10.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,373.0,0,P
Rented,999999.0,450.0,7410.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,64.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,25.0,44.0,0.0,0.0,152.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,39950.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,16.0,Male,White,Never_married_single,Yes_in_school,Grade_9,11.0,11.0,770.0,95.0,501.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,55235.0,1,1,1,1,2,1,1,1,0,0,5,0,0,1,Child,22.0,Male,Japanese,Never_married_single,No_not_in_school,1_to_3_years_of_college,34.0,53.0,15820.0,15755.0,501.0,0,P
Rented,999999.0,262.0,16005.0,3,0,1,0,0,0,0,0,0,0,2,1,1,0,Head_Householder,22.0,Female,Black_Negro,Never_married_single,No_not_in_school,1_to_3_years_of_college,25.0,44.0,16005.0,16005.0,318.0,2,P
Rented,999999.0,262.0,705.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,30.0,Male,Black_Negro,Divorced,No_not_in_school,1_to_3_years_of_college,41.0,68.0,705.0,705.0,19.0,1,N
Owned_or_being_bought_(loan),95000.0,0.0,46570.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,18.0,Male,White,Never_married_single,Yes_in_school,Grade_10,24.0,47.0,3550.0,3005.0,501.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,40015.0,1,1,1,1,0,0,0,0,2,1,5,3,0,0,Head_Householder,43.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,26.0,10.0,24005.0,24005.0,448.0,5,P
Owned_or_being_bought_(loan),57500.0,0.0,27005.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,10.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,247.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,32635.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,3.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,441.0,0,P
Rented,999999.0,287.0,7810.0,1,0,0,1,0,0,0,0,0,0,2,1,0,0,Head_Householder,71.0,Male,White,Widowed,No_not_in_school,1_to_3_years_of_college,31.0,73.0,4205.0,0.0,177.0,2,P
Owned_or_being_bought_(loan),999999.0,0.0,14340.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,17.0,Male,White,Never_married_single,Yes_in_school,Grade_10,17.0,8.0,3870.0,3805.0,165.0,0,P
Owned_or_being_bought_(loan),21250.0,0.0,28080.0,1,1,1,0,0,0,0,0,0,0,3,1,0,0,Parent-in-Law,81.0,Female,White,Widowed,No_not_in_school,Grade_5-8,0.0,0.0,8310.0,0.0,492.0,0,P
Owned_or_being_bought_(loan),57500.0,0.0,19625.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,78.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,24.0,19.0,10790.0,1125.0,445.0,7,P
Owned_or_being_bought_(loan),112500.0,0.0,33625.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,15.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,0.0,999999.0,455.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,67325.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,18.0,Male,White,Never_married_single,No_not_in_school,Grade_11,18.0,19.0,1565.0,1565.0,501.0,0,N
Owned_or_being_bought_(loan),999999.0,0.0,23865.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,16.0,Female,White,Never_married_single,Yes_in_school,Grade_10,11.0,18.0,5725.0,5725.0,312.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,46015.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,56.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,31.0,65.0,28180.0,27765.0,501.0,5,P
Owned_or_being_bought_(loan),137500.0,0.0,30010.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,6.0,Female,Black_Negro,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,406.0,0,P
Rented,999999.0,287.0,17295.0,1,1,1,1,0,0,0,0,1,1,6,4,0,0,Spouse,41.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,2685.0,0.0,172.0,0,P
Owned_or_being_bought_(loan),47500.0,0.0,7290.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,62.0,Female,White,Divorced,No_not_in_school,Grade_12,11.0,16.0,7290.0,6005.0,192.0,7,P
Rented,999999.0,0.0,11005.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,24.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,27.0,29.0,11005.0,11005.0,187.0,1,P
Owned_or_being_bought_(loan),95000.0,0.0,17400.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,31.0,Female,White,Married_spouse_present,Yes_in_school,Grade_12,26.0,72.0,395.0,395.0,235.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,17170.0,1,1,1,1,0,0,0,0,1,1,8,6,1,0,Spouse,37.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,22.0,18.0,6765.0,6765.0,143.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,53045.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,63.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,0.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,18270.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,5.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,187.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,15950.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,74.0,Male,White,Married_spouse_present,No_not_in_school,Grade_11,0.0,0.0,14235.0,0.0,362.0,7,P
Owned_or_being_bought_(loan),85000.0,0.0,16615.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,11.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,170.0,0,P
Rented,999999.0,325.0,25760.0,1,2,2,2,0,0,0,0,1,2,7,1,1,0,Spouse,25.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,23.0,18.0,5045.0,5045.0,218.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,21245.0,1,1,1,1,2,1,1,1,0,0,10,0,0,7,Child,8.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,137.0,0,P
Rented,999999.0,375.0,18510.0,3,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,50.0,Female,White,Married_spouse_present,No_not_in_school,Grade_11,25.0,19.0,3505.0,3505.0,379.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,24005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,45.0,Female,White,Never_married_single,No_not_in_school,Grade_12,29.0,22.0,24005.0,24005.0,501.0,2,P
Rented,999999.0,125.0,9785.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,70.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_5-8,25.0,15.0,7075.0,0.0,172.0,2,P
Rented,999999.0,287.0,17210.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,21.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,41.0,68.0,7205.0,7205.0,293.0,1,P
Owned_or_being_bought_(loan),95000.0,0.0,34510.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,52.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,32.0,39.0,20505.0,20505.0,501.0,7,P
Rented,999999.0,125.0,12020.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,90.0,Female,White,Widowed,No_not_in_school,4+_years_of_college,0.0,0.0,12020.0,0.0,344.0,6,P
Owned_or_being_bought_(loan),137500.0,0.0,58540.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,20.0,Male,White,Never_married_single,No_not_in_school,Grade_12,31.0,33.0,10005.0,10005.0,501.0,0,P
Owned_or_being_bought_(loan),57500.0,0.0,48815.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,9.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,501.0,0,P
Rented,999999.0,262.0,6710.0,1,0,1,0,1,1,0,0,0,0,7,0,0,4,Child,10.0,Male,Other_race_nec,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,61.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,64115.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,10.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,501.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,38760.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,41.0,Female,Black_Negro,Married_spouse_present,Yes_in_school,1_to_3_years_of_college,18.0,44.0,17470.0,17455.0,445.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,11620.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,62.0,Female,White,Widowed,No_not_in_school,1_to_3_years_of_college,22.0,61.0,11620.0,10765.0,306.0,7,P
Rented,999999.0,135.0,8135.0,1,0,1,0,2,1,0,0,0,0,2,0,0,0,Head_Householder,55.0,Male,Black_Negro,Widowed,No_not_in_school,Grade_5-8,0.0,0.0,3750.0,0.0,167.0,6,P
Owned_or_being_bought_(loan),999999.0,0.0,6340.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,87.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,6340.0,0.0,144.0,7,P
Owned_or_being_bought_(loan),200000.0,0.0,18720.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,33.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,79.0,92.0,18720.0,17165.0,319.0,2,P
Rented,999999.0,155.0,27800.0,1,0,1,0,1,1,0,0,0,0,6,0,0,4,Child,18.0,Female,Black_Negro,Never_married_single,No_not_in_school,Grade_12,24.0,44.0,1505.0,1505.0,271.0,0,P
Rented,999999.0,0.0,15005.0,1,1,1,1,0,0,0,0,2,1,5,3,1,0,Head_Householder,30.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,24.0,19.0,15005.0,15005.0,172.0,5,N
Owned_or_being_bought_(loan),67500.0,0.0,30270.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,54.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,23.0,18.0,13245.0,12245.0,501.0,7,N
Owned_or_being_bought_(loan),999999.0,0.0,21670.0,1,0,1,0,1,1,0,0,0,0,6,0,0,4,Child,25.0,Male,Black_Negro,Never_married_single,No_not_in_school,Grade_11,27.0,22.0,0.0,0.0,211.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,27010.0,1,1,1,1,0,0,0,0,1,1,7,5,1,0,Spouse,37.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,247.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,49755.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,50.0,Female,White,Divorced,No_not_in_school,Grade_12,41.0,68.0,23660.0,23565.0,501.0,6,P
Owned_or_being_bought_(loan),175000.0,0.0,33245.0,1,2,2,2,2,1,1,1,0,0,6,0,0,1,Child,10.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,324.0,0,P
Owned_or_being_bought_(loan),23750.0,0.0,14490.0,1,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,18.0,Male,White,Never_married_single,Yes_in_school,Grade_11,18.0,44.0,1205.0,1205.0,189.0,0,N
Rented,999999.0,375.0,32010.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,29.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,32.0,34.0,22005.0,22005.0,501.0,1,P
Owned_or_being_bought_(loan),52500.0,0.0,37250.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,49.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,25.0,15.0,27945.0,27945.0,501.0,6,N
Owned_or_being_bought_(loan),67500.0,0.0,42720.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,53.0,Male,White,Married_spouse_present,No_not_in_school,Grade_10,45.0,82.0,27510.0,27005.0,501.0,6,P
Rented,999999.0,325.0,40775.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,18.0,Female,White,Never_married_single,No_not_in_school,Grade_11,11.0,16.0,4800.0,4505.0,443.0,0,P
Rented,999999.0,185.0,5760.0,1,0,1,0,0,0,0,0,0,0,4,3,0,0,Parent,53.0,Female,White,Married_spouse_absent,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,77.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,21455.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,9.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,365.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,30415.0,1,1,1,1,0,0,0,0,1,1,7,5,0,0,Spouse,33.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,27.0,72.0,5005.0,5005.0,279.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,42325.0,1,1,1,1,0,0,0,0,2,1,6,4,0,0,Head_Householder,51.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,Grade_12,31.0,33.0,27215.0,25005.0,421.0,2,N
Owned_or_being_bought_(loan),37500.0,0.0,33410.0,1,2,2,2,2,1,1,1,0,0,9,0,0,1,Child,5.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,221.0,0,P
Rented,999999.0,185.0,22165.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,43.0,Male,White,Separated,No_not_in_school,Grade_12,26.0,32.0,22165.0,22165.0,501.0,1,P
Rented,999999.0,237.0,6350.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,20.0,Male,White,Married_spouse_present,No_not_in_school,Grade_10,20.0,8.0,4375.0,4375.0,108.0,2,N
Owned_or_being_bought_(loan),77500.0,0.0,20410.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,36.0,Female,Black_Negro,Divorced,No_not_in_school,4+_years_of_college,27.0,64.0,20410.0,20395.0,347.0,5,P
Rented,999999.0,500.0,21005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,31.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,35.0,66.0,21005.0,21005.0,501.0,1,P
Rented,999999.0,185.0,415.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,35.0,Female,White,Divorced,No_not_in_school,Grade_10,17.0,13.0,415.0,0.0,7.0,2,P
Owned_or_being_bought_(loan),999999.0,0.0,53170.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,42.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,22.0,61.0,0.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,19210.0,1,0,0,1,0,0,1,1,0,0,4,0,0,2,Child,5.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,259.0,0,P
Rented,999999.0,175.0,31315.0,1,1,1,1,0,0,0,0,1,1,3,1,1,0,Spouse,23.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,35.0,62.0,20005.0,20005.0,501.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,35575.0,1,0,0,1,0,0,1,1,0,0,3,0,0,1,Child,28.0,Male,Chinese,Never_married_single,No_not_in_school,4+_years_of_college,34.0,53.0,19560.0,18755.0,501.0,0,P
Rented,999999.0,325.0,22005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,36.0,Female,White,Never_married_single,No_not_in_school,4+_years_of_college,27.0,72.0,22005.0,22005.0,501.0,2,P
Owned_or_being_bought_(loan),200000.0,0.0,26910.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,40.0,Female,White,Divorced,No_not_in_school,1_to_3_years_of_college,31.0,73.0,26910.0,0.0,501.0,6,P
Rented,999999.0,212.0,10095.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,12.0,Female,Black_Negro,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,116.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,40470.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,37.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,24.0,44.0,14070.0,14045.0,465.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,35120.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,53.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,22.0,61.0,12505.0,12505.0,501.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,32010.0,1,1,1,1,0,0,0,0,2,1,6,3,0,1,Head_Householder,41.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,27.0,18.0,25005.0,25005.0,318.0,6,N
Owned_or_being_bought_(loan),95000.0,0.0,30585.0,1,1,1,1,0,0,0,0,2,1,9,7,2,0,Head_Householder,37.0,Male,White,Married_spouse_present,No_not_in_school,Grade_1-4,27.0,29.0,30010.0,17005.0,209.0,1,P
Owned_or_being_bought_(loan),52500.0,0.0,10510.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,54.0,Female,White,Divorced,No_not_in_school,Grade_12,37.0,78.0,10510.0,7005.0,277.0,2,P
Owned_or_being_bought_(loan),999999.0,0.0,49815.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,20.0,Female,White,Never_married_single,No_not_in_school,Grade_11,23.0,18.0,4685.0,4685.0,501.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,18360.0,2,1,1,2,0,0,3,2,0,0,6,0,0,1,Grandchild,17.0,Female,White,Never_married_single,Yes_in_school,Grade_10,24.0,47.0,305.0,305.0,183.0,0,P
Rented,999999.0,287.0,32135.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,28.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,26.0,22.0,3925.0,2305.0,501.0,1,N
Rented,999999.0,500.0,35110.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,41.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,61.0,93.0,35110.0,35005.0,501.0,1,P
Rented,999999.0,262.0,19100.0,1,1,1,1,0,0,0,0,1,1,3,1,1,0,Spouse,20.0,Female,White,Married_spouse_present,No_not_in_school,Grade_11,26.0,52.0,6755.0,6755.0,325.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,75000.0,1,1,1,1,0,0,0,0,2,1,5,3,1,0,Head_Householder,32.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,35.0,46.0,72710.0,72005.0,501.0,2,P
Owned_or_being_bought_(loan),137500.0,0.0,63595.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,47.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,0.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,17085.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,39.0,Female,White,Married_spouse_present,Yes_in_school,Grade_12,30.0,65.0,905.0,905.0,231.0,0,P
Rented,999999.0,237.0,4925.0,1,0,1,0,0,0,0,0,0,0,5,4,0,0,Head_Householder,45.0,Female,Black_Negro,Separated,Yes_in_school,Grade_12,25.0,44.0,4925.0,0.0,55.0,2,P
Owned_or_being_bought_(loan),52500.0,0.0,19910.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,32.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,23.0,18.0,5395.0,5395.0,269.0,0,P
Rented,999999.0,175.0,19295.0,1,1,1,1,0,0,0,0,1,1,4,1,1,1,Spouse,23.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,22.0,18.0,2885.0,2885.0,252.0,0,P
Owned_or_being_bought_(loan),47500.0,0.0,10965.0,1,1,1,1,0,0,0,0,1,2,4,2,0,0,Spouse,38.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,16.0,15.0,3760.0,2305.0,148.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,35725.0,1,0,0,1,0,0,2,1,0,0,2,0,0,0,Head_Householder,49.0,Female,White,Never_married_single,No_not_in_school,4+_years_of_college,29.0,72.0,28010.0,24005.0,501.0,6,P
Owned_or_being_bought_(loan),67500.0,0.0,51115.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,19.0,Female,White,Separated,No_not_in_school,Grade_9,6.0,19.0,0.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,20010.0,1,1,1,1,0,0,0,0,1,1,7,4,0,0,Spouse,30.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,17.0,13.0,7005.0,7005.0,183.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,6620.0,1,1,1,1,0,0,0,0,1,1,3,1,1,0,Spouse,29.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,38.0,68.0,6815.0,6815.0,113.0,0,P
Rented,999999.0,325.0,10265.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,21.0,Female,White,Never_married_single,No_not_in_school,Grade_12,25.0,44.0,14705.0,14705.0,388.0,0,P
Rented,999999.0,287.0,2005.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,35.0,Female,Japanese,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,23.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,15830.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,81.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,2765.0,0.0,277.0,6,P
Owned_or_being_bought_(loan),112500.0,0.0,12065.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,66.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,2415.0,0.0,274.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,40315.0,1,1,1,1,0,0,0,0,2,1,5,3,1,0,Head_Householder,38.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,31.0,65.0,38310.0,35505.0,463.0,2,P
Owned_or_being_bought_(loan),95000.0,0.0,26225.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,75.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,0.0,0.0,13515.0,0.0,501.0,8,P
Rented,999999.0,262.0,6605.0,1,0,1,0,1,1,0,0,0,0,8,0,0,6,Child,9.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,52.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,30955.0,2,1,1,2,0,0,6,3,0,0,2,0,0,0,Other_non-relatives,18.0,Male,Other_Asian_or_Pacific,Never_married_single,No_not_in_school,1_to_3_years_of_college,29.0,27.0,2705.0,2705.0,501.0,0,P
Rented,999999.0,155.0,23515.0,1,1,1,1,0,0,0,0,2,1,5,3,2,0,Head_Householder,28.0,Male,Black_Negro,Married_spouse_present,Yes_in_school,1_to_3_years_of_college,20.0,9.0,19010.0,16005.0,270.0,2,P
Owned_or_being_bought_(loan),137500.0,0.0,31925.0,1,1,1,1,2,1,1,1,0,0,8,0,0,5,Child,19.0,Female,Other_Asian_or_Pacific,Never_married_single,Yes_in_school,1_to_3_years_of_college,36.0,66.0,7995.0,7995.0,250.0,0,P
Owned_or_being_bought_(loan),23750.0,0.0,3005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,70.0,Female,White,Divorced,No_not_in_school,Grade_12,0.0,0.0,3005.0,0.0,86.0,6,P
Owned_or_being_bought_(loan),72500.0,0.0,19785.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,72.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,16860.0,0.0,449.0,7,P
Owned_or_being_bought_(loan),85000.0,0.0,35625.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,22.0,Female,White,Never_married_single,No_not_in_school,Grade_12,25.0,44.0,7005.0,7005.0,347.0,0,P
Rented,999999.0,75.0,1995.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,10.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,23.0,0,P
Rented,999999.0,165.0,13060.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,55.0,Female,Other_Asian_or_Pacific,Never_married_single,No_not_in_school,Grade_12,17.0,13.0,8510.0,8005.0,224.0,0,P
Rented,999999.0,375.0,40715.0,1,1,1,1,0,0,0,0,2,1,4,2,2,0,Head_Householder,32.0,Male,Japanese,Married_spouse_present,No_not_in_school,4+_years_of_college,41.0,68.0,40510.0,0.0,501.0,2,P
Owned_or_being_bought_(loan),62500.0,0.0,12005.0,1,1,1,1,2,1,1,1,0,0,5,0,0,1,Child,6.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,135.0,0,P
Rented,999999.0,185.0,9210.0,1,1,1,1,0,0,0,0,2,2,5,3,1,0,Head_Householder,36.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,18.0,44.0,7005.0,7005.0,106.0,6,P
Owned_or_being_bought_(loan),77500.0,0.0,25210.0,1,1,1,1,0,0,0,0,1,1,5,3,0,0,Spouse,47.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,290.0,0,P
Rented,999999.0,145.0,17800.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,6.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,303.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,29260.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,39.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,46.0,84.0,21930.0,0.0,501.0,5,N
Rented,999999.0,287.0,0.0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,Head_Householder,26.0,Male,White,Never_married_single,No_not_in_school,Grade_1-4,0.0,0.0,0.0,0.0,1.0,2,P
Owned_or_being_bought_(loan),112500.0,0.0,33325.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,49.0,Female,White,Married_spouse_present,Yes_in_school,1_to_3_years_of_college,22.0,61.0,10005.0,10005.0,436.0,0,P
Rented,999999.0,125.0,14820.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,35.0,Male,Black_Negro,Divorced,Yes_in_school,Grade_12,30.0,24.0,5725.0,5725.0,151.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,31015.0,1,1,1,1,0,0,0,0,2,1,6,4,1,0,Head_Householder,50.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,18.0,44.0,21005.0,21005.0,302.0,2,P
Rented,999999.0,325.0,4165.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,21.0,Female,Black_Negro,Never_married_single,No_not_in_school,Grade_12,23.0,18.0,4165.0,4165.0,110.0,2,P
Rented,999999.0,212.0,15520.0,1,1,0,0,0,0,0,0,2,2,2,0,0,0,Head_Householder,81.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,11515.0,0.0,352.0,2,P
Rented,999999.0,175.0,10220.0,1,1,1,1,0,0,0,0,2,1,5,3,2,0,Head_Householder,65.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_10,0.0,0.0,4095.0,0.0,117.0,2,P
Owned_or_being_bought_(loan),67500.0,0.0,32465.0,1,1,1,1,0,0,0,0,2,1,5,3,0,0,Head_Householder,39.0,Male,American_Indian,Married_spouse_present,No_not_in_school,Grade_10,20.0,9.0,23485.0,23485.0,353.0,1,N
Owned_or_being_bought_(loan),999999.0,0.0,43375.0,1,2,2,2,0,0,0,0,2,1,6,2,0,0,Head_Householder,50.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,38.0,68.0,16590.0,16385.0,423.0,6,P
Owned_or_being_bought_(loan),67500.0,0.0,24535.0,1,1,2,1,0,0,0,0,2,1,8,2,0,0,Head_Householder,29.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,24.0,47.0,13525.0,13525.0,192.0,1,P
Rented,999999.0,165.0,2005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,30.0,Male,White,Never_married_single,No_not_in_school,Grade_5-8,25.0,18.0,2005.0,2005.0,53.0,2,N
Rented,999999.0,237.0,12110.0,1,0,1,0,1,1,0,0,0,0,6,0,0,4,Child,7.0,Female,Black_Negro,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,127.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,61505.0,1,1,0,0,0,0,0,0,1,1,3,0,0,0,Spouse,65.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,24.0,47.0,12115.0,3345.0,501.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,10005.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,46.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,22.0,51.0,0.0,0.0,205.0,0,P
Rented,999999.0,287.0,2005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,17.0,Female,White,Never_married_single,Yes_in_school,Grade_11,18.0,44.0,2005.0,2005.0,53.0,1,P
Rented,999999.0,287.0,19520.0,1,2,2,2,0,0,0,0,5,1,7,2,2,1,Sibling,23.0,Male,White,Married_spouse_present,No_not_in_school,Grade_1-4,23.0,16.0,8005.0,8005.0,168.0,0,P
Rented,999999.0,155.0,6705.0,3,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,2.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,69.0,0,P
Rented,999999.0,195.0,15115.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,54.0,Female,White,Divorced,No_not_in_school,4+_years_of_college,24.0,44.0,15115.0,4285.0,398.0,5,P
Rented,999999.0,212.0,8030.0,1,1,0,0,0,0,0,0,1,1,3,0,0,0,Spouse,52.0,Female,Black_Negro,Married_spouse_present,Yes_in_school,1_to_3_years_of_college,20.0,9.0,3755.0,0.0,137.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,57020.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,10.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,501.0,0,P
Rented,999999.0,450.0,24160.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,51.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,4+_years_of_college,35.0,66.0,24005.0,24005.0,423.0,2,P
Rented,999999.0,195.0,5655.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,27.0,Male,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,25.0,18.0,5655.0,5655.0,149.0,2,P
Owned_or_being_bought_(loan),85000.0,0.0,15005.0,4,0,1,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,80.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,1.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,50720.0,1,0,0,1,0,0,1,1,0,0,4,0,0,2,Child,22.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,31.0,33.0,18005.0,18005.0,501.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,5780.0,1,1,2,1,0,0,0,0,2,1,4,1,0,0,Head_Householder,59.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,31.0,33.0,0.0,0.0,76.0,5,P
Rented,999999.0,287.0,18005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,33.0,Female,Black_Negro,Never_married_single,No_not_in_school,1_to_3_years_of_college,17.0,13.0,18005.0,18005.0,474.0,2,P
Owned_or_being_bought_(loan),52500.0,0.0,10095.0,1,1,1,1,0,0,0,0,2,1,5,3,0,0,Head_Householder,36.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,27.0,17.0,10095.0,10095.0,116.0,5,N
Rented,999999.0,450.0,14865.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,23.0,Female,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,24.0,44.0,6445.0,5435.0,170.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,36165.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,16.0,Female,White,Never_married_single,Yes_in_school,Grade_10,0.0,0.0,0.0,0.0,473.0,0,P
Rented,999999.0,287.0,14230.0,1,0,0,1,0,0,1,1,0,0,7,0,0,4,Child,14.0,Female,White,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,999999.0,999999.0,130.0,0,P
Rented,999999.0,262.0,0.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,23.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,0.0,0.0,0.0,0.0,1.0,2,P
Owned_or_being_bought_(loan),175000.0,0.0,71555.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,53.0,Female,White,Married_spouse_present,No_not_in_school,4+_years_of_college,19.0,46.0,705.0,705.0,501.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,38010.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,13.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,437.0,0,P
Rented,999999.0,237.0,10330.0,1,1,0,0,0,0,0,0,0,0,3,0,0,1,Sibling,15.0,Male,White,Never_married_single,No_not_in_school,Grade_10,0.0,0.0,0.0,999999.0,176.0,0,P
Rented,999999.0,212.0,4005.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,10.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,68.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,14465.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,3.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,196.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,32690.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,16.0,Male,White,Never_married_single,Yes_in_school,Grade_9,39.0,69.0,250.0,245.0,442.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,15765.0,1,0,1,0,1,1,0,0,0,0,2,0,0,0,Child,30.0,Female,White,Never_married_single,No_not_in_school,4+_years_of_college,20.0,31.0,15765.0,15765.0,323.0,0,N
Rented,999999.0,237.0,20180.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,21.0,Male,White,Married_spouse_present,No_not_in_school,Grade_11,26.0,22.0,11555.0,11555.0,413.0,2,P
Owned_or_being_bought_(loan),112500.0,0.0,35270.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,40.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,22.0,60.0,14930.0,14875.0,501.0,2,P
Rented,999999.0,75.0,26390.0,1,1,1,1,2,1,1,1,0,0,10,0,0,5,Child,11.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,179.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,47215.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,56.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,39.0,82.0,46810.0,0.0,501.0,7,P
Owned_or_being_bought_(loan),95000.0,0.0,20025.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,70.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,13015.0,0.0,454.0,7,P
Owned_or_being_bought_(loan),72500.0,0.0,4805.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,8.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,82.0,0,P
Rented,999999.0,262.0,11005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,23.0,Male,White,Never_married_single,No_not_in_school,Grade_12,29.0,22.0,12695.0,12695.0,335.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,25785.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,66.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,41.0,68.0,16325.0,4505.0,501.0,6,P
Rented,999999.0,135.0,0.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,10.0,Female,Black_Negro,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,1.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,48015.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,52.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,38.0,68.0,11005.0,11005.0,501.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,68010.0,1,1,0,0,0,0,0,0,1,2,2,0,0,0,Spouse,57.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,25.0,36.0,18005.0,0.0,501.0,0,N
Rented,999999.0,287.0,20010.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,35.0,Female,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,22.0,61.0,20010.0,8005.0,501.0,1,N
Owned_or_being_bought_(loan),137500.0,0.0,44345.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,40.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,37.0,49.0,13630.0,13505.0,501.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,47010.0,1,1,2,1,2,1,1,1,0,0,8,0,0,3,Child,6.0,Male,Other_Asian_or_Pacific,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,368.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,17905.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,35.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,49.0,90.0,13030.0,11965.0,314.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,26475.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,451.0,0,P
Rented,999999.0,195.0,23010.0,2,0,1,0,0,0,0,0,0,0,3,1,0,1,Sibling,26.0,Female,White,Separated,No_not_in_school,Grade_12,26.0,52.0,11005.0,11005.0,392.0,0,P
Rented,999999.0,375.0,13010.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,26.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,Grade_12,23.0,18.0,11005.0,11005.0,266.0,1,N
Rented,999999.0,500.0,10995.0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,24.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,46.0,84.0,10995.0,20005.0,290.0,1,P
Rented,999999.0,212.0,3505.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,24.0,Male,White,Never_married_single,No_not_in_school,Grade_12,16.0,15.0,3505.0,3505.0,92.0,1,N
Owned_or_being_bought_(loan),62500.0,0.0,8970.0,1,1,2,1,0,0,0,0,2,1,7,4,1,0,Head_Householder,49.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,25.0,36.0,5605.0,0.0,79.0,6,P
Rented,999999.0,325.0,15005.0,1,1,1,1,0,0,0,0,1,1,6,4,1,0,Spouse,33.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,154.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,34915.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,19.0,Male,White,Never_married_single,No_not_in_school,Grade_12,22.0,18.0,2505.0,2505.0,501.0,0,P
Rented,999999.0,287.0,10710.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,22.0,Male,Black_Negro,Never_married_single,No_not_in_school,1_to_3_years_of_college,37.0,49.0,10710.0,8905.0,282.0,2,P
Owned_or_being_bought_(loan),200000.0,0.0,26035.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,57.0,Male,White,Divorced,No_not_in_school,Grade_12,28.0,48.0,26035.0,24005.0,501.0,6,N
Owned_or_being_bought_(loan),175000.0,0.0,49800.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,22.0,Female,Other_Asian_or_Pacific,Never_married_single,Yes_in_school,1_to_3_years_of_college,22.0,61.0,10925.0,10925.0,412.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,10400.0,1,1,0,0,0,0,0,0,2,1,3,0,0,0,Head_Householder,33.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,41.0,68.0,4635.0,4635.0,182.0,1,P
Owned_or_being_bought_(loan),23750.0,0.0,15275.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,39.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,207.0,0,P
Rented,999999.0,155.0,0.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,55.0,Female,White,Divorced,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,1.0,5,P
Rented,999999.0,212.0,12005.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,16.0,Female,White,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,0.0,0.0,162.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,53175.0,1,1,2,1,0,0,0,0,1,1,8,5,0,0,Spouse,38.0,Female,White,Married_spouse_present,No_not_in_school,Grade_10,37.0,78.0,6005.0,6005.0,406.0,0,P
Rented,999999.0,237.0,8845.0,4,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,23.0,Male,Other_race_nec,Never_married_single,No_not_in_school,Grade_5-8,11.0,11.0,1445.0,1445.0,38.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,34440.0,1,0,1,0,1,1,0,0,0,0,10,0,0,7,Child,19.0,Male,Other_Asian_or_Pacific,Never_married_single,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,222.0,0,P
Owned_or_being_bought_(loan),62500.0,0.0,1205.0,1,1,1,1,2,1,1,1,0,0,10,0,0,7,Child,12.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,9.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,22210.0,1,0,1,0,2,1,0,0,0,0,2,0,0,0,Head_Householder,53.0,Male,White,Divorced,No_not_in_school,1_to_3_years_of_college,41.0,68.0,18005.0,18005.0,455.0,5,P
Rented,999999.0,325.0,18010.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,7.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,243.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,67520.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,18.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_12,30.0,53.0,7605.0,7605.0,501.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,25210.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,60.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,41.0,68.0,25210.0,25005.0,501.0,2,P
Rented,999999.0,325.0,12060.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,35.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,19.0,17.0,6030.0,6005.0,247.0,2,P
Owned_or_being_bought_(loan),85000.0,0.0,18410.0,2,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,13.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,313.0,0,P
Rented,999999.0,262.0,17210.0,1,1,1,1,0,0,0,0,1,1,4,2,1,0,Spouse,32.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,22.0,18.0,5685.0,5685.0,233.0,0,P
Rented,999999.0,450.0,12010.0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,18.0,Male,White,Never_married_single,No_not_in_school,Grade_11,20.0,8.0,0.0,0.0,1.0,0,N
Owned_or_being_bought_(loan),200000.0,0.0,35030.0,1,1,1,1,0,0,0,0,1,1,4,2,1,0,Spouse,33.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,474.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,0.0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,39.0,Male,White,Separated,No_not_in_school,4+_years_of_college,37.0,81.0,17590.0,17165.0,464.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,54435.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,18.0,Male,White,Never_married_single,Yes_in_school,Grade_12,20.0,8.0,5005.0,5005.0,501.0,0,N
Owned_or_being_bought_(loan),200000.0,0.0,75000.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,63.0,Male,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,41.0,68.0,75000.0,75000.0,501.0,2,P
Rented,999999.0,500.0,17515.0,1,0,1,0,1,1,0,0,0,0,2,0,0,0,Child,15.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,0.0,999999.0,348.0,0,P
Rented,999999.0,375.0,23010.0,1,1,1,1,0,0,0,0,1,1,3,1,1,0,Spouse,20.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,18.0,44.0,6005.0,6005.0,392.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,26375.0,1,1,1,1,2,1,1,1,0,0,9,0,0,6,Child,13.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,180.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,15560.0,1,0,2,0,1,1,0,0,0,0,6,1,1,3,Child,23.0,Female,Black_Negro,Never_married_single,No_not_in_school,Grade_12,17.0,13.0,4370.0,325.0,155.0,0,P
Rented,999999.0,185.0,415.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,13.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,7.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,42815.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,59.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,22.0,61.0,12005.0,12005.0,501.0,0,P
Rented,999999.0,262.0,805.0,6,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,22.0,Male,White,Never_married_single,No_not_in_school,Grade_5-8,16.0,15.0,2405.0,2405.0,63.0,0,N
Owned_or_being_bought_(loan),57500.0,0.0,42410.0,1,1,1,1,0,0,0,0,0,0,6,0,0,0,Other_relatives,19.0,Female,White,Never_married_single,No_not_in_school,Grade_5-8,22.0,18.0,4005.0,4005.0,405.0,0,N
Rented,999999.0,175.0,14130.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,25.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,23.0,18.0,11005.0,11005.0,241.0,1,P
Owned_or_being_bought_(loan),62500.0,0.0,15030.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,65.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,Grade_5-8,20.0,9.0,15030.0,4415.0,341.0,6,P
Owned_or_being_bought_(loan),85000.0,0.0,24190.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,58.0,Female,Black_Negro,Never_married_single,Yes_in_school,4+_years_of_college,42.0,84.0,16030.0,16005.0,422.0,0,P
Rented,999999.0,325.0,18330.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,22.0,Female,Black_Negro,Never_married_single,Yes_in_school,1_to_3_years_of_college,25.0,44.0,18330.0,18315.0,483.0,1,N
Owned_or_being_bought_(loan),85000.0,0.0,8730.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,75.0,Female,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,3855.0,0.0,153.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,10820.0,2,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,10.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,146.0,0,P
Owned_or_being_bought_(loan),57500.0,0.0,21010.0,1,1,1,1,1,1,2,1,0,0,7,0,0,4,Child,20.0,Male,Black_Negro,Never_married_single,Yes_in_school,1_to_3_years_of_college,0.0,0.0,0.0,0.0,178.0,0,P
Rented,999999.0,287.0,27005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,26.0,Female,White,Divorced,No_not_in_school,4+_years_of_college,24.0,47.0,15310.0,15005.0,403.0,0,P
Rented,999999.0,155.0,11105.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,32.0,Male,White,Never_married_single,No_not_in_school,Grade_12,11.0,16.0,11105.0,11105.0,293.0,2,N
Rented,999999.0,262.0,11820.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,26.0,Female,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,33.0,48.0,11820.0,11805.0,311.0,2,P
Rented,999999.0,262.0,17205.0,1,0,1,0,1,1,0,0,0,0,2,0,0,0,Child,7.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,342.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,23275.0,2,0,0,1,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,48.0,Female,White,Divorced,No_not_in_school,Grade_5-8,16.0,15.0,1805.0,1805.0,48.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,46790.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,501.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,20005.0,1,1,1,1,0,0,0,0,1,1,3,1,1,0,Spouse,25.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,16.0,15.0,0.0,0.0,341.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,34315.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,57.0,Male,White,Married_spouse_present,No_not_in_school,Grade_11,23.0,18.0,19590.0,19075.0,501.0,7,N
Rented,999999.0,195.0,6175.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,22.0,Female,White,Never_married_single,No_not_in_school,Grade_12,39.0,82.0,6175.0,6175.0,163.0,1,P
Owned_or_being_bought_(loan),37500.0,0.0,31075.0,1,1,1,1,0,0,0,0,2,1,13,4,2,7,Head_Householder,40.0,Male,White,Married_spouse_present,No_not_in_school,Grade_1-4,23.0,18.0,12505.0,12505.0,212.0,2,P
Owned_or_being_bought_(loan),112500.0,0.0,17005.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,7.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,156.0,0,P
Rented,999999.0,375.0,13135.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,58.0,Female,White,Divorced,No_not_in_school,4+_years_of_college,22.0,61.0,13135.0,10695.0,346.0,5,P
Owned_or_being_bought_(loan),175000.0,0.0,70885.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,51.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,35.0,62.0,28005.0,28005.0,501.0,0,P
Rented,999999.0,212.0,18610.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,29.0,Female,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,19.0,46.0,18610.0,18505.0,490.0,1,P
Rented,999999.0,287.0,605.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,33.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,41.0,68.0,605.0,605.0,16.0,2,N
Rented,999999.0,0.0,30505.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,5.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,501.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,18005.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,83.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,0.0,0.0,18005.0,0.0,408.0,7,P
Owned_or_being_bought_(loan),85000.0,0.0,26435.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,24.0,Male,Other_Asian_or_Pacific,Never_married_single,No_not_in_school,1_to_3_years_of_college,26.0,19.0,11005.0,11005.0,287.0,0,P
Rented,999999.0,450.0,14120.0,1,0,1,0,1,1,0,0,0,0,5,0,0,3,Child,9.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,165.0,0,P
Rented,999999.0,450.0,17690.0,1,1,1,1,0,0,0,0,2,1,5,3,1,0,Head_Householder,34.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,26.0,22.0,1565.0,1565.0,203.0,1,P
Rented,999999.0,325.0,4005.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,44.0,Female,Black_Negro,Divorced,No_not_in_school,1_to_3_years_of_college,22.0,18.0,4005.0,0.0,80.0,1,P
Owned_or_being_bought_(loan),200000.0,0.0,20005.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,35.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,270.0,0,P
Rented,999999.0,375.0,7005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,36.0,Male,White,Divorced,No_not_in_school,None_or_preschool,25.0,36.0,7005.0,0.0,185.0,1,N
Owned_or_being_bought_(loan),72500.0,0.0,35985.0,1,1,2,1,0,0,0,0,1,1,4,1,0,0,Spouse,56.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,24.0,44.0,10250.0,6245.0,471.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,15880.0,1,0,1,0,1,1,0,0,0,0,10,0,0,6,Child,19.0,Male,Black_Negro,Never_married_single,No_not_in_school,1_to_3_years_of_college,22.0,10.0,4965.0,4965.0,102.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,1645.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,57.0,Female,White,Divorced,No_not_in_school,Grade_12,25.0,44.0,1645.0,1145.0,43.0,7,P
Rented,999999.0,165.0,5045.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,19.0,Male,White,Never_married_single,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,86.0,0,P
Rented,999999.0,450.0,29020.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,51.0,Male,White,Never_married_single,No_not_in_school,Grade_12,22.0,51.0,23890.0,20465.0,501.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,30920.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,5.0,Male,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,404.0,0,P
Owned_or_being_bought_(loan),47500.0,0.0,19005.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,35.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_11,29.0,27.0,19005.0,19005.0,324.0,2,P
Rented,999999.0,145.0,4510.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,89.0,Female,Japanese,Widowed,No_not_in_school,Grade_1-4,0.0,0.0,4510.0,0.0,129.0,2,P
Owned_or_being_bought_(loan),18750.0,0.0,24240.0,1,0,0,1,0,0,0,0,0,0,2,1,0,0,Head_Householder,70.0,Male,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,11625.0,0.0,501.0,5,P
Owned_or_being_bought_(loan),28750.0,0.0,19775.0,1,0,2,0,1,1,0,0,0,0,7,0,0,4,Child,12.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,175.0,0,P
Rented,999999.0,237.0,4210.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,25.0,Female,Black_Negro,Separated,No_not_in_school,Grade_11,18.0,44.0,4210.0,605.0,72.0,1,N
Owned_or_being_bought_(loan),42499.0,0.0,2715.0,1,1,2,1,0,0,0,0,2,1,7,4,1,0,Head_Householder,44.0,Male,Black_Negro,Married_spouse_present,No_not_in_school,Grade_12,26.0,19.0,1505.0,1505.0,24.0,1,P
Owned_or_being_bought_(loan),137500.0,0.0,9005.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,43.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,0.0,0.0,0.0,0.0,122.0,6,P
Rented,999999.0,155.0,2385.0,1,0,1,1,0,0,4,1,0,0,4,2,1,0,Head_Householder,25.0,Female,White,Separated,No_not_in_school,Grade_10,11.0,16.0,2385.0,2385.0,32.0,2,N
Rented,999999.0,237.0,0.0,2,1,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,18.0,Male,White,Never_married_single,No_not_in_school,None_or_preschool,22.0,18.0,5285.0,5285.0,139.0,0,N
Owned_or_being_bought_(loan),57500.0,0.0,30475.0,1,1,1,1,0,0,0,0,1,1,4,2,2,0,Spouse,21.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_12,24.0,44.0,11965.0,11965.0,412.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,20005.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,10.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,230.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,18310.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,42.0,Female,White,Divorced,No_not_in_school,Grade_12,22.0,61.0,18005.0,18005.0,312.0,6,P
Rented,999999.0,105.0,12005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,55.0,Male,White,Divorced,No_not_in_school,Grade_12,37.0,49.0,12005.0,12005.0,316.0,2,P
Owned_or_being_bought_(loan),200000.0,0.0,52840.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,12.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,501.0,0,P
Owned_or_being_bought_(loan),26250.0,0.0,27650.0,1,1,1,1,0,0,0,0,2,1,4,2,1,0,Head_Householder,46.0,Male,White,Married_spouse_present,No_not_in_school,Grade_1-4,26.0,36.0,27650.0,22365.0,374.0,6,P
Owned_or_being_bought_(loan),112500.0,0.0,7460.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,72.0,Female,White,Widowed,No_not_in_school,1_to_3_years_of_college,0.0,0.0,7460.0,0.0,213.0,5,P
Owned_or_being_bought_(loan),999999.0,0.0,22410.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,35.0,Female,White,Divorced,No_not_in_school,1_to_3_years_of_college,20.0,31.0,22410.0,22005.0,501.0,2,P
Owned_or_being_bought_(loan),67500.0,0.0,8190.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,85.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,5170.0,0.0,186.0,5,P
Rented,999999.0,115.0,10840.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,20.0,Female,White,Never_married_single,No_not_in_school,Grade_5-8,23.0,18.0,4205.0,4205.0,144.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,12525.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,75.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,20.0,9.0,4300.0,0.0,284.0,0,P
Rented,999999.0,175.0,4005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,22.0,Male,White,Never_married_single,No_not_in_school,Grade_11,23.0,18.0,4005.0,4005.0,106.0,2,P
Owned_or_being_bought_(loan),67500.0,0.0,17720.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,61.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,6005.0,0.0,363.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,61430.0,1,1,2,1,6,1,0,0,0,0,6,0,0,1,Sibling,59.0,Female,White,Never_married_single,No_not_in_school,Grade_12,0.0,0.0,3505.0,0.0,501.0,0,P
Rented,999999.0,325.0,9835.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,69.0,Female,White,Married_spouse_present,Yes_in_school,Grade_11,0.0,0.0,3275.0,0.0,223.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,40970.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,18.0,Male,White,Never_married_single,No_not_in_school,Grade_12,32.0,34.0,7315.0,7315.0,501.0,0,N
Owned_or_being_bought_(loan),999999.0,0.0,75000.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,39.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,41.0,68.0,75000.0,75000.0,501.0,2,P
Rented,999999.0,262.0,4005.0,2,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,4.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,68.0,0,P
Owned_or_being_bought_(loan),999999.0,0.0,17775.0,1,1,1,0,0,0,0,0,2,1,3,0,0,0,Child-in-law,24.0,Female,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,Grade_12,22.0,45.0,3365.0,3365.0,312.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,75000.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,49.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,22.0,51.0,15415.0,15415.0,501.0,0,P
Rented,999999.0,262.0,9885.0,1,1,2,1,5,1,0,0,2,1,5,2,1,0,Head_Householder,33.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,4+_years_of_college,27.0,39.0,0.0,0.0,111.0,2,P
Owned_or_being_bought_(loan),72500.0,0.0,20010.0,1,1,1,1,0,0,0,0,2,1,3,1,0,0,Head_Householder,65.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,23.0,18.0,14005.0,14005.0,351.0,7,P
Owned_or_being_bought_(loan),52500.0,0.0,26755.0,1,1,1,1,0,0,0,0,2,1,11,9,0,0,Head_Householder,43.0,Male,White,Married_spouse_present,No_not_in_school,Grade_1-4,26.0,12.0,15425.0,15425.0,181.0,7,P
Owned_or_being_bought_(loan),112500.0,0.0,53875.0,1,1,1,1,0,0,0,0,2,1,4,2,0,0,Head_Householder,54.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,79.0,92.0,50210.0,0.0,501.0,6,P
Rented,999999.0,175.0,25005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,49.0,Male,White,Separated,No_not_in_school,4+_years_of_college,41.0,68.0,25005.0,25005.0,501.0,1,P
Owned_or_being_bought_(loan),42499.0,0.0,6995.0,2,2,1,0,1,1,0,0,4,3,5,0,0,1,Child,20.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,20.0,8.0,1105.0,1105.0,78.0,0,P
Rented,999999.0,175.0,5005.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,5.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,51.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,17460.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,62.0,Female,White,Married_spouse_present,No_not_in_school,Grade_10,22.0,45.0,8355.0,0.0,357.0,0,P
Rented,999999.0,325.0,16525.0,1,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,8.0,Female,Black_Negro,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,223.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,40560.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,50.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,22.0,61.0,18005.0,18005.0,501.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,38600.0,1,1,0,0,0,0,0,0,2,1,3,0,0,1,Head_Householder,25.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,61.0,93.0,20100.0,19805.0,501.0,1,P
Owned_or_being_bought_(loan),95000.0,0.0,61065.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,15.0,Female,Other_Asian_or_Pacific,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,70.0,999999.0,501.0,0,P
Rented,999999.0,212.0,5005.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,35.0,Male,Black_Negro,Never_married_single,Yes_in_school,4+_years_of_college,26.0,32.0,9010.0,7005.0,237.0,0,P
Rented,999999.0,262.0,13005.0,1,0,1,0,1,1,0,0,0,0,2,0,0,0,Child,12.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,259.0,0,P
Owned_or_being_bought_(loan),12500.0,0.0,3970.0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,Grandchild,17.0,Female,White,Never_married_single,Yes_in_school,Grade_12,0.0,0.0,0.0,0.0,79.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,16010.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,39.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,37.0,78.0,16010.0,14005.0,422.0,2,P
Owned_or_being_bought_(loan),95000.0,0.0,26175.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,19.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,24.0,44.0,4005.0,4005.0,501.0,0,N
Rented,999999.0,287.0,2210.0,1,1,1,1,0,0,0,0,1,1,3,1,0,0,Spouse,37.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,25.0,44.0,1005.0,1005.0,38.0,0,P
Rented,999999.0,375.0,31525.0,1,0,0,1,0,0,0,0,0,0,2,1,0,0,Head_Householder,56.0,Male,White,Divorced,No_not_in_school,Grade_9,25.0,11.0,23020.0,19015.0,501.0,1,P
Rented,999999.0,325.0,12220.0,1,1,1,1,2,1,1,1,0,0,10,0,0,7,Child,14.0,Male,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,87.0,0,P
Rented,999999.0,75.0,4725.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,17.0,Male,White,Never_married_single,No_not_in_school,Grade_1-4,20.0,8.0,5745.0,5745.0,151.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,70005.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Parent,81.0,Female,White,Widowed,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),12500.0,0.0,20010.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,15.0,Female,Other_race_nec,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,0.0,999999.0,224.0,0,P
Rented,999999.0,145.0,3005.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,55.0,Male,Black_Negro,Separated,No_not_in_school,Grade_5-8,24.0,47.0,3005.0,0.0,79.0,6,N
Owned_or_being_bought_(loan),137500.0,0.0,35010.0,1,1,0,0,0,0,0,0,1,1,2,0,0,0,Spouse,54.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,22.0,45.0,11005.0,11005.0,501.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,54235.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,17.0,Female,White,Never_married_single,Yes_in_school,Grade_10,24.0,47.0,625.0,625.0,501.0,0,P
Rented,999999.0,325.0,8975.0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,26.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,24.0,44.0,8975.0,7805.0,237.0,1,N
Rented,999999.0,262.0,7455.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,19.0,Male,Other_race_nec,Never_married_single,No_not_in_school,Grade_12,24.0,44.0,7455.0,7455.0,196.0,1,P
Rented,999999.0,375.0,3095.0,1,1,2,1,0,0,0,0,1,1,8,2,1,0,Spouse,30.0,Female,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,24.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,63530.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,10.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,501.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,73275.0,1,1,2,1,0,0,0,0,1,1,6,3,0,0,Spouse,46.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,4+_years_of_college,19.0,46.0,19530.0,19475.0,501.0,0,P
Owned_or_being_bought_(loan),85000.0,0.0,37425.0,1,1,0,0,0,0,0,0,0,0,5,0,0,3,Sibling,55.0,Male,White,Never_married_single,No_not_in_school,Grade_12,22.0,18.0,1205.0,1205.0,412.0,0,P
Rented,999999.0,212.0,3010.0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,Head_Householder,62.0,Female,Black_Negro,Widowed,No_not_in_school,Grade_5-8,0.0,0.0,2345.0,0.0,62.0,2,P
Rented,999999.0,375.0,14235.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,4.0,Male,Black_Negro,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,192.0,0,P
Rented,999999.0,155.0,12640.0,1,0,2,0,1,1,0,0,0,0,7,0,0,3,Child,17.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_11,22.0,18.0,2570.0,775.0,112.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,43055.0,1,2,1,1,2,1,1,1,0,0,5,0,0,1,Child,15.0,Female,White,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,0.0,999999.0,468.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,10005.0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,32.0,Male,White,Never_married_single,No_not_in_school,1_to_3_years_of_college,24.0,47.0,10005.0,10005.0,264.0,2,P
Rented,999999.0,1.0,1565.0,1,0,1,0,0,0,0,0,0,0,2,1,1,0,Head_Householder,29.0,Female,White,Divorced,No_not_in_school,Grade_12,22.0,51.0,1565.0,1565.0,31.0,2,P
Owned_or_being_bought_(loan),72500.0,0.0,20155.0,1,0,0,1,0,0,2,1,0,0,2,0,0,0,Head_Householder,55.0,Female,White,Divorced,No_not_in_school,Grade_12,25.0,44.0,13410.0,10005.0,413.0,7,P
Owned_or_being_bought_(loan),72500.0,0.0,21890.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,8.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,296.0,0,P
Rented,999999.0,262.0,0.0,4,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,4.0,Male,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,1.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,43855.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,26.0,Male,White,Never_married_single,No_not_in_school,Grade_12,23.0,18.0,11965.0,11965.0,501.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,50375.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,18.0,Male,White,Never_married_single,Yes_in_school,Grade_12,0.0,0.0,2345.0,0.0,501.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,56305.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,17.0,Female,White,Never_married_single,Yes_in_school,Grade_10,14.0,26.0,0.0,0.0,466.0,0,P
Rented,999999.0,287.0,9885.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,33.0,Male,White,Married_spouse_present,No_not_in_school,4+_years_of_college,35.0,52.0,9885.0,9885.0,168.0,5,P
Owned_or_being_bought_(loan),57500.0,0.0,9405.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,10.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,127.0,0,P
Rented,999999.0,325.0,0.0,1,0,1,0,1,1,0,0,0,0,6,0,0,4,Child,6.0,Female,White,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,1.0,0,P
Owned_or_being_bought_(loan),175000.0,0.0,75000.0,1,1,1,1,2,1,1,1,0,0,5,0,0,1,Child,16.0,Male,American_Indian,Never_married_single,Yes_in_school,Grade_10,0.0,0.0,0.0,0.0,501.0,0,P
Rented,999999.0,450.0,17715.0,1,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,10.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,239.0,0,P
Owned_or_being_bought_(loan),57500.0,0.0,37955.0,1,2,1,1,2,1,1,1,0,0,8,0,0,4,Child,14.0,Female,White,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,297.0,0,P
Rented,999999.0,212.0,17270.0,2,1,2,1,9,1,0,0,1,1,9,6,0,0,Spouse,35.0,Female,White,Married_spouse_present,No_not_in_school,Grade_1-4,23.0,18.0,6005.0,6005.0,117.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,4585.0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,Head_Householder,84.0,Female,White,Widowed,No_not_in_school,Grade_10,0.0,0.0,2680.0,0.0,104.0,7,P
Owned_or_being_bought_(loan),999999.0,0.0,40320.0,1,1,2,1,2,1,1,1,0,0,7,2,0,2,Child,29.0,Female,White,Separated,No_not_in_school,Grade_12,23.0,18.0,3305.0,3305.0,341.0,0,P
Rented,999999.0,262.0,3655.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,64.0,Female,White,Divorced,No_not_in_school,Grade_12,24.0,44.0,3655.0,0.0,96.0,5,P
Owned_or_being_bought_(loan),77500.0,0.0,4270.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,45.0,Female,White,Widowed,No_not_in_school,4+_years_of_college,0.0,0.0,4270.0,0.0,113.0,6,P
Owned_or_being_bought_(loan),62500.0,0.0,24005.0,2,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,8.0,Male,Other_race_nec,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,220.0,0,P
Owned_or_being_bought_(loan),32500.0,0.0,9455.0,1,1,2,1,2,1,1,1,0,0,8,0,0,4,Child,18.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_11,17.0,11.0,205.0,205.0,74.0,0,P
Rented,999999.0,65.0,12005.0,1,1,1,1,0,0,0,0,1,1,5,2,1,0,Spouse,28.0,Female,White,Married_spouse_present,No_not_in_school,Grade_12,0.0,0.0,0.0,0.0,138.0,0,P
Rented,999999.0,155.0,23515.0,1,1,1,1,2,1,1,1,0,0,5,0,0,2,Child,8.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,270.0,0,P
Rented,999999.0,262.0,7805.0,1,1,1,1,0,0,0,0,2,1,5,3,3,0,Head_Householder,35.0,Male,White,Married_spouse_present,No_not_in_school,Grade_1-4,20.0,8.0,7805.0,7805.0,90.0,1,P
Rented,999999.0,155.0,12640.0,1,0,2,0,1,1,0,0,0,0,7,0,0,3,Child,20.0,Female,Black_Negro,Separated,Yes_in_school,1_to_3_years_of_college,24.0,44.0,2305.0,2305.0,112.0,0,P
Rented,999999.0,212.0,6005.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,45.0,Female,White,Separated,No_not_in_school,Grade_5-8,23.0,18.0,6005.0,6005.0,102.0,1,N
Rented,999999.0,500.0,26120.0,2,0,1,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,38.0,Female,White,Divorced,No_not_in_school,Grade_12,19.0,17.0,8005.0,8005.0,211.0,0,P
Owned_or_being_bought_(loan),137500.0,0.0,26015.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,12.0,Male,White,Never_married_single,No_not_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,352.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,14565.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,20.0,Female,White,Never_married_single,Yes_in_school,1_to_3_years_of_college,24.0,44.0,885.0,885.0,194.0,0,P
Owned_or_being_bought_(loan),72500.0,0.0,39120.0,1,1,1,1,1,1,2,1,0,0,3,0,0,0,Child,5.0,Male,Other_Asian_or_Pacific,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,501.0,0,P
Rented,999999.0,450.0,33265.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,39.0,Female,White,Separated,No_not_in_school,1_to_3_years_of_college,35.0,68.0,33265.0,26405.0,501.0,1,P
Owned_or_being_bought_(loan),32500.0,0.0,40450.0,1,1,0,0,0,0,0,0,2,2,3,0,0,0,Head_Householder,68.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_5-8,24.0,44.0,29645.0,29645.0,501.0,8,P
Rented,999999.0,135.0,15010.0,1,0,1,0,0,0,0,0,0,0,3,0,0,1,Sibling,78.0,Male,Other_race_nec,Never_married_single,No_not_in_school,Grade_5-8,0.0,0.0,0.0,0.0,263.0,0,P
Rented,999999.0,237.0,8110.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,52.0,Female,White,Divorced,No_not_in_school,Grade_9,10.0,19.0,8110.0,8005.0,214.0,2,N
Rented,999999.0,175.0,0.0,2,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,3.0,Female,White,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,1.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,24010.0,1,1,1,1,0,0,0,0,2,1,4,2,1,0,Head_Householder,29.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,24.0,47.0,17005.0,17005.0,325.0,5,P
Rented,999999.0,175.0,7305.0,1,0,1,0,1,1,0,0,0,0,2,0,0,0,Child,19.0,Male,Other_race_nec,Never_married_single,No_not_in_school,Grade_11,20.0,9.0,3060.0,1505.0,150.0,0,P
Owned_or_being_bought_(loan),95000.0,0.0,59600.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,43.0,Female,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,4+_years_of_college,48.0,87.0,19255.0,19255.0,501.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,25010.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,61.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,38.0,68.0,25010.0,20005.0,501.0,6,N
Owned_or_being_bought_(loan),57500.0,0.0,26005.0,1,1,1,1,0,0,0,0,2,1,3,1,1,0,Head_Householder,25.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,26.0,19.0,26005.0,26005.0,443.0,1,N
Rented,999999.0,325.0,18010.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,9.0,Female,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,243.0,0,P
Rented,999999.0,175.0,9575.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,89.0,Male,White,Married_spouse_present,No_not_in_school,Grade_5-8,0.0,0.0,6470.0,0.0,217.0,5,P
Owned_or_being_bought_(loan),999999.0,0.0,23110.0,1,1,1,1,2,1,1,1,0,0,3,0,0,0,Child,20.0,Male,White,Never_married_single,No_not_in_school,Grade_12,22.0,8.0,7105.0,7105.0,405.0,0,P
Rented,999999.0,212.0,14975.0,1,1,1,1,2,1,1,1,0,0,6,0,0,3,Child,5.0,Female,Black_Negro,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,143.0,0,P
Rented,999999.0,500.0,40010.0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,Partner_friend_visitor,23.0,Male,White,Never_married_single,No_not_in_school,4+_years_of_college,18.0,19.0,17005.0,17005.0,448.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,24850.0,1,1,1,1,0,0,0,0,2,2,4,2,0,0,Head_Householder,38.0,Female,Black_Negro,Married_spouse_present,No_not_in_school,Grade_12,22.0,51.0,6125.0,6125.0,336.0,2,P
Owned_or_being_bought_(loan),137500.0,0.0,26545.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,56.0,Male,White,Married_spouse_present,No_not_in_school,Grade_9,23.0,18.0,26545.0,26545.0,501.0,7,P
Owned_or_being_bought_(loan),112500.0,0.0,56740.0,1,1,1,1,0,0,0,0,1,1,9,3,0,2,Spouse,41.0,Female,White,Married_spouse_present,No_not_in_school,Grade_9,24.0,44.0,3110.0,0.0,358.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,16005.0,1,1,1,1,0,0,0,0,1,1,5,3,2,0,Spouse,31.0,Female,White,Married_spouse_present,No_not_in_school,1_to_3_years_of_college,0.0,0.0,0.0,0.0,184.0,0,P
Owned_or_being_bought_(loan),52500.0,0.0,13005.0,1,1,2,1,2,1,1,1,0,0,8,0,0,4,Child,7.0,Male,White,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,105.0,0,P
Rented,999999.0,262.0,13425.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,49.0,Female,White,Never_married_single,No_not_in_school,Grade_12,24.0,44.0,13425.0,13425.0,354.0,5,P
Rented,999999.0,325.0,14005.0,1,1,1,1,0,0,0,0,2,1,4,2,2,0,Head_Householder,34.0,Male,Other_Asian_or_Pacific,Married_spouse_present,No_not_in_school,4+_years_of_college,17.0,13.0,14005.0,14005.0,189.0,2,P
Owned_or_being_bought_(loan),23750.0,0.0,10985.0,1,0,1,0,1,1,0,0,0,0,4,0,0,2,Child,4.0,Male,Black_Negro,Never_married_single,No_not_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,148.0,0,P
Rented,999999.0,325.0,12150.0,3,1,1,1,0,0,0,0,0,0,1,0,0,0,Other_non-relatives,28.0,Male,White,Never_married_single,No_not_in_school,Grade_1-4,20.0,8.0,3005.0,3005.0,79.0,0,P
Owned_or_being_bought_(loan),32500.0,0.0,30080.0,1,1,1,1,2,1,1,1,0,0,11,0,0,5,Child,16.0,Male,White,Never_married_single,Yes_in_school,Grade_9,0.0,0.0,0.0,0.0,199.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,8910.0,1,0,1,0,0,0,0,0,0,0,3,2,0,0,Head_Householder,31.0,Female,Black_Negro,Divorced,No_not_in_school,4+_years_of_college,41.0,68.0,8910.0,4455.0,152.0,5,P
Rented,999999.0,262.0,5010.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,5.0,Male,Black_Negro,Never_married_single,Yes_in_school,None_or_preschool,0.0,0.0,999999.0,999999.0,85.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,14320.0,1,1,0,0,0,0,0,0,2,1,2,0,0,0,Head_Householder,75.0,Male,White,Married_spouse_present,No_not_in_school,Grade_12,38.0,68.0,3485.0,0.0,325.0,8,P
Rented,999999.0,145.0,2415.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,7.0,Male,Other_race_nec,Never_married_single,Yes_in_school,Grade_1-4,0.0,0.0,999999.0,999999.0,33.0,0,P
Owned_or_being_bought_(loan),67500.0,0.0,7690.0,1,0,0,0,0,0,0,0,0,0,2,0,0,1,Head_Householder,72.0,Female,Black_Negro,Separated,No_not_in_school,Grade_5-8,0.0,0.0,3605.0,0.0,174.0,8,P
Owned_or_being_bought_(loan),42499.0,0.0,24215.0,1,1,1,1,2,1,1,1,0,0,7,0,0,4,Child,11.0,Male,Black_Negro,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,214.0,0,P
Owned_or_being_bought_(loan),112500.0,0.0,34035.0,1,1,1,1,2,1,1,1,0,0,4,0,0,1,Child,12.0,Female,Black_Negro,Never_married_single,Yes_in_school,Grade_5-8,0.0,0.0,999999.0,999999.0,460.0,0,P
Owned_or_being_bought_(loan),77500.0,0.0,23095.0,1,1,1,1,0,0,0,0,1,1,4,2,0,0,Spouse,49.0,Female,White,Married_spouse_present,No_not_in_school,Grade_11,26.0,72.0,2810.0,1305.0,312.0,0,P
Owned_or_being_bought_(loan),200000.0,0.0,17535.0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,Head_Householder,62.0,Male,White,Widowed,No_not_in_school,Grade_10,23.0,18.0,17535.0,17535.0,462.0,6,P
Rented,999999.0,375.0,10810.0,1,0,0,0,0,0,0,0,0,0,2,0,0,1,Head_Householder,19.0,Male,White,Never_married_single,No_not_in_school,Grade_10,32.0,49.0,10005.0,10005.0,215.0,1,P
Rented,999999.0,262.0,10155.0,1,0,1,0,1,1,0,0,0,0,3,0,0,1,Child,20.0,Male,Black_Negro,Never_married_single,No_not_in_school,Grade_11,26.0,32.0,3645.0,3645.0,178.0,0,N