-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOI_mrc_table2.csv
We can't make this file beautiful and searchable because it's too large.
2203 lines (2203 loc) · 550 KB
/
OI_mrc_table2.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
name,tier,tier_name,iclevel,region,state,cfips,county,female,k_married,mr_kq5_pq1,mr_ktop1_pq1,par_mean,par_median,par_rank,par_q1,par_q2,par_q3,par_q4,par_q5,par_top10pc,par_top5pc,par_top1pc,par_toppt1pc
ASA Institute Of Business & Computer Technology,11,Two-year for-profit,2,1,NY,36047,Kings,0.79878789,0.1836585,0.020033944,1.89E-05,35390.3968,29000,0.274209106,0.44357517,0.32679018,0.14371076,0.05970677,0.026217192,0.013222894,0.006964942,0.000415863,0.000103003
Abilene Christian University,6,Selective private,1,3,TX,48441,Taylor,0.55961841,0.71257001,0.014363836,0.001996945,138760.9698,101000,0.683686359,0.052441355,0.10103199,0.16393574,0.25824007,0.42435089,0.23586491,0.12660472,0.023049099,0.000841904
Abraham Baldwin Agricultural College,7,Nonselective four-year public,1,3,GA,13277,Tift,0.44160941,0.58075023,0.014857335,0.00099537,80366.66127,66000,0.525405982,0.15455516,0.18715858,0.22549702,0.23676255,0.19602653,0.072930537,0.033044621,0.002520282,0.000608527
Academy Of Art University,10,Four-year for-profit,1,4,CA,6075,San Francisco,0.4142569,0.34508148,0.01635739,0.001360899,166594.9696,92300,0.649209833,0.093524233,0.12291715,0.1753495,0.21152514,0.39668405,0.24404958,0.14739551,0.035681199,0.003368349
Adams State University,5,Selective public,1,4,CO,8003,Alamosa,0.50084746,0.56966305,0.018844681,3.10E-05,76121.81634,67200,0.540471235,0.12922439,0.1855039,0.24842876,0.26087633,0.17596665,0.064278461,0.024887405,0.003146715,0
Adelphi University,6,Selective private,1,1,NY,36059,Nassau,0.71840209,0.54553699,0.032585073,0.002612555,130723.7409,96300,0.648892214,0.087048024,0.12853861,0.15643388,0.22986455,0.39811498,0.2053698,0.10392397,0.023863256,0.00193671
Adirondack Community College - SUNY Office Of Community Colleges,9,Two-year (public and private not-for-profit),2,1,NY,36113,Warren,0.5263952,0.48989117,0.009940931,2.83E-05,75699.25196,69900,0.534996618,0.11428819,0.17760713,0.25521886,0.29444924,0.1584366,0.045389868,0.015902614,0.001922987,9.23E-05
Adrian College,6,Selective private,1,2,MI,26091,Lenawee,0.55478501,0.65137172,0.009564629,4.23E-05,113708.1117,88500,0.643139329,0.060760289,0.11535594,0.20081325,0.28132689,0.34174353,0.1497259,0.072932914,0.011504383,0.001322675
Advanced Institute Of Hair Design,11,Two-year for-profit,2,2,WI,55079,Milwaukee,0.99137932,0.58200473,0.020172881,9.74E-05,90962.75,78100,0.621006866,0.025902087,0.11116548,0.25450274,0.40800014,0.20042956,0.094894953,0.015591938,0.001437937,0.00083525
Advanced Technology Institute,11,Two-year for-profit,2,3,VA,51810,Virginia Beach City,0.039164491,0.40728205,0.031438664,6.50E-05,69400.14868,57200,0.481592976,0.15953134,0.21892074,0.26273358,0.2235292,0.13528517,0.027271068,0.010344932,0.002457908,5.80E-06
Adventist University Of Health Sciences,8,Nonselective four-year private not-for-profit,1,3,FL,12095,Orange,0.76348549,0.53837162,0.037858434,7.64E-05,73132.16146,62900,0.532083193,0.12763435,0.21570545,0.2254377,0.27373475,0.15748784,0.03309045,0.016315293,0.00058266,0.000185221
Agnes Scott College,4,Highly selective private,1,3,GA,13089,DeKalb,0.99695122,0.50208014,0.014744159,8.43E-05,148536.1146,97200,0.646476328,0.072003044,0.12996751,0.15526837,0.226091,0.41667008,0.23255238,0.11762413,0.012381608,0.002919478
Aiken Technical College,9,Two-year (public and private not-for-profit),2,3,SC,45003,Aiken,0.53883201,0.42719471,0.017105054,0,67392.41217,64100,0.496268337,0.20115341,0.19178109,0.18350492,0.26164183,0.16191886,0.050870921,0.012990623,0.001542641,1.43E-05
Alabama Agricultural & Mechanical University,5,Selective public,1,3,AL,1089,Madison,0.51395267,0.23482969,0.0421931,0.000729114,57659.15269,44500,0.425329574,0.24356118,0.26432449,0.19608772,0.17628771,0.11973897,0.032962188,0.009083641,0.000179344,0.000126663
Alabama Southern Community College,9,Two-year (public and private not-for-profit),2,3,AL,1099,Monroe,0.59677422,0.41742578,0.030778091,0,61075.67018,44300,0.417778869,0.29389939,0.22918545,0.16352981,0.21245942,0.1009258,0.034645256,0.012100537,0.003593802,0.000223684
Alamance Community College,9,Two-year (public and private not-for-profit),2,3,NC,37001,Alamance,0.59614146,0.4634057,0.004474188,0,72254.9352,61200,0.512171664,0.13409744,0.21639305,0.24086517,0.25753823,0.15110618,0.0470149,0.020127453,0.002242142,4.22E-05
Alamo Community College District,9,Two-year (public and private not-for-profit),2,3,TX,48029,Bexar,0.54037869,0.4291977,0.02440845,9.94E-05,65078.97563,50600,0.453478906,0.21751642,0.24149129,0.21906626,0.19534898,0.12657699,0.047545817,0.018594263,0.002772422,0.000144082
Albany College Of Pharmacy And Health Sciences,8,Nonselective four-year private not-for-profit,1,1,NY,36001,Albany,0.59689921,0.74353045,0.033575334,0.000100101,90997.46875,95800,0.661741018,0.039403558,0.10187934,0.18648764,0.27667844,0.39555106,0.16515727,0.041671876,0.001978402,0.000272034
Albany State University,5,Selective public,1,3,GA,13095,Dougherty,0.63595647,0.21053372,0.025794942,0,54718.25916,43800,0.420957634,0.2330108,0.28163674,0.21580002,0.1759358,0.093616597,0.025878895,0.007332874,0.000947231,5.53E-05
Albany Technical College,9,Two-year (public and private not-for-profit),2,3,GA,13095,Dougherty,0.62720001,0.22114572,0.014374671,0.001068568,43728.09115,29200,0.289352655,0.44530651,0.28822574,0.13613243,0.091694914,0.03864035,0.015377056,0.006204087,0.000590431,0.000176775
Albertus Magnus College,6,Selective private,1,1,CT,9009,New Haven,,0.40746137,0.055204768,3.82E-05,89400.36429,68600,0.545599098,0.12973523,0.16373675,0.24205586,0.23975486,0.22471726,0.10005123,0.049870253,0.003582891,0.000145413
Albion College,6,Selective private,1,2,MI,26025,Calhoun,0.56407034,0.67621833,0.006813185,0.000116058,159765.401,120700,0.738589386,0.022652306,0.069142476,0.13488385,0.23832628,0.53499514,0.33973223,0.17897189,0.029275218,0.001655841
Albright College,6,Selective private,1,1,PA,42011,Berks,0.59023356,0.58927262,0.013705797,4.25E-05,139372.1685,89000,0.646742554,0.051434021,0.1267895,0.2036522,0.29418346,0.32394081,0.14266323,0.055048574,0.013267925,0.001129514
Alderson Broaddus University,6,Selective private,1,3,WV,54001,Barbour,0.6322751,0.66366309,0.027365765,0.000179451,68810.9659,59500,0.499516529,0.12749578,0.234915,0.28003561,0.23765394,0.11989974,0.038474966,0.021652492,0.000308738,2.20E-05
Alfred University,6,Selective private,1,1,NY,36003,Allegany,0.52639294,0.60422957,0.014770933,5.07E-05,133071.2606,90800,0.650354717,0.065330885,0.12035545,0.19156954,0.26581183,0.35693237,0.17403902,0.089041352,0.018995715,0.003757956
Allan Hancock College,9,Two-year (public and private not-for-profit),2,4,CA,6083,Santa Barbara,0.5262295,0.49325484,0.019464159,5.76E-05,76983.84115,65700,0.529356321,0.1408916,0.18905991,0.23496437,0.25687888,0.1782054,0.061796099,0.02819534,0.00467001,0.000257449
Allegany College Of Maryland,9,Two-year (public and private not-for-profit),2,3,MD,24001,Allegany,0.59288889,0.56228483,0.019646211,8.25E-05,66930.82031,57900,0.488503476,0.15657392,0.22410621,0.29169142,0.22855283,0.099075511,0.036268938,0.017396485,0.00135686,0.000151485
Allegheny College,6,Selective private,1,1,PA,42039,Crawford,0.50517839,0.62554431,0.013434455,0.00222989,142412.0833,102800,0.708648741,0.037381232,0.078848675,0.1665498,0.288313,0.42890722,0.25286427,0.13671601,0.026483722,0.001901667
Allen County Community College,9,Two-year (public and private not-for-profit),2,2,KS,20001,Allen,0.57290018,0.54991829,0.011012558,1.48E-05,74845.65544,65000,0.526211282,0.10632455,0.19791794,0.28203198,0.26905611,0.14466943,0.041579459,0.0126484,0.002191362,8.04E-05
Alma College,6,Selective private,1,2,MI,26057,Gratiot,0.56097561,0.71877366,0.011659105,8.16E-05,120659.526,98200,0.689799746,0.050117996,0.095352128,0.17640549,0.28018877,0.39793569,0.21285716,0.10735939,0.016617836,0.0001292
Alpena Community College,9,Two-year (public and private not-for-profit),2,2,MI,26007,Alpena,0.46733668,0.55798501,0.015276693,7.38E-05,68727.44271,60600,0.497607559,0.15903667,0.1923676,0.28650403,0.2348613,0.12723048,0.027908636,0.020579832,0.002238735,0.000358329
Altamaha Technical College,9,Two-year (public and private not-for-profit),2,3,GA,13305,Wayne,0.55737704,0.40532565,0.022791615,8.06E-05,48751.51172,35700,0.349743028,0.37032306,0.25208858,0.22068323,0.1103714,0.046533782,0.011560021,0.009453585,0.000505221,0.0001292
Alvernia University,6,Selective private,1,1,PA,42011,Berks,0.62440568,0.56393397,0.021852216,0.001535565,94909.35131,84300,0.616992408,0.066485949,0.14129101,0.21616477,0.31234124,0.26371697,0.11675507,0.043267734,0.008258023,7.38E-05
Alverno College,6,Selective private,1,2,WI,55079,Milwaukee,0.99792963,0.43997833,0.026607819,0.002127414,76471.00966,65600,0.519893954,0.15033281,0.19734082,0.22081539,0.27449477,0.15701626,0.068817817,0.024885833,0.005124783,6.24E-05
Alvin Community College,9,Two-year (public and private not-for-profit),2,3,TX,48039,Brazoria,0.55083907,0.54605395,0.017735526,0,95668.52346,84500,0.610463218,0.092303403,0.13839598,0.18687269,0.29412159,0.28830639,0.092276096,0.036763832,0.00274019,0.000818027
Amarillo College,9,Two-year (public and private not-for-profit),2,3,TX,48375,Potter,0.55084938,0.55079144,0.019522574,0.000446734,70729.86157,58500,0.488905797,0.16241902,0.22502606,0.22983143,0.24252202,0.14020148,0.044894155,0.02017108,0.003010451,0.000238369
American Career College of Los Angeles - CA,11,Two-year for-profit,2,4,CA,6037,Los Angeles,0.82431054,0.28423366,0.019744419,5.22E-05,55879.31641,30400,0.318561902,0.41461432,0.28462368,0.15968955,0.09054707,0.050525419,0.018174158,0.005686146,0.003104616,0.00144736
American Institute Of Business,8,Nonselective four-year private not-for-profit,1,2,IA,19153,Polk,0.71465629,0.68425125,0.014345624,6.48E-05,77755.57664,66000,0.544485238,0.081016317,0.1941523,0.29171199,0.30712795,0.12599143,0.03304711,0.024251265,0.00312296,0.000158517
American Intercontinental University,10,Four-year for-profit,1,2,IL,17031,Cook,0.58985066,0.36369017,0.026364811,0.000717734,62196.20024,44700,0.415672902,0.26033288,0.25847679,0.22258297,0.16052973,0.098077446,0.041142762,0.018535789,0.004889943,0.000489295
American International College,6,Selective private,1,1,MA,25013,Hampden,0.50483561,0.42280263,0.026896371,0,79213.42305,68700,0.539727626,0.1455442,0.1995191,0.18894041,0.25597811,0.21001817,0.077038728,0.027052341,0.005896935,6.81E-05
American Musical & Dramatic Academy,8,Nonselective four-year private not-for-profit,1,1,NY,36061,New York,0.65619224,0.36969981,0.00702624,8.06E-05,115011.5703,88800,0.644483129,0.06849435,0.13463777,0.18843894,0.26431316,0.34411585,0.18152286,0.063715003,0.010904926,0.001281826
American National University,10,Four-year for-profit,1,3,VA,51775,Salem City,0.81465137,0.36971423,0.009691824,0,43873.0047,38300,0.369709907,0.29305914,0.2959623,0.2585285,0.11077217,0.041677851,0.017481865,0.00067595,0.00067595,4.02E-05
American University ,4,Highly selective private,1,3,DC,11001,District Of Columbia,0.63553941,0.52136064,0.012844238,0.001853017,305748.2662,135700,0.775091677,0.035309114,0.066071384,0.10890936,0.17679563,0.61291456,0.43759501,0.2953482,0.087893449,0.014072705
Amherst College,2,Other elite schools (public and private),1,1,MA,25015,Hampshire,0.48417452,0.55561686,0.019616831,0.0026927,440985.7169,181300,0.809826901,0.042215958,0.059988361,0.094621271,0.097151466,0.70602298,0.58360541,0.43920442,0.16812453,0.023892084
Ancilla Domini College,9,Two-year (public and private not-for-profit),2,2,IN,18099,Marshall,0.56430447,0.51668769,0.006454282,0,72471.06687,61300,0.552056255,0.10462378,0.20454895,0.28308892,0.27075192,0.13698658,0.03280548,0.014519827,0.000728676,0.000481094
Anderson University of Anderson - IN,6,Selective private,1,2,IN,18095,Madison,0.57652301,0.70850742,0.007135674,0,116464.4859,88400,0.664967786,0.052718632,0.098190263,0.21165113,0.30204177,0.33539814,0.15427433,0.076988913,0.015878981,0.000834479
Anderson University of Anderson - SC,8,Nonselective four-year private not-for-profit,1,3,SC,45007,Anderson,0.62037039,0.68392432,0.011968425,0.001502922,89558.53371,75900,0.593350396,0.085361473,0.14384307,0.23654573,0.31470928,0.21954045,0.090228274,0.040539686,0.004523106,0
Andrews University,6,Selective private,1,2,MI,26021,Berrien,0.52664977,0.5948481,0.02404573,0.000115356,101521.1542,73900,0.576327226,0.093424968,0.17074327,0.23247668,0.26152712,0.24182813,0.1172775,0.079211667,0.017232016,0.001372643
Angelina College,9,Two-year (public and private not-for-profit),2,3,TX,48005,Angelina,0.59120458,0.50160164,0.023021303,0.001536184,55254.5624,45900,0.416496641,0.26211667,0.24923988,0.22263774,0.16984451,0.096161284,0.030602381,0.008404361,0.000735613,0.000195557
Angelo State University,5,Selective public,1,3,TX,48451,Tom Green,0.55321103,0.6384185,0.021094922,2.73E-05,79315.0784,68400,0.538717774,0.11666122,0.17981094,0.25133204,0.27265513,0.17954072,0.064379506,0.025186485,0.003909629,0.000318453
Anna Maria College,6,Selective private,1,1,MA,25027,Worcester,0.69125682,0.59595132,0.01695396,0,108239.2152,90400,0.655685177,0.050080616,0.12086296,0.18476796,0.30326933,0.34101921,0.12069109,0.039577294,0.011772706,9.73E-05
Anne Arundel Community College,9,Two-year (public and private not-for-profit),2,3,MD,24003,Anne Arundel,0.53545672,0.48565707,0.012353074,0.00015035,105564.4282,91100,0.650631178,0.062969223,0.11771846,0.18344226,0.2818532,0.3540169,0.14790857,0.051149484,0.00665812,0.000907946
Antelope Valley College,9,Two-year (public and private not-for-profit),2,4,CA,6037,Los Angeles,0.53972697,0.43287462,0.019280404,4.22E-05,71043.66439,66600,0.520847316,0.1640186,0.1747461,0.21986827,0.26280379,0.17856315,0.050849926,0.01237582,0.001597043,8.82E-06
Anthem College And The Bryman School Of Arizona,10,Four-year for-profit,1,4,AZ,4013,Maricopa,0.68039256,0.347478,0.013152837,1.21E-05,51869.36068,41100,0.387356222,0.26990733,0.29609391,0.21190222,0.15714025,0.064956464,0.020059766,0.003681906,0.000707128,0.000267682
Anthem Institute,12,Less than two-year schools of any type,3,1,NJ,34017,Hudson,0.2760095,0.32981238,0.031372156,0.001436333,75983.0101,56900,0.49591278,0.18898329,0.22520447,0.19635898,0.206406,0.18304738,0.076470777,0.024670025,0.003773419,0.000476367
Antonelli College,11,Two-year for-profit,2,3,MS,28121,Rankin,0.72495091,0.34146017,0.011797697,0,50262.57463,37200,0.389443846,0.32667789,0.23901823,0.167437,0.16681309,0.10005391,0.027649811,0.00687835,0.001722373,7.21E-05
Appalachian State University,5,Selective public,1,3,NC,37189,Watauga,0.52059871,0.6515426,0.005400483,0.000253233,139395.6926,105900,0.714398152,0.035452351,0.080750085,0.15510227,0.26795709,0.46073815,0.25032452,0.12419733,0.022165755,0.001656669
Aquinas College,6,Selective private,1,2,MI,26081,Kent,0.64645308,0.65815198,0.005840097,0,129991.2852,94800,0.686997665,0.034027312,0.069324307,0.19141719,0.33323264,0.37199861,0.17208637,0.10534691,0.024719775,0.001248495
Arapahoe Community College,9,Two-year (public and private not-for-profit),2,4,CO,8005,Arapahoe,0.51102829,0.49721971,0.009459664,5.04E-05,110998.934,93800,0.66375749,0.057288367,0.10765015,0.18125501,0.2872293,0.36657712,0.17130682,0.076366432,0.009429826,0.000359366
Arcadia University,6,Selective private,1,1,PA,42091,Montgomery,0.74433655,0.60099971,0.019300634,0.002160176,148066.9625,92200,0.667812364,0.057861663,0.11233881,0.17448887,0.28678066,0.36853001,0.19408038,0.093165353,0.02883395,0.005523332
Argosy University,10,Four-year for-profit,1,4,CA,6071,San Bernardino,0.92997199,0.5772028,0.000854953,1.51E-05,101653.7677,84000,0.621894403,0.066442594,0.12116543,0.20721751,0.3563576,0.24881685,0.10212522,0.051168609,0.006543763,0.001697909
Arizona State And Northern Arizona University And University Of Arizona,5,Selective public,1,4,AZ,4013,Maricopa,0.55421919,0.5721252,0.015779939,0.000633796,178288.5777,110700,0.718523952,0.049298476,0.091322884,0.14336164,0.21804741,0.49796966,0.32075703,0.18678544,0.040208273,0.003990957
Arizona Western College,9,Two-year (public and private not-for-profit),2,4,AZ,4027,Yuma,0.52242053,0.48828775,0.024497749,3.09E-05,51295.79964,38600,0.389898528,0.27479175,0.30698606,0.19870323,0.13221259,0.08730644,0.026010675,0.009386459,0.000995572,1.97E-06
Arkansas Northeastern College,9,Two-year (public and private not-for-profit),2,3,AR,5093,Mississippi,0.66520786,0.41611296,0.017940748,0,50379.58792,37100,0.376059053,0.30776921,0.26734823,0.20595385,0.1477963,0.071132414,0.01293985,0.008015804,0.002055441,0
Arkansas State University,5,Selective public,1,3,AR,5031,Craighead,0.57444632,0.60616404,0.023571217,0.000689878,74970.92898,60800,0.504332895,0.15929386,0.21508323,0.23135127,0.23489296,0.1593788,0.064402379,0.029029256,0.003950324,0.00016093
Arkansas State University - Beebe,9,Two-year (public and private not-for-profit),2,3,AR,5145,White,0.52119958,0.62818938,0.015625553,0.000519876,70249.69388,63100,0.507635843,0.13748597,0.19968632,0.27161276,0.26908267,0.12213245,0.042131435,0.016830433,0.002521695,4.61E-05
Arkansas Tech University,5,Selective public,1,3,AR,5115,Pope,0.49526814,0.64712572,0.021171754,0.001375295,76237.43459,63200,0.527529525,0.13475393,0.20664361,0.24561308,0.24438335,0.16860601,0.066808365,0.035590872,0.004111104,6.59E-05
Armstrong Atlantic State University,5,Selective public,1,3,GA,13051,Chatham,0.6419816,0.53932971,0.018230883,0,88486.62059,76000,0.582635835,0.097965747,0.15212697,0.22934861,0.28047365,0.24008495,0.093100287,0.029803272,0.004796087,2.34E-05
Art Center College Of Design,8,Nonselective four-year private not-for-profit,1,4,CA,6037,Los Angeles,0.38812786,0.34515694,0.04573692,0.003061187,140836.1458,84800,0.590279301,0.14908856,0.13026695,0.16527221,0.14875817,0.40661412,0.22992569,0.13101596,0.0190461,0.003573103
Art Institute Of Colorado ,10,Four-year for-profit,1,4,CO,8031,Denver,0.39528963,0.40110242,0.017068015,0.000958525,105818.0472,74200,0.569805633,0.12620264,0.19818161,0.18435763,0.22651473,0.26474324,0.13467038,0.070709988,0.009323028,0.002014236
Art Institute Of Fort Lauderdale ,10,Four-year for-profit,1,3,FL,12011,Broward,0.4275775,0.34093061,0.024526617,0.000497504,84857.70898,55400,0.495518881,0.19660527,0.23544908,0.19644086,0.17487334,0.19663151,0.10904836,0.055973586,0.010250747,0.001390453
Art Institute Of Houston ,10,Four-year for-profit,1,3,TX,48201,Harris,0.36325851,0.37300768,0.027079023,0,96153.09433,58000,0.512460686,0.1710009,0.23132083,0.18362622,0.19914369,0.21490842,0.11213512,0.055374648,0.009406599,0.002365386
Art Institute Of New York City ,11,Two-year for-profit,2,1,NY,36061,New York,0.43673471,0.2816143,0.026066655,0.002731719,64366.3401,45900,0.430609775,0.24446349,0.27279875,0.20058748,0.14373477,0.13841546,0.062168233,0.026244655,0.00424153,0.001279834
Art Institute Of Philadelphia ,10,Four-year for-profit,1,1,PA,42101,Philadelphia,0.41170636,0.33839619,0.015021494,0,90855.07113,68000,0.55022218,0.12081274,0.1879444,0.23388436,0.22407617,0.23328224,0.098026372,0.041935313,0.008052685,0.000558897
Art Institute Of Phoenix ,10,Four-year for-profit,1,3,KY,21111,Jefferson,0.35669783,0.43267283,0.008015433,0.001543895,93344.60826,73600,0.577761396,0.10486931,0.15116869,0.23352289,0.26568705,0.24475214,0.099798992,0.0455461,0.009322408,7.29E-06
Art Institute Of Pittsburgh ,10,Four-year for-profit,1,1,PA,42003,Allegheny,0.37394604,0.39854708,0.017201809,0.000455038,83031.6895,63800,0.518061306,0.14400798,0.20377597,0.23728739,0.24065527,0.17427336,0.072532639,0.035929788,0.004224047,0.000898899
Art Institute Of Portland ,10,Four-year for-profit,1,4,OR,41051,Multnomah,0.51477832,0.4375324,0.016963538,0,102883.9385,78400,0.603235867,0.0895807,0.12644061,0.22598422,0.28031215,0.2776823,0.13988417,0.085430928,0.014459277,0.000104809
Art Institute Of Seattle ,10,Four-year for-profit,1,4,WA,53033,King,0.45168939,0.42868152,0.019988999,0.000153261,117711.2161,78700,0.590799189,0.10604829,0.1473549,0.20803979,0.25033227,0.28822473,0.15630573,0.067235939,0.011557503,0.00095134
Art Institute Of York - Pennsylvania,10,Four-year for-profit,1,1,PA,42133,York,0.55154639,0.52949655,0.006846734,0.000206944,87538.40199,74500,0.585535569,0.052165158,0.15882942,0.26292184,0.34945276,0.17663085,0.08172027,0.019797837,0.005827655,0.00106414
Art Institutes International Minnesota ,10,Four-year for-profit,1,2,MN,27053,Hennepin,0.39495799,0.46412954,0.006379184,0,90425.84188,77200,0.583630322,0.082090713,0.18513568,0.23528259,0.27445707,0.22303404,0.12131163,0.050551452,0.007624624,1.56E-05
Asbury College,6,Selective private,1,3,KY,21113,Jessamine,0.56226414,0.80919522,0.007862226,0,123413.013,91700,0.670016666,0.034568813,0.10000917,0.20759381,0.29563022,0.36219794,0.17112055,0.086506188,0.016013799,0.001648586
Asheville Buncombe Technical Community College,9,Two-year (public and private not-for-profit),2,3,NC,37021,Buncombe,0.51433694,0.4787423,0.007575806,0.000474648,73968.66063,62200,0.510079474,0.13436407,0.2064983,0.26530689,0.24924479,0.14458595,0.057502199,0.023227878,0.003289616,3.65E-05
Ashland University,6,Selective private,1,2,OH,39005,Ashland,0.6069364,0.68920964,0.005637876,0.000679458,103633.1471,84600,0.641117819,0.048849329,0.11207296,0.22193652,0.3327865,0.28435469,0.12226255,0.059984148,0.011585776,8.56E-06
Asnuntuck Community College,9,Two-year (public and private not-for-profit),2,1,CT,9003,Hartford,0.55590063,0.40488219,0.006227168,8.56E-05,92144.84011,83300,0.618219169,0.062092416,0.1352624,0.2002809,0.33233815,0.27002603,0.080103628,0.027788699,0.001650136,0.00010699
Assumption College,6,Selective private,1,1,MA,25027,Worcester,0.60139859,0.67169541,0.008881609,0.00011499,148849.7908,120100,0.762152529,0.020878509,0.047466483,0.11110987,0.25913462,0.56141055,0.28621235,0.12357186,0.020419598,0.001933245
Athens Technical College,9,Two-year (public and private not-for-profit),2,3,GA,13059,Clarke,0.58055556,0.49714944,0.010042151,0.000575269,73254.09133,57200,0.483782776,0.1823277,0.21857916,0.23473977,0.21675253,0.14760095,0.065415777,0.028227892,0.003524217,0.000100564
Atlanta Metropolitan State College,7,Nonselective four-year public,1,3,GA,13121,Fulton,0.57746476,0.16023026,0.013703366,1.95E-05,52692.98153,38900,0.394383256,0.25633019,0.2941758,0.21308851,0.14442447,0.091980964,0.021583313,0.008334125,0.002476552,0
Atlanta Technical College,9,Two-year (public and private not-for-profit),2,3,GA,13121,Fulton,0.55787784,0.12685724,0.014392436,7.83E-05,41963.90234,32000,0.311169575,0.35970023,0.32100338,0.18627292,0.093206197,0.039817292,0.01099903,0.004405436,0.000590786,0.0001292
Atlantic Cape Community College,9,Two-year (public and private not-for-profit),2,1,NJ,34001,Atlantic,0.54571325,0.41358751,0.014002528,0,72492.31194,60000,0.509066352,0.14717254,0.23104146,0.21472572,0.23407361,0.17298672,0.064665861,0.019158566,0.002494485,0
Auburn University,5,Selective public,1,3,AL,1081,Lee,0.50273508,0.6894269,0.010658238,0.000882834,194404.8583,123200,0.759629444,0.033321194,0.064371884,0.11819929,0.21223828,0.57186937,0.36599645,0.21414059,0.048533924,0.003830132
Auburn University Montgomery,5,Selective public,1,3,AL,1101,Montgomery,0.61197007,0.50983292,0.024405176,0.000993117,84780.36575,73600,0.554674188,0.13526307,0.16409531,0.19783634,0.2816475,0.22115785,0.078454547,0.034194719,0.004119791,0.000458471
Augsburg College,6,Selective private,1,2,MN,27053,Hennepin,0.53063345,0.60241026,0.012930907,0.001061026,153407.3376,99100,0.696099743,0.040241987,0.083344162,0.18009207,0.29011959,0.40620214,0.2245352,0.13233477,0.04157313,0.002251637
Augusta Technical College,9,Two-year (public and private not-for-profit),2,3,GA,13245,Richmond,0.6004343,0.35738295,0.007909439,3.95E-05,58063.94436,46700,0.425581901,0.26411942,0.23573224,0.21553653,0.19359024,0.091021627,0.032252297,0.009043299,0.001260062,0.000106599
Augustana College of Rock Island - IL,4,Highly selective private,1,2,IL,17161,Rock Island,0.57327586,0.70826322,0.009998585,0.000526114,148707.0913,114300,0.754517896,0.021307478,0.054624543,0.1313865,0.27298123,0.51970029,0.29499987,0.13867149,0.025780028,0.001265061
Augustana College of Sioux Falls - SD,6,Selective private,1,2,SD,46099,Minnehaha,0.64115644,0.75649744,0.004444805,1.24E-05,119812.8256,93200,0.677949157,0.027987961,0.10647672,0.20369671,0.30488238,0.35695621,0.19177759,0.10625104,0.022330653,0.000478989
Aurora University,6,Selective private,1,2,IL,17089,Kane,0.56552964,0.55574626,0.01104902,6.82E-06,99982.84526,87100,0.622092702,0.073590219,0.14753531,0.16727966,0.31143209,0.30016261,0.11686678,0.043795265,0.010353565,4.73E-05
Austin College,4,Highly selective private,1,3,TX,48181,Grayson,0.57683742,0.61685568,0.022787016,0.001100153,152914.6209,109300,0.710047733,0.057600904,0.086529933,0.16222641,0.22647347,0.46716928,0.30364689,0.17718829,0.033268224,0.003847683
Austin Community College,9,Two-year (public and private not-for-profit),2,3,TX,48453,Travis,0.51364821,0.44611233,0.015076135,0.000155263,109773.504,77100,0.589719427,0.10691411,0.16829526,0.19980496,0.23635086,0.28863478,0.14914405,0.070040353,0.012661423,0.001669092
Austin Peay State University,5,Selective public,1,3,TN,47125,Montgomery,0.57209885,0.56917989,0.013754671,0.000633229,83845.63543,66600,0.528913904,0.11998721,0.19676976,0.25377014,0.27990785,0.149565,0.049760096,0.019214438,0.002674503,0.000310971
Automotive Training Center,11,Two-year for-profit,2,1,PA,42029,Chester,0.034642033,0.4211888,0.013717722,0.000596089,84929.57892,74600,0.580209138,0.087445766,0.16448143,0.21618362,0.29837099,0.2335182,0.096575506,0.029222453,0.001059842,0.000260435
Aveda Institute,12,Less than two-year schools of any type,3,2,MN,27053,Hennepin,0.94262296,0.5279699,0.00631035,3.37E-05,99756.54846,83400,0.620733431,0.085245445,0.13009679,0.18964736,0.29160571,0.3034046,0.1368569,0.064603969,0.010840688,0
Aveda Institute Covington,12,Less than two-year schools of any type,3,3,LA,22103,St Tammany,0.95081967,0.51924878,0.000645082,5.53E-05,84806.25781,63000,0.539925655,0.1494955,0.20765233,0.2153046,0.16921966,0.25832793,0.15062353,0.054369777,0.001068516,0.0001292
Averett University,6,Selective private,1,3,VA,51590,Danville City,0.50395781,0.57709104,0.005811841,4.47E-05,86056.16,65400,0.544069994,0.081789628,0.22231771,0.24828915,0.23627436,0.21132918,0.075743623,0.027714718,0.007408022,0.000183928
Avila University,6,Selective private,1,2,MO,29095,Jackson,0.63926941,0.61183172,0.005256138,0.00012672,138463.9635,88200,0.635059019,0.065208554,0.12505151,0.19988945,0.30212253,0.30772793,0.12986527,0.07180237,0.016284375,0.004096575
Azusa Pacific University,6,Selective private,1,4,CA,6037,Los Angeles,0.6244204,0.70769596,0.015201175,4.74E-05,172835.4881,103700,0.706601575,0.049204983,0.089086533,0.16501208,0.22265151,0.47404495,0.29851791,0.16166498,0.03111719,0.003051529
Babson College,4,Highly selective private,1,1,MA,25021,Norfolk,0.37751856,0.60191709,0.027997315,0.004274052,292542.2134,140500,0.776467322,0.041080918,0.069346882,0.095390707,0.1734544,0.62072706,0.46095437,0.34550944,0.11375799,0.012596603
Bainbridge State College,9,Two-year (public and private not-for-profit),2,3,GA,13087,Decatur,0.58223289,0.40566996,0.016029309,1.39E-06,49669.58983,35300,0.369110243,0.32756332,0.27436528,0.15628642,0.17214383,0.069641277,0.01330815,0.005550205,0,0
Baker College,8,Nonselective four-year private not-for-profit,1,2,MI,26049,Genesee,0.66284072,0.4585872,0.008991263,0.000236685,70673.76008,61400,0.495290803,0.16952464,0.20383364,0.23135038,0.25376275,0.14152855,0.04413566,0.014042947,0.00196829,0.000244128
Baker University,6,Selective private,1,2,KS,20045,Douglas,0.54115587,0.65861338,0.01278977,0,150457.8955,96200,0.681067719,0.034607053,0.10425127,0.193275,0.28342211,0.38444459,0.19528192,0.081486762,0.010814402,0.003491267
Baldwin Wallace University,6,Selective private,1,2,OH,39035,Cuyahoga,0.5985437,0.6688863,0.011461781,1.70E-05,105043.525,89200,0.656309962,0.037171356,0.099473953,0.20642917,0.34359634,0.31332919,0.12813491,0.062831059,0.008870175,6.76E-05
Ball State University,5,Selective public,1,2,IN,18035,Delaware,0.55561137,0.64420259,0.007742561,0.000390375,111459.0097,94900,0.6769271,0.045373358,0.093577623,0.18002766,0.31046122,0.37056011,0.1600536,0.063857675,0.009251452,0.000598805
Baltimore School Of Massage,12,Less than two-year schools of any type,3,3,MD,24003,Anne Arundel,0.86301368,0.43747342,0.000529964,4.04E-05,70166.98958,70600,0.572506964,0.085807435,0.18123537,0.25062642,0.30083659,0.18149416,0.049282964,0.026317587,0.00233717,0.000341706
Baptist Bible College,8,Nonselective four-year private not-for-profit,1,2,MO,29077,Greene,0.50200802,0.8267383,0.024323437,6.68E-05,72203.76823,67700,0.487469047,0.11958838,0.20061697,0.27920136,0.25634891,0.14424445,0.024374256,0.024374256,0.003796455,0.000222724
Baptist Bible College Of Pennsylvania,8,Nonselective four-year private not-for-profit,1,1,PA,42069,Lackawanna,0.580531,0.79829925,0.005105132,0,87674.39154,67500,0.567324802,0.0615445,0.17483094,0.33367464,0.26281899,0.16713096,0.078053504,0.026682122,0.006840675,7.17E-05
Bard College,4,Highly selective private,1,1,NY,36027,Dutchess,0.5607143,0.36819476,0.015318513,0,340615.728,117900,0.721591618,0.064892881,0.093774498,0.13329877,0.17579781,0.5322361,0.39327541,0.26562557,0.075858153,0.017794369
Barnard College,2,Other elite schools (public and private),1,1,NY,36061,New York,0.99564135,0.5202992,0.034545787,0.004341159,310543.0638,148000,0.763227488,0.065402597,0.08757998,0.092271917,0.12810346,0.62664211,0.49403974,0.37600601,0.12618665,0.016250985
Barry University,6,Selective private,1,3,FL,12086,,0.66625917,0.42077962,0.035723217,0.001279336,116412.1855,69500,0.555993412,0.15535042,0.20304297,0.16312259,0.19752297,0.2809611,0.16681445,0.093466327,0.028029114,0.002437476
Barstow Community College,9,Two-year (public and private not-for-profit),2,4,CA,6071,San Bernardino,0.45327756,0.4585042,0.034888964,0,62711.74123,58000,0.470688752,0.18924633,0.21273528,0.25815755,0.23362489,0.10623594,0.031732246,0.004419426,0.000832328,0.000167836
Barton College,6,Selective private,1,3,NC,37195,Wilson,0.66486484,0.65991211,0.005411822,7.74E-05,99189.09635,87500,0.644657254,0.074892856,0.14685634,0.1814004,0.27825874,0.31859165,0.17298929,0.079460077,0.012907856,0.000212297
Barton County Community College,9,Two-year (public and private not-for-profit),2,2,KS,20009,Barton,0.36461347,0.52174824,0.026786702,0,59945.31675,52600,0.449971317,0.18634379,0.24428117,0.27458453,0.21835339,0.076437101,0.022273963,0.009534715,0.000928412,2.77E-05
Bates College,2,Other elite schools (public and private),1,1,ME,23001,Androscoggin,0.50351286,0.58164424,0.007581061,0.000867327,330710.9493,176900,0.836843799,0.018359207,0.047235712,0.07726942,0.16423874,0.6928969,0.57122076,0.43707693,0.13819,0.011415887
Bates Technical College,9,Two-year (public and private not-for-profit),2,4,WA,53053,Pierce,0.38678414,0.44380075,0.017563809,0,74478.24721,65000,0.530376394,0.11937842,0.18868415,0.27706867,0.25594157,0.15892726,0.04646657,0.017028369,0.002161809,1.36E-05
Bay De Noc Community College,9,Two-year (public and private not-for-profit),2,2,MI,26041,Delta,0.53595656,0.55363101,0.006819854,6.08E-05,73573.13021,64800,0.513802906,0.14342722,0.17121077,0.28405613,0.2962563,0.10504974,0.028453132,0.006041221,0.002956737,0.0001292
Bay Path College,6,Selective private,1,1,MA,25013,Hampden,1,0.57856828,0.017043661,2.30E-05,93687.7548,84100,0.607519563,0.059767347,0.15337735,0.21748722,0.3082934,0.2610746,0.079804845,0.027711151,0.000157989,5.49E-05
Bay State College,10,Four-year for-profit,1,1,MA,25025,Suffolk,0.66666669,0.29726502,0.016086888,4.14E-05,72966.30729,55000,0.487057686,0.20492889,0.21655257,0.2111169,0.22064322,0.14675841,0.033939503,0.033292588,0.001949711,0.000167042
Baylor University,4,Highly selective private,1,3,TX,48309,McLennan,0.58958775,0.6917218,0.013736501,0.001318486,215777.8602,132400,0.764612909,0.040205304,0.072580665,0.1105746,0.18152407,0.59511542,0.43043634,0.27677065,0.059036355,0.004239802
Beaufort County Community College,9,Two-year (public and private not-for-profit),2,3,NC,37013,Beaufort,0.57586837,0.41642657,0.010546853,1.31E-05,54211.49916,46400,0.40937749,0.25968102,0.23882288,0.24467394,0.17269658,0.084125534,0.021444457,0.010910335,0.001072174,6.32E-06
Becker College,6,Selective private,1,1,MA,25027,Worcester,0.75313807,0.51339358,0.008957573,1.15E-05,87529.21964,75500,0.57626758,0.093802117,0.14924544,0.23342985,0.28422585,0.23929676,0.090130039,0.037843436,0.004119298,8.81E-05
Bel - Rea Institute Of Animal Technology,11,Two-year for-profit,2,4,CO,8005,Arapahoe,0.92990655,0.5211153,0,0,97078.15885,81700,0.588072379,0.10138923,0.14717148,0.19945383,0.25955698,0.29242846,0.12009595,0.047200754,0.000505221,0.000267007
Belhaven University,6,Selective private,1,3,MS,28049,Hinds,0.59498209,0.6617381,0.031970855,0.003162562,92393.3151,77300,0.588491817,0.12699437,0.15051255,0.19013491,0.25063062,0.28172767,0.14078277,0.047421843,0.007488789,0.000315142
Bellarmine University,6,Selective private,1,3,KY,21111,Jefferson,0.65251571,0.68461752,0.009435893,0.00144719,135061.6649,98200,0.696477068,0.030137699,0.099050149,0.16030817,0.30371743,0.40678659,0.18948354,0.10376317,0.022551276,0.002126122
Bellevue College,7,Nonselective four-year public,1,4,WA,53033,King,0.46969968,0.48081589,0.014904987,0.000383362,143430.1454,97000,0.673315271,0.064948902,0.10525785,0.15919451,0.26506791,0.40553087,0.21018377,0.1012628,0.020128325,0.001986496
Bellevue University,6,Selective private,1,2,NE,31153,Sarpy,0.46080759,0.64363998,0.009894824,3.89E-05,87138.01668,73100,0.573585148,0.078210875,0.16353154,0.24422197,0.30538797,0.20864762,0.064431906,0.030651638,0.005030308,0.000134061
Bellingham Technical College,9,Two-year (public and private not-for-profit),2,4,WA,53073,Whatcom,0.47021276,0.5152818,0.011806679,0,79678.37289,63900,0.525384046,0.12366497,0.19517104,0.26164857,0.27931419,0.14020118,0.053335313,0.021297161,0.004913744,3.20E-05
Belmont Abbey College,6,Selective private,1,3,NC,37071,Gaston,0.52109182,0.59507048,0.014704109,0,124431.8341,97900,0.675667532,0.049032427,0.1176239,0.17148899,0.25387913,0.40797555,0.19242793,0.11140217,0.019279256,8.97E-06
Belmont College,9,Two-year (public and private not-for-profit),2,2,OH,39013,Belmont,0.48558247,0.54019785,0.015891062,2.51E-05,58512.50718,53000,0.444483565,0.1811984,0.25555131,0.27200943,0.2297046,0.061536305,0.021620315,0.006938241,0.000556106,9.17E-05
Belmont University,6,Selective private,1,3,TN,47037,Davidson,0.59873062,0.65178537,0.005781155,2.71E-05,187916.1581,116700,0.744219286,0.029190464,0.076907694,0.13428703,0.22944981,0.53016496,0.34593326,0.19320682,0.042939048,0.006380937
Beloit College,4,Highly selective private,1,2,WI,55105,Rock,0.59974092,0.47994474,0.009019055,0.001435424,178407.6344,109800,0.718619927,0.037870955,0.080854058,0.13371772,0.25324389,0.4943133,0.28105345,0.15779327,0.027448835,0.00324785
Benedictine College,6,Selective private,1,2,KS,20005,Atchison,0.52597404,0.65511101,0.010532828,0.000153805,104279.5052,90200,0.659156223,0.057753913,0.090713404,0.17383659,0.32969344,0.34800273,0.14910698,0.054995086,0.006691018,0.000235148
Benedictine University,6,Selective private,1,2,IL,17043,Dupage,0.57174885,0.62427807,0.01114781,0.001550542,130073.1927,104500,0.708380024,0.029397815,0.08072646,0.16113032,0.28248596,0.4462595,0.2207064,0.1067653,0.025321854,0.0001292
Bennett College,6,Selective private,1,3,NC,37081,Guilford,0.98941797,0.22881895,0.03884872,0,59536.14466,50000,0.47267298,0.18299079,0.26519382,0.22911239,0.19127971,0.13142341,0.063627258,0.01232071,0.003055773,0.000154345
Bennington College,4,Highly selective private,1,1,VT,50003,Bennington,0.69786096,0.38929892,0.009265633,0,167420.2528,99200,0.666845804,0.091063254,0.12222127,0.16967249,0.18352224,0.43352085,0.26255801,0.19368988,0.04999315,0.005215395
Bentley University,4,Highly selective private,1,1,MA,25017,Middlesex,0.42668799,0.6170792,0.029418632,0.002390707,188624.286,119600,0.738542815,0.048559688,0.073758304,0.13549805,0.1938976,0.54828644,0.35235652,0.19987799,0.046308782,0.007289175
Bergen Community College,9,Two-year (public and private not-for-profit),2,1,NJ,34003,Bergen,0.46314633,0.40591589,0.03056114,0.000382706,97734.94202,72000,0.564651543,0.135021,0.17914146,0.19349115,0.2161267,0.27621973,0.13320151,0.050190412,0.006721312,0.001297986
Berkeley College of New York - NY,10,Four-year for-profit,1,1,NY,36061,New York,0.6783154,0.32951048,0.057736836,1.55E-05,61200.7928,42500,0.414411509,0.27447081,0.26147249,0.20392153,0.14668693,0.11344807,0.043763902,0.021811465,0.00531213,0.000106666
Berkeley College of Woodland Park - NJ,10,Four-year for-profit,1,1,NJ,34031,Passaic,0.70500374,0.40715447,0.040182311,4.41E-05,70132.76352,51200,0.473602452,0.20836933,0.23550016,0.21620926,0.19026476,0.14965653,0.064329803,0.024266547,0.003659936,0.000112686
Berklee College Of Music,8,Nonselective four-year private not-for-profit,1,1,MA,25025,Suffolk,0.22272144,0.41283527,0.007186,0,214504.3778,119300,0.746167784,0.03667951,0.071074717,0.14784858,0.20359021,0.54080695,0.3699677,0.23357026,0.053947117,0.007676851
Berkshire Community College,9,Two-year (public and private not-for-profit),2,1,MA,25003,Berkshire,0.53679246,0.44859996,0.013643686,0,88979.13946,66000,0.532934217,0.11552469,0.19932398,0.24099447,0.26662785,0.17752902,0.07698945,0.041900624,0.007038217,0.002747151
Berry College,6,Selective private,1,3,GA,13115,Floyd,0.64803803,0.74294841,0.012153942,1.73E-05,133228.0208,103100,0.705185334,0.039542001,0.071102396,0.15030722,0.28785124,0.45119724,0.24382892,0.13433564,0.015749833,0.001096506
Beth Medrash Govoha Of America,8,Nonselective four-year private not-for-profit,1,1,NJ,34029,Ocean,0.00982801,0.86619222,0.024971057,0.002462151,185551.8812,91100,0.618669051,0.18245932,0.096590377,0.13637902,0.18239054,0.40218073,0.2591036,0.17868142,0.059619229,0.007373845
Bethany College of Bethany - WV,6,Selective private,1,3,WV,54009,Brooke,0.53571427,0.67911488,0.020469109,7.43E-05,84672.02865,77600,0.576631784,0.074241281,0.12690815,0.24968451,0.32575864,0.22340754,0.084819876,0.020814667,0.001976734,0.000170839
Bethany College of Lindsborg - KS,6,Selective private,1,2,KS,20113,McPherson,0.45641026,0.66305864,0.011337067,0,88647.19836,73700,0.589027261,0.061025929,0.171433,0.26085514,0.28421336,0.22247249,0.10294721,0.051611453,0.004067662,0.000290244
Bethany Lutheran College,8,Nonselective four-year private not-for-profit,1,2,MN,27013,Blue Earth,0.5099715,0.71538967,0.008015445,4.64E-06,89334.94182,76000,0.582635854,0.069232777,0.13762766,0.288894,0.26969922,0.23454633,0.050678886,0.035539657,0.001150945,0.000358467
Bethel College,6,Selective private,1,2,IN,18141,St Joseph,0.62484157,0.70642859,0.006251248,0.001247788,106638.6624,81300,0.615582554,0.055091243,0.14032079,0.23485479,0.31393597,0.25579718,0.10684945,0.054105595,0.019613702,0.00130674
Bethel University of McKenzie - TN,6,Selective private,1,3,TN,47017,Carroll,0.53539824,0.64974946,0.016350059,5.37E-05,67322.70833,54700,0.465828091,0.19760934,0.22052024,0.22514582,0.22328325,0.13344137,0.027589563,0.012637184,0.006428216,0.0001292
Bethel University of Saint Paul - MN,6,Selective private,1,2,MN,27123,Ramsey,0.61640799,0.79165053,0.004979697,0,152973.1177,100000,0.711399794,0.030818749,0.075517684,0.17200339,0.29356289,0.42809734,0.24404958,0.14736313,0.025483387,0.001804482
Bethune Cookman University,6,Selective private,1,3,FL,12127,Volusia,0.55299538,0.21432418,0.02163641,7.08E-05,55685.36719,43000,0.411801547,0.23405242,0.30712131,0.21520023,0.15905504,0.084571004,0.029435439,0.010411766,0.000558409,0.000288438
Bevill State Community College,9,Two-year (public and private not-for-profit),2,3,AL,1127,Walker,0.55827886,0.55260444,0.018274268,0.000422259,58937.88534,50100,0.445799761,0.21799783,0.22187458,0.25655973,0.2110198,0.092548169,0.029591015,0.011000494,0.001099023,8.46E-05
Big Bend Community College,9,Two-year (public and private not-for-profit),2,4,WA,53025,Grant,0.48653668,0.58306009,0.016156642,0,73206.44811,64400,0.515685649,0.13131535,0.19513029,0.26995945,0.25468522,0.14890969,0.065980494,0.035265792,0.001941374,8.38E-06
Binghamton University,3,Highly selective public,1,1,NY,36007,Broome,0.54666668,0.55965865,0.050876305,0.004542319,117250.8662,104400,0.670249654,0.094252944,0.11719069,0.12297519,0.20344435,0.46213686,0.2639789,0.097712338,0.006443537,0.000203399
Biola University,6,Selective private,1,4,CA,6037,Los Angeles,0.63925236,0.74655741,0.017981296,5.85E-06,159678.221,95300,0.68247524,0.06932281,0.095133349,0.17216668,0.23579612,0.4275811,0.2663157,0.15621874,0.03170165,0.003150955
Birmingham Southern College,6,Selective private,1,3,AL,1073,Jefferson,0.57390302,0.6646319,0.010045541,0.001256738,232673.8212,137900,0.777102825,0.036849562,0.051915638,0.11123131,0.18059084,0.61941266,0.46534923,0.30836263,0.09232422,0.005901411
Bishop State Community College,9,Two-year (public and private not-for-profit),2,3,AL,1097,Mobile,0.62077922,0.24280488,0.022677038,3.15E-05,45969.41988,31400,0.325148651,0.4087936,0.25441545,0.15744595,0.11975794,0.059586972,0.020113053,0.007609371,0.00059725,0.000114028
Bismarck State College,7,Nonselective four-year public,1,2,ND,38015,Burleigh,0.46561968,0.61560637,0.025194777,0.000835228,75442.0624,68300,0.532407601,0.10096104,0.19347256,0.25424245,0.31216872,0.13915527,0.048556376,0.022322137,0.003627747,7.49E-05
Black Hawk College,9,Two-year (public and private not-for-profit),2,2,IL,17161,Rock Island,0.53896815,0.55514187,0.009117444,0,78878.48804,74000,0.562316978,0.10202144,0.1555862,0.23834854,0.32514715,0.17889673,0.056024589,0.018598547,0.001751418,2.68E-05
Black River Technical College,9,Two-year (public and private not-for-profit),2,3,AR,5121,Randolph,0.50980395,0.60494626,0.015093985,7.26E-05,53706.24564,41100,0.392300315,0.25216055,0.30281767,0.2407099,0.15727182,0.04704012,0.021888608,0.010343979,0.001997053,0.000127866
Blackburn University,6,Selective private,1,2,IL,17117,Macoupin,0.54090911,0.6063652,0.012327814,6.66E-05,74065.26563,65800,0.541153649,0.10921099,0.15281013,0.27107164,0.31295052,0.15395674,0.067536399,0.028760746,0.004770575,0.000376826
Blackhawk Technical College,9,Two-year (public and private not-for-profit),2,2,WI,55105,Rock,0.58538461,0.52704316,0.007581799,0,77468.63986,73400,0.571384581,0.089690968,0.14725779,0.25822973,0.3366639,0.16815765,0.041751545,0.014779165,0.001429483,0
Bladen Community College,9,Two-year (public and private not-for-profit),2,3,NC,37017,Bladen,0.61442786,0.32525873,0.017499207,2.22E-05,46182.47516,36100,0.365469442,0.31386399,0.27033222,0.18793656,0.18026845,0.047598764,0.01727866,0.003954349,0.002233081,5.04E-05
Blinn College,9,Two-year (public and private not-for-profit),2,3,TX,48477,Washington,0.46608695,0.56045651,0.015617048,0.000592964,109053.6046,83400,0.612966081,0.10325624,0.14475623,0.18479444,0.24854617,0.31864685,0.16690569,0.080096029,0.010502893,0.000768434
Bloomfield College,6,Selective private,1,1,NJ,34013,Essex,0.61233479,0.25008073,0.060373791,0.001476519,52584.27924,40800,0.38526128,0.26851264,0.30728924,0.21232587,0.12443389,0.08743836,0.024900295,0.008496568,0.000175137,9.85E-05
Bloomsburg University Of Pennsylvania,5,Selective public,1,1,PA,42037,Columbia,0.6061421,0.65883839,0.015696971,0.000244147,101333.0935,89800,0.651979705,0.056313001,0.10426985,0.19927867,0.31310701,0.32703152,0.1386397,0.044878766,0.00388072,0.000457374
Blue Mountain Community College,9,Two-year (public and private not-for-profit),2,4,OR,41059,Umatilla,0.58347386,0.56381863,0.013405612,4.43E-05,67935.07813,61400,0.502286206,0.11905647,0.23350856,0.2593506,0.2908524,0.097231932,0.031208195,0.0077769,0.00104275,0.0001292
Blue Ridge Community College of Flat Rock - NC,9,Two-year (public and private not-for-profit),2,3,NC,37089,Henderson,0.54312116,0.52128923,0.011855221,0,69763.49964,60800,0.498399968,0.12863873,0.19622417,0.31702027,0.24787146,0.11024544,0.037874088,0.016393024,0.005254442,0.001010581
Blue Ridge Community College of Weyers Cave - VA,9,Two-year (public and private not-for-profit),2,3,VA,51015,Augusta,0.53863382,0.53797597,0.014160412,1.61E-05,84341.15471,71600,0.563164684,0.10346772,0.16570133,0.25103813,0.27466518,0.20512776,0.087653786,0.029277217,0.002726423,4.26E-05
Bluefield State College,5,Selective public,1,3,WV,54055,Mercer,0.5424493,0.54182345,0.011984185,0.000752553,60400.96442,54700,0.452383278,0.18389632,0.22701174,0.28429633,0.21955536,0.085240379,0.027396115,0.007468475,0.001177135,0
Bluffton University,6,Selective private,1,2,OH,39003,Allen,0.5728395,0.83600038,0.001501256,2.82E-05,90094.58333,77100,0.622848968,0.029008986,0.13370867,0.24900319,0.39579302,0.19248623,0.074106112,0.013452594,0.00370319,0.000132954
Boise State University,5,Selective public,1,4,ID,16001,Ada,0.52977616,0.62344468,0.012776014,0.000428576,94480.98082,77100,0.597179421,0.074792609,0.1560737,0.23701686,0.2801418,0.25197503,0.11098078,0.048368029,0.006251611,0.000408796
Boricua College,6,Selective private,1,1,NY,36061,New York,0.69729728,0.20675738,0.03635373,0.000131972,37878.39323,28900,0.275593152,0.46651521,0.27064565,0.16616195,0.06438756,0.03228962,0.006496332,0.005554065,0.001251156,0.000160329
Bossier Parish Community College,9,Two-year (public and private not-for-profit),2,3,LA,22015,Bossier,0.56666666,0.46537316,0.013371448,3.34E-05,75891.86945,63000,0.508346668,0.17159607,0.19246514,0.23104414,0.24320024,0.16169442,0.059039388,0.023594545,0.002932352,0.000454937
Boston College,2,Other elite schools (public and private),1,1,MA,25017,Middlesex,0.51660973,0.60101098,0.016028848,0.002013126,394426.3457,168400,0.814904481,0.028515624,0.05650644,0.083928712,0.13771647,0.69333279,0.55180222,0.41274211,0.13808219,0.018053349
Boston University,4,Highly selective private,1,1,MA,25025,Suffolk,0.62199748,0.53076339,0.020175174,0.00154257,262524.4335,126800,0.757368923,0.040002327,0.075798891,0.11920387,0.19311379,0.57188106,0.41226423,0.27476227,0.0757434,0.011484462
Bowdoin College,2,Other elite schools (public and private),1,1,ME,23005,Cumberland,0.51275915,0.59304941,0.010947428,0.000877629,410517.6497,177600,0.814077114,0.026358966,0.051449575,0.093983881,0.1360158,0.69219184,0.57062936,0.43701988,0.1536718,0.017733283
Bowling Green State University,5,Selective public,1,2,OH,39173,Wood,0.5663774,0.65048474,0.007336726,0.000360287,114765.6495,92800,0.677596001,0.036034856,0.087783284,0.194405,0.33779129,0.34398556,0.16503243,0.077796891,0.010810151,0.000285923
Bradford School of Columbus - OH,11,Two-year for-profit,2,2,OH,39049,Franklin,0.7011494,0.36072838,0.002539262,5.87E-05,60225.6276,54100,0.419498255,0.2005382,0.24887443,0.28256977,0.21456657,0.05345092,0.035021476,0.013572383,0.00125866,0.000333049
Bradford School of Pittsburgh - PA,11,Two-year for-profit,2,1,PA,42003,Allegheny,0.78260869,0.45914394,0.006459286,0.000135017,77006.54688,69400,0.556916813,0.11279654,0.20686391,0.20591797,0.32226443,0.15215717,0.079550534,0.015610851,0.002845706,0.002203511
Bradley University,6,Selective private,1,2,IL,17143,Peoria,0.55595547,0.66091794,0.011705709,1.77E-05,158446.4213,112900,0.735037072,0.029080324,0.0636639,0.13334715,0.25870097,0.51520765,0.29319197,0.16100568,0.026176514,0.002895841
Brandeis University,2,Other elite schools (public and private),1,1,MA,25017,Middlesex,0.57296038,0.58348888,0.020382755,0.003786037,299664.4729,142700,0.773560667,0.040012892,0.069371127,0.11065703,0.16196483,0.61799419,0.47606823,0.31855661,0.086154282,0.013124366
Brazosport College,7,Nonselective four-year public,1,3,TX,48039,Brazoria,0.47708449,0.4813385,0.039057486,0.000514438,80082.90405,74000,0.558927929,0.13677046,0.1523385,0.20497894,0.27825502,0.22765717,0.064968206,0.020741364,0.000820029,3.42E-05
Brenau University,6,Selective private,1,3,GA,13139,Hall,0.98255813,0.59162736,0.020909321,1.55E-05,126124.5117,87000,0.649340884,0.067651331,0.13918421,0.16989876,0.27214119,0.3511245,0.21592158,0.10690178,0.0322752,7.54E-05
Brevard College,8,Nonselective four-year private not-for-profit,1,3,NC,37175,Transylvania,0.464986,0.48098892,0.006503565,2.84E-05,193567.7092,93900,0.67707538,0.07730525,0.10750085,0.17759588,0.23993695,0.397661,0.25700113,0.16822748,0.029310727,0.00558637
Brewton Parker College,6,Selective private,1,3,GA,13209,Montgomery,0.49494949,0.57968891,0.007996787,0,70745.01563,63400,0.520744065,0.11572461,0.21090163,0.27718282,0.24043988,0.15575108,0.026396127,0.014871241,0.002981766,0.000281758
Briar Cliff University,6,Selective private,1,2,IA,19193,Woodbury,0.55470252,0.69854677,0.009854207,0,88356.02157,74400,0.571063485,0.094580285,0.15001136,0.23091045,0.31287369,0.21162431,0.077076375,0.038899798,0.008014624,0.000493385
Briarcliffe College,10,Four-year for-profit,1,1,NY,36059,Nassau,0.43687063,0.40612948,0.029401544,7.97E-05,82617.98061,64800,0.541139423,0.15408872,0.19347343,0.20718318,0.20928901,0.23596579,0.093526684,0.032165807,0.005730792,1.45E-05
Bridgerland Applied Technology College,9,Two-year (public and private not-for-profit),2,4,UT,49005,Cache,0.55026454,0.81530941,0.007792384,0.000107722,78726.0026,70000,0.558340033,0.11838694,0.15528964,0.22753063,0.33960021,0.15919253,0.041214883,0.019356506,0.002430339,0.000194613
Bridgewater College,6,Selective private,1,3,VA,51165,Rockingham,0.55651236,0.65617722,0.009787613,0.001094712,110865.433,91300,0.653705812,0.059629936,0.11056304,0.18950529,0.3201901,0.32011157,0.1518819,0.066903479,0.018466376,0.000958891
Bridgewater State University,5,Selective public,1,1,MA,25023,Plymouth,0.62080634,0.57914776,0.013210518,0.000293044,107859.3629,93300,0.669295114,0.047576465,0.097836517,0.18089011,0.31913334,0.35456359,0.1336741,0.037825383,0.002930312,0.001494068
Brigham Young University,6,Selective private,1,4,UT,49049,Utah,0.54861033,0.84456772,0.006505394,0.000453993,197843.0225,119600,0.76801625,0.022001563,0.051299132,0.12214875,0.24779634,0.55675429,0.34498632,0.20228039,0.047407553,0.004272196
Brigham Young University - Hawaii,6,Selective private,1,4,HI,15003,Honolulu,0.57452577,0.77676529,0.012499791,0.004808056,120099.5234,93200,0.67796433,0.051140193,0.06659691,0.17769057,0.33683997,0.36773229,0.18119887,0.085811712,0.010180928,0.000179122
Brigham Young University-Idaho,8,Nonselective four-year private not-for-profit,1,4,ID,16065,Madison,0.57198519,0.84689492,0.007533871,0.000291178,124229.6447,92600,0.676570975,0.041382078,0.092546269,0.19896984,0.31195301,0.35514864,0.18206976,0.09328375,0.014391664,0.001462801
Bristol Community College,9,Two-year (public and private not-for-profit),2,1,MA,25005,Bristol,0.57198793,0.43695858,0.017887173,0,76552.47119,69500,0.54103775,0.1180862,0.16992736,0.25691438,0.29861557,0.15645647,0.045788005,0.015234883,0.001511793,0.000360497
Brookdale Community College,9,Two-year (public and private not-for-profit),2,1,NJ,34025,Monmouth,0.47508511,0.44176909,0.014464539,0.000159003,112528.4516,93200,0.646471126,0.086514518,0.12054713,0.16696948,0.2482968,0.37767187,0.19252697,0.078913532,0.010508318,0.000935314
Brookline College,10,Four-year for-profit,1,4,AZ,4013,Maricopa,0.82119203,0.26677179,0.013969421,0,40820.67815,30000,0.315369553,0.36924669,0.31703559,0.1850089,0.095973067,0.032735743,0.014107795,0.005058088,0.000604318,9.88E-05
Brooks Institute,10,Four-year for-profit,1,4,CA,6083,Santa Barbara,0.47634912,0.41335401,0.010514108,0,161301.604,95300,0.658332428,0.06575641,0.12351529,0.19318748,0.18805373,0.42948711,0.25530562,0.17710856,0.050574735,0.004934167
Broome Community College,9,Two-year (public and private not-for-profit),2,1,NY,36007,Broome,0.51482153,0.48905194,0.01145984,4.75E-05,76614.34586,65700,0.532355332,0.12483184,0.1931456,0.25658801,0.2532838,0.17215082,0.061060082,0.019373661,0.002259302,0.000324855
Broward College,7,Nonselective four-year public,1,3,FL,12011,Broward,0.55082887,0.36353582,0.027686182,0.000315188,77850.61707,54900,0.487403483,0.19551703,0.22973713,0.20392686,0.18635547,0.18446353,0.081835873,0.034329955,0.005964406,0.000981086
Brown College,10,Four-year for-profit,1,2,MN,27037,Dakota,0.3162339,0.43573764,0.013636205,6.69E-05,91665.34103,67800,0.542226876,0.11487776,0.17341658,0.24672174,0.26495984,0.20002413,0.091119103,0.031413998,0.007157833,0.000433951
Brown University,1,Ivy Plus,1,1,RI,44007,Providence,0.5372718,0.53014421,0.015486852,0.002026412,542890.8085,197000,0.835831058,0.029180808,0.042766131,0.070927814,0.12094032,0.73618495,0.62202811,0.4801276,0.18865089,0.031548195
Brunswick Community College,9,Two-year (public and private not-for-profit),2,3,NC,37019,Brunswick,0.62378168,0.40086183,0.010488461,6.60E-05,57462.2127,47200,0.431821729,0.24832292,0.22842675,0.24992278,0.17293036,0.10039714,0.02956292,0.01464999,0.000757353,3.35E-05
Bryan College,6,Selective private,1,3,TN,47143,Rhea,0.6014151,0.71224713,0.004701786,3.54E-05,141063.2931,78800,0.616644279,0.06427718,0.1352938,0.25726214,0.25584352,0.28732345,0.15129207,0.092920519,0.023037894,0.00243661
Bryant University,6,Selective private,1,1,RI,44007,Providence,0.39951575,0.6133123,0.016033988,0.001954661,158784.901,116900,0.746472319,0.029851424,0.064203233,0.13427809,0.22925709,0.54241019,0.31117016,0.16455729,0.031231223,0.002375882
Bryn Mawr College,2,Other elite schools (public and private),1,1,PA,42091,Montgomery,0.99623114,0.46789965,0.018263785,0.00126671,222398.8616,125400,0.741593934,0.051568918,0.088967226,0.12213887,0.17481363,0.56251127,0.410871,0.27508262,0.070389114,0.005911521
Bucknell University,2,Other elite schools (public and private),1,1,PA,42119,Union,0.49595469,0.6546995,0.014601452,0.001628744,296115.8312,149800,0.794165955,0.026475985,0.057272293,0.10861945,0.1671465,0.64048576,0.50025469,0.36212891,0.11221072,0.012693713
Bucks County Community College,9,Two-year (public and private not-for-profit),2,1,PA,42017,Bucks,0.50630212,0.48262656,0.012156286,0,102425.6867,87000,0.634898366,0.065730006,0.11953618,0.20696148,0.29752886,0.3102434,0.13771717,0.051537983,0.00679618,0.000408907
Buena Vista University,6,Selective private,1,2,IA,19021,Buena Vista,0.5401997,0.71489495,0.016441403,0.001094391,89198.67847,69800,0.573608625,0.058302686,0.18671241,0.29473469,0.29223457,0.16801567,0.071622059,0.034556452,0.007118737,0.001130343
Bunker Hill Community College,9,Two-year (public and private not-for-profit),2,1,MA,25025,Suffolk,0.54284322,0.29713309,0.021385506,0.000480148,67958.95742,49500,0.455408928,0.19770063,0.27077413,0.21679874,0.19054422,0.12418228,0.048086822,0.01800834,0.006344828,2.36E-05
Burlington County College - Pemberton Campus,9,Two-year (public and private not-for-profit),2,1,NJ,34005,Burlington,0.50845051,0.42256367,0.016218465,3.12E-05,94760.71005,83200,0.608716447,0.078882173,0.14797412,0.19490939,0.29541731,0.28281689,0.10689427,0.033235874,0.005105712,0.000172862
Butler County Community College of Butler - PA,9,Two-year (public and private not-for-profit),2,1,PA,42019,Butler,0.5,0.55848849,0.009013699,4.68E-05,74248.59375,66300,0.530565401,0.12039075,0.15562718,0.29879287,0.2938391,0.13135009,0.041800302,0.014803949,0.003627076,0.000670411
Butler County Community College of El Dorado - KS,9,Two-year (public and private not-for-profit),2,2,KS,20015,Butler,0.54449648,0.54450911,0.008538437,0,81621.4791,75200,0.569893518,0.10150753,0.15114155,0.23051855,0.32282242,0.1940099,0.062198143,0.021103693,0.003997362,0.00019544
Butler University,6,Selective private,1,2,IN,18097,Marion,0.63416219,0.7078656,0.010017018,0.000884517,196070.5855,121500,0.77323367,0.021009654,0.055650353,0.12210855,0.24108993,0.5601415,0.34260258,0.19378178,0.052811693,0.004240214
Butte College,9,Two-year (public and private not-for-profit),2,4,CA,6007,Butte,0.47420523,0.47833654,0.019575922,0.000391156,81294.32462,64100,0.523957846,0.16059485,0.191634,0.2192651,0.23241371,0.19609243,0.087169804,0.037990063,0.005470143,0.000162135
CUNY Bernard M. Baruch College,5,Selective public,1,1,NY,36061,New York,0.55186212,0.46454075,0.12938586,0.007065087,66249.87845,42800,0.42644337,0.27632242,0.24708676,0.18114506,0.15844415,0.13700163,0.060149692,0.023444783,0.00559202,0.001221089
CUNY Borough Of Manhattan Community College,9,Two-year (public and private not-for-profit),2,1,NY,36061,New York,0.561055,0.24085049,0.061434079,0.000488994,45008.48356,33500,0.333907498,0.35075352,0.30528826,0.19741878,0.088356949,0.058182538,0.021669056,0.007223479,0.001028359,1.40E-06
CUNY Bronx Community College,9,Two-year (public and private not-for-profit),2,1,NY,36005,Bronx,0.55779111,0.21788596,0.058818981,2.23E-05,39859.19794,29700,0.29910172,0.40972704,0.29984668,0.17144136,0.086420804,0.032563992,0.01083928,0.003080853,0.000917485,2.18E-05
CUNY Brooklyn College,5,Selective public,1,1,NY,36047,Kings,0.59425551,0.49788338,0.080658495,0.001657324,81701.99678,52200,0.476604588,0.23247004,0.22285134,0.17759398,0.16867423,0.19841042,0.10548978,0.052340653,0.007858501,0.000672367
CUNY Hunter College,5,Selective public,1,1,NY,36061,New York,0.6918084,0.38337278,0.075420022,0.001793156,74827.43685,49800,0.466722665,0.21163614,0.24947171,0.20037729,0.16305597,0.17545889,0.078180246,0.030385409,0.005610154,0.00103592
CUNY John Jay College Of Criminal Justice,5,Selective public,1,1,NY,36061,New York,0.59527689,0.32534915,0.096914381,0.000837602,56952.99519,41800,0.405763138,0.27158952,0.27249771,0.19947815,0.14038803,0.1160467,0.040596616,0.013242744,0.000979112,0
CUNY Laguardia Community College,9,Two-year (public and private not-for-profit),2,1,NY,36081,Queens,0.57838142,0.29936689,0.06055285,0,42930.78843,33800,0.329589091,0.36779636,0.29095787,0.19897839,0.10014469,0.042122658,0.01605398,0.002530042,0.000332368,1.85E-05
CUNY Lehman College,5,Selective public,1,1,NY,36005,Bronx,0.67544484,0.30575472,0.10235137,0.000696102,45762.72522,32500,0.341188916,0.36707491,0.27843255,0.18080103,0.10446914,0.069222383,0.012304031,0.001802599,0,0
CUNY Medgar Evers College,5,Selective public,1,1,NY,36047,Kings,0.69483566,0.15341583,0.050478742,8.76E-06,44877.50819,35100,0.338324204,0.30484688,0.35112643,0.1971558,0.10433246,0.042538427,0.007142409,0.001367697,0.001367697,5.11E-05
CUNY Queens College,5,Selective public,1,1,NY,36081,Queens,0.61209625,0.53708667,0.071382657,0.001588387,93543.63791,63300,0.522337238,0.20142742,0.19686171,0.15385202,0.19396383,0.25389493,0.12613821,0.061561428,0.012734835,0.001536862
CUNY York College,5,Selective public,1,1,NY,36081,Queens,0.68115944,0.27062157,0.068195067,0.000898232,46950.67207,36500,0.355483376,0.30660444,0.31305575,0.21146952,0.10849758,0.0603728,0.019334774,0.005460362,0.000612469,1.15E-05
CUNY - Hostos Community College,9,Two-year (public and private not-for-profit),2,1,NY,36005,Bronx,0.69263458,0.21302654,0.065006472,0,34486.3548,26700,0.266836903,0.45826006,0.30691656,0.15065864,0.065011472,0.019153386,0.009835466,0.001545886,0.000505599,3.54E-05
Cabrillo College,9,Two-year (public and private not-for-profit),2,4,CA,6087,Santa Cruz,0.49319521,0.40492013,0.017490042,0.00026631,103351.7815,70200,0.56030357,0.14195026,0.18660159,0.19420433,0.20257413,0.27466977,0.15029858,0.07159704,0.011204088,0.0015935
Cabrini College,6,Selective private,1,1,PA,42045,Delaware,0.63466668,0.56710434,0.013427556,8.58E-05,144233.6016,98100,0.684482315,0.055950224,0.096501969,0.17948073,0.24927711,0.41879007,0.21483026,0.11734808,0.022789121,0.00257641
Cairn University,6,Selective private,1,1,PA,42017,Bucks,0.57312924,0.76966709,0.007040408,0.00011591,96076.04173,77100,0.600635444,0.069714844,0.14549102,0.23258588,0.30953327,0.24267513,0.12573613,0.04022425,0.004753111,3.64E-05
Caldwell College,6,Selective private,1,1,NJ,34013,Essex,0.62596601,0.52950287,0.025125738,0,106866.5621,84300,0.631174898,0.071806014,0.15266198,0.19942565,0.25528637,0.32082,0.15372089,0.073934309,0.013897126,0
Caldwell Community College & Technical Institute,9,Two-year (public and private not-for-profit),2,3,NC,37027,Caldwell,0.52700925,0.51103944,0.009130877,1.00E-05,89643.4853,60300,0.512527472,0.1348293,0.22419637,0.24882819,0.23080027,0.16134588,0.075855248,0.034207027,0.00663326,0.00062002
Calhoun Community College,9,Two-year (public and private not-for-profit),2,3,AL,1083,Limestone,0.55225432,0.52860069,0.014503576,0,81785.55738,72600,0.555661351,0.12812673,0.16891205,0.21089435,0.2755135,0.21655345,0.072258137,0.020659443,0.003740032,0.000234157
California Baptist University,6,Selective private,1,4,CA,6065,Riverside,0.64864862,0.72462571,0.023633266,0,94525.19923,82600,0.621197077,0.076455861,0.11190012,0.22609356,0.31907257,0.26647782,0.10806311,0.038560864,0.00362805,3.37E-06
California College Of The Arts,8,Nonselective four-year private not-for-profit,1,4,CA,6075,San Francisco,0.58221024,0.34035909,0.008559255,8.81E-05,160342.7458,90100,0.661119232,0.077750891,0.11223492,0.19071911,0.209786,0.40950912,0.26662317,0.17065772,0.037290487,0.005316518
California Culinary Academy,11,Two-year for-profit,2,4,CA,6075,San Francisco,0.38528138,0.37816384,0.016258487,0,110464.0925,66000,0.584234439,0.12081306,0.1641795,0.19600943,0.23274744,0.28625065,0.14337744,0.072838202,0.020360259,0.000183185
California Institute Of Technology,2,Other elite schools (public and private),1,4,CA,6037,Los Angeles,0.33216783,0.5417853,0.031777687,0.00723216,185591.1348,124500,0.746004221,0.048102688,0.081358336,0.1054583,0.19690256,0.56817818,0.37733811,0.22134013,0.043595593,0.00338184
California Institute Of The Arts,8,Nonselective four-year private not-for-profit,1,4,CA,6037,Los Angeles,0.45923913,0.36633381,0.009437901,0.002520606,205473.4941,108700,0.694929475,0.080275685,0.11305255,0.13451971,0.18637528,0.48577678,0.3606846,0.23995835,0.055772357,0.008267282
California Lutheran University,6,Selective private,1,4,CA,6111,Ventura,0.57888889,0.66277009,0.012286789,6.20E-05,169644.5575,110600,0.722027274,0.032132387,0.095524058,0.14437614,0.2459957,0.48197174,0.3019295,0.15135324,0.032230727,0.00447468
California Maritime Academy,5,Selective public,1,4,CA,6095,Solano,0.15217391,0.58743018,0.050363775,0.003598627,132454.2234,113100,0.712130928,0.059269119,0.072541684,0.16307126,0.1991287,0.50598931,0.26830462,0.13837093,0.007459405,0.000128247
California State University - Polytechnic at San Luis Obispo,5,Selective public,1,4,CA,6079,San Luis Obispo,0.46565855,0.63291138,0.022484858,0.00159712,169835.7176,124800,0.753248831,0.041973852,0.067781866,0.11182152,0.20239483,0.57602787,0.36984918,0.19092689,0.03120397,0.002161499
California State University - Polytechnic at Pomona,5,Selective public,1,4,CA,6037,Los Angeles,0.42013362,0.5076192,0.06833405,0.000304741,98379.03405,80200,0.583455906,0.14929721,0.15408859,0.15869318,0.2094191,0.32850197,0.15774916,0.058930848,0.007235565,0.000305685
California State University - Sacramento,5,Selective public,1,4,CA,6067,Sacramento,0.58687133,0.57990736,0.033332288,3.79E-07,107518.9904,88700,0.623631152,0.10452874,0.1330055,0.16694039,0.23666093,0.35886443,0.17981558,0.071358517,0.00932922,0.000488581
California State University - Channel Islands,7,Nonselective four-year public,1,4,CA,6111,Ventura,,0.55707496,0.015977334,5.36E-05,141960.9635,96300,0.664562166,0.050687544,0.10041627,0.18059498,0.220046,0.44825518,0.28377703,0.1121149,0.021967391,0.000136718
California State University - Bakersfield,5,Selective public,1,4,CA,6029,Kern,0.64312041,0.61722022,0.04607648,0.000604219,84211.55416,67700,0.550141947,0.14064996,0.20160218,0.18462351,0.20544297,0.26768136,0.11005989,0.035884302,0.003696711,0
California State University - Chico,5,Selective public,1,4,CA,6007,Butte,0.56964475,0.60270417,0.01958406,0.000536622,150534.7388,112200,0.712693733,0.060856566,0.088589862,0.13079704,0.2131497,0.50660682,0.29665413,0.14638433,0.021921394,0.00226117
California State University - Dominguez Hills,5,Selective public,1,4,CA,6037,Los Angeles,0.6971935,0.34141997,0.056009766,0.000728496,57771.22737,45600,0.416794469,0.2631824,0.24385837,0.22733229,0.14938217,0.11624473,0.054560892,0.016673509,0.000731309,6.14E-07
California State University - East Bay,5,Selective public,1,4,CA,6001,Alameda,0.65980864,0.53623867,0.043488853,0.000928833,104528.7794,86000,0.621243891,0.098883428,0.13321358,0.18099461,0.23088065,0.35602769,0.17157997,0.066232383,0.005233491,0.000927045
California State University - Fresno,5,Selective public,1,4,CA,6019,Fresno,0.6037432,0.59193456,0.041856874,0.000594443,93996.48605,72400,0.558883874,0.15951231,0.17229286,0.17508301,0.2083434,0.28476852,0.13690145,0.054281529,0.008530645,0.000793169
California State University - Fullerton,5,Selective public,1,4,CA,6059,Orange,0.61668068,0.53429401,0.047993153,0.000843241,103739.6362,83300,0.604733094,0.12116247,0.14821915,0.16592383,0.21681046,0.34788409,0.17236653,0.066477746,0.008560205,0.000576292
California State University - Long Beach,5,Selective public,1,4,CA,6037,Los Angeles,0.64032125,0.51371813,0.044307064,0.000349687,116773.1328,85800,0.613430921,0.11606012,0.14865015,0.16266367,0.20915568,0.36347038,0.19052388,0.077225655,0.01184576,0.001509195
California State University - Los Angeles,5,Selective public,1,4,CA,6037,Los Angeles,0.62447017,0.39761055,0.09918455,0.000276924,52114.62349,36600,0.372024361,0.33116928,0.26438552,0.18986,0.11652577,0.09805952,0.041263379,0.011098951,0.001559809,6.74E-07
California State University - Monterey Bay,5,Selective public,1,4,CA,6053,Monterey,0.58884299,0.50071526,0.033873096,0.001034727,123045.047,93200,0.641400318,0.10497926,0.13239628,0.15644029,0.20848399,0.39770016,0.22675908,0.1093564,0.013763507,0.0010498
California State University - Northridge,5,Selective public,1,4,CA,6037,Los Angeles,0.58629012,0.45996237,0.063248597,0.001425367,84829.51677,61100,0.513859183,0.19794104,0.19629784,0.18537886,0.18028662,0.24009569,0.11704207,0.049181789,0.006706683,0.000587623
California State University - San Bernardino,5,Selective public,1,4,CA,6071,San Bernardino,0.64688855,0.53637075,0.043982204,0.001144283,82251.9873,69800,0.550327799,0.1409772,0.18307646,0.19846117,0.23630543,0.24117965,0.092962489,0.026474113,0.003854447,8.53E-05
California State University - San Marcos,5,Selective public,1,4,CA,6073,San Diego,0.61340606,0.61089116,0.020967012,0,128226.3448,93600,0.639580581,0.090011165,0.13894205,0.15453355,0.22530757,0.39120561,0.19110648,0.091325521,0.022104999,0.001577192
California State University - Stanislaus,5,Selective public,1,4,CA,6099,Stanislaus,0.66887784,0.63860941,0.038550034,4.54E-05,83972.02921,72300,0.557670304,0.13350467,0.17355491,0.19659412,0.25122407,0.24512222,0.093872853,0.037738215,0.003291034,2.43E-05
California University Of Pennsylvania,5,Selective public,1,1,PA,42125,Washington,0.51052445,0.60840291,0.014919632,0,81707.01576,73800,0.575098366,0.090004377,0.13768844,0.27055866,0.30174029,0.20000823,0.062911868,0.01996801,0.002812641,5.50E-06
Calvin College,6,Selective private,1,2,MI,26081,Kent,0.56354451,0.81562275,0.009820819,0.000457066,158432.857,111500,0.745197286,0.030876394,0.056796633,0.13232778,0.27631983,0.50367945,0.30306125,0.18098135,0.02846574,0.002173261
Cambria Rowe Business College,11,Two-year for-profit,2,1,PA,42021,Cambria,0.88235295,0.621225,0.00550735,0.000328167,53077.62808,46800,0.376446505,0.21967047,0.24170075,0.33323735,0.17559072,0.029800795,0.013979586,0.007677534,0.002239927,8.39E-05
Camden County College,9,Two-year (public and private not-for-profit),2,1,NJ,34007,Camden,0.53799486,0.41130802,0.015779516,0.000305582,84978.57228,74000,0.566041143,0.12293932,0.16760525,0.20167278,0.27353388,0.23424874,0.087329403,0.027791584,0.003310551,0.000266666
Cameron University,5,Selective public,1,3,OK,40031,Comanche,0.53039598,0.55942601,0.029703129,0.001677503,62172.31258,56400,0.481359281,0.17239676,0.20947668,0.26291209,0.2447042,0.1105102,0.035045482,0.009597707,0.00044043,1.95E-05
Campbell University,6,Selective private,1,3,NC,37085,Harnett,0.42536232,0.59491992,0.03085978,0.000346685,88538.40074,69900,0.555895877,0.1158799,0.18077743,0.23103023,0.24951646,0.22279599,0.095774233,0.04132767,0.008060632,0.000382166
Campbellsville University,6,Selective private,1,3,KY,21217,Taylor,0.52857143,0.70021641,0.017751163,3.81E-05,81438.70313,68100,0.557174007,0.11893585,0.16507995,0.24760121,0.27323985,0.19514333,0.049577087,0.020167228,0.006534653,0.000135107
Canisius College,6,Selective private,1,1,NY,36029,Erie,0.5196529,0.58797967,0.023605259,0.002046192,121289.8098,94200,0.652200207,0.071293145,0.10507509,0.16680041,0.28605044,0.370781,0.18801051,0.076502308,0.01331933,0.002567262
Cape Cod Community College,9,Two-year (public and private not-for-profit),2,1,MA,25001,Barnstable,0.55615699,0.41886306,0.020884961,1.85E-05,88195.67496,67700,0.550520988,0.12728192,0.17531303,0.23559141,0.24986227,0.21195138,0.091187112,0.0415405,0.007412402,0.000423891
Cape Fear Community College,9,Two-year (public and private not-for-profit),2,3,NC,37129,New Hanover,0.48332822,0.4474085,0.012022532,0.000602807,99258.4688,70800,0.554723336,0.14731146,0.16736747,0.2066783,0.23247904,0.24616371,0.11906999,0.054992661,0.012168288,0.001511823
Capital Area Technical College,9,Two-year (public and private not-for-profit),2,3,LA,22033,East Baton Rouge,0.46017516,0.4099004,0.0345123,0.000345425,56711.81771,44300,0.413792064,0.28281465,0.23137125,0.20995346,0.18678513,0.08907555,0.025890276,0.007106571,0.001668637,0.000159087
Capital Community College,9,Two-year (public and private not-for-profit),2,1,CT,9003,Hartford,0.63393807,0.2546708,0.025499053,7.62E-05,57093.28588,46200,0.439545373,0.24232808,0.2557846,0.21313944,0.17853197,0.11021597,0.029890476,0.010337913,0.000523399,0.000115952
Capital University,6,Selective private,1,2,OH,39049,Franklin,0.59396917,0.64336526,0.009138025,0.00071574,100713.1129,84100,0.622985872,0.059900701,0.12165917,0.23186505,0.31657332,0.2700018,0.12547885,0.0597906,0.006037997,0.000744154
Capri Institute Of Hair Design,12,Less than two-year schools of any type,3,1,NJ,34031,Passaic,0.9054054,0.42510119,0,0,88817.82214,73100,0.548289095,0.13678579,0.15935075,0.21548185,0.25929794,0.22908378,0.10484562,0.042244889,0.011487735,0.000123234
Cardinal Stritch University,6,Selective private,1,2,WI,55079,Milwaukee,0.73815459,0.55637735,0.019627208,2.71E-05,98632.30558,88400,0.636148524,0.06064821,0.13707976,0.18602103,0.32649469,0.28975618,0.1055602,0.043101437,0.009693495,4.38E-05
Carl Albert State College,9,Two-year (public and private not-for-profit),2,3,OK,40079,Le Flore,0.57831323,0.5834372,0.0251335,0.000694669,53883.02962,45700,0.406020396,0.2442392,0.25811976,0.25155908,0.1938452,0.052236792,0.015146689,0.008317857,0.000873075,0.000131177
Carl Sandburg College,9,Two-year (public and private not-for-profit),2,2,IL,17095,Knox,0.57429719,0.48297176,0.014573389,0,64202.55599,59300,0.490578383,0.13433078,0.20752579,0.31894571,0.25417316,0.08502458,0.021242369,0.005760402,0.001648013,0.0001292
Carleton College,2,Other elite schools (public and private),1,2,MN,27131,Rice,0.52481753,0.5659492,0.013661893,0.001484305,258017.3434,152000,0.809342706,0.025803708,0.044767044,0.10180618,0.1799393,0.64768386,0.50722992,0.35095957,0.083253548,0.006676727
Carlow University,6,Selective private,1,1,PA,42003,Allegheny,0.95319152,0.57778484,0.025027391,3.82E-06,84554.05997,66100,0.533131396,0.11994018,0.1880558,0.24406874,0.30436948,0.14356571,0.055962663,0.035848871,0.007193195,0.002215779
Carnegie Mellon University,2,Other elite schools (public and private),1,1,PA,42003,Allegheny,0.3855198,0.544034,0.021873826,0.00463903,221109.1144,134400,0.769309399,0.041113149,0.063759454,0.10588012,0.17903905,0.61020833,0.43507624,0.27107131,0.063818529,0.0058263
Carrington College California,11,Two-year for-profit,2,4,CA,6067,Sacramento,0.91599542,0.35820326,0.0170296,3.84E-05,59022.17318,47900,0.434762945,0.24452606,0.23059273,0.22426392,0.1982515,0.10236586,0.03822273,0.012257671,0.003556466,0.000224729
Carrington College of Mesa - AZ,11,Two-year for-profit,2,4,AZ,4013,Maricopa,0.87958115,0.32555488,0.006618644,8.64E-05,53505.63021,40200,0.373857975,0.28016749,0.30743748,0.22439033,0.13369836,0.054306261,0.029308438,0.015402258,0.001620687,0.0001292
Carrington College of Spokane Valley - WA,11,Two-year for-profit,2,4,WA,53063,Spokane,0.91666669,0.50283796,0.01351331,0.000115167,60433.70964,46500,0.400289486,0.25930279,0.22096317,0.27490994,0.16180898,0.083014935,0.028415859,0.012964339,0.003631798,0.000352587
Carroll College,6,Selective private,1,4,MT,30049,Lewis And Clark,0.59597808,0.65444183,0.018208114,0.001446164,127585.1406,89700,0.651448985,0.051360957,0.12489415,0.20099777,0.28378326,0.33896393,0.19374813,0.10192162,0.022834662,0.001765703
Carroll Community College,9,Two-year (public and private not-for-profit),2,3,MD,24013,Carroll,0.55299538,0.55855173,0.005965789,9.58E-06,98088.84285,92100,0.66194862,0.048945755,0.10061576,0.16961169,0.35729235,0.32353452,0.10671602,0.030255614,0.001546493,8.48E-05
Carroll University,6,Selective private,1,2,WI,55133,Waukesha,0.66409862,0.65760481,0.006412858,0,127266.4539,95000,0.68125054,0.03072205,0.10085366,0.17404152,0.33599982,0.35838294,0.14261928,0.068896413,0.012602638,0.001526706
Carson - Newman University,6,Selective private,1,3,TN,47089,Jefferson,0.556701,0.71554041,0.015280725,0,104330.286,79100,0.606765909,0.094424881,0.14956883,0.19862038,0.25735521,0.30003074,0.13303269,0.082210466,0.013305694,6.85E-05
Carteret Community College,9,Two-year (public and private not-for-profit),2,3,NC,37031,Carteret,0.59727889,0.48026693,0.006347382,1.40E-05,64074.68568,50300,0.437157746,0.22251683,0.23234969,0.25444347,0.19990294,0.090787068,0.035381749,0.018304359,0.004792506,5.40E-05
Carthage College,6,Selective private,1,2,WI,55059,Kenosha,0.54138702,0.65185201,0.010403308,0,137183.9071,101600,0.700249271,0.036779426,0.090390369,0.15242238,0.29606289,0.42434502,0.21634623,0.10749059,0.021702733,0.002839561
Cascadia Community College,9,Two-year (public and private not-for-profit),2,4,WA,53033,King,0.43391812,0.47287187,0.006026562,0,128951.5746,97300,0.697375024,0.036046792,0.076653592,0.17955746,0.31665862,0.3910836,0.19482285,0.086692058,0.009164978,0.002266359
Case Western Reserve University,2,Other elite schools (public and private),1,2,OH,39035,Cuyahoga,0.38777414,0.62533736,0.017887011,0.001801719,166132.0251,118200,0.746777739,0.032713771,0.065086842,0.13811813,0.22673118,0.53735012,0.34867886,0.18254972,0.035472538,0.001884189
Casper College,9,Two-year (public and private not-for-profit),2,4,WY,56025,Natrona,0.53201634,0.59453791,0.020936957,0,81143.84787,68000,0.541952207,0.10919309,0.18361907,0.25979316,0.29325175,0.15414283,0.050356664,0.031829525,0.003441497,0.000229052
Catawba College,6,Selective private,1,3,NC,37159,Rowan,0.51546389,0.58018452,0.012521857,8.01E-05,109748.8177,94000,0.671118339,0.057591319,0.10645448,0.16991085,0.30527252,0.36077085,0.16898884,0.07633201,0.011009105,0.000252983
Catawba Valley Community College,9,Two-year (public and private not-for-profit),2,3,NC,37035,Catawba,0.52512819,0.54109466,0.005654254,3.62E-06,72115.67584,63800,0.516162621,0.11952283,0.21266836,0.26205543,0.27541748,0.13033584,0.042140376,0.01840383,0.003674374,2.22E-05
Catholic University Of America ,6,Selective private,1,3,DC,11001,District Of Columbia,0.53467155,0.59243506,0.008010637,0.000637198,187760.4099,133000,0.785614233,0.021016385,0.060633816,0.10091512,0.18843681,0.62899792,0.40868708,0.22411644,0.040084183,0.003613418
Cayuga Community College - SUNY Office Of Community College,9,Two-year (public and private not-for-profit),2,1,NY,36011,Cayuga,0.52403563,0.44816679,0.011292894,7.33E-06,69391.90452,64300,0.5156969,0.1240641,0.21536149,0.24182761,0.28793526,0.13081159,0.037973423,0.008233442,0.001469095,3.29E-05
Cazenovia College,6,Selective private,1,1,NY,36053,Madison,0.71875,0.49504784,0.01259689,0.000142379,95134.14936,64200,0.533070892,0.12061559,0.19898008,0.2462576,0.23461571,0.19953109,0.090722769,0.035306986,0.005991344,0.00173687
Cecil College,9,Two-year (public and private not-for-profit),2,3,MD,24015,Cecil,0.56896549,0.5087713,0.011928402,7.56E-05,80102.83594,76500,0.588526766,0.087681137,0.14032085,0.23003294,0.31026056,0.23170453,0.061187539,0.010509158,0.000505221,0.000258501
Cedarville University,6,Selective private,1,2,OH,39057,Greene,0.54532903,0.79368979,0.00879315,0,137350.9576,99500,0.708656335,0.030670013,0.073821887,0.17989478,0.30830991,0.40730336,0.214444,0.10191631,0.018593667,0.002061249
Centenary College,6,Selective private,1,1,NJ,34041,Warren,0.71608043,0.5212599,0.01035414,2.86E-05,128253.9997,94300,0.637524165,0.094194345,0.12193993,0.16364361,0.24488769,0.37533441,0.19480158,0.092335589,0.017597042,0.00250638
Centenary College Of Louisiana,6,Selective private,1,3,LA,22017,Caddo,0.61896551,0.63157952,0.014953231,0,152373.3074,100300,0.687814248,0.054169897,0.10251924,0.15815777,0.25067794,0.43447506,0.27578178,0.13763911,0.028977057,0.004854712
Center For Employment Training,12,Less than two-year schools of any type,3,4,CA,6085,Santa Clara,0.55517244,0.32362455,0.01181031,8.97E-05,39084.00911,29300,0.276594768,0.42773962,0.33106402,0.16342795,0.050687097,0.027081355,0.006845058,0.006648601,0.000816791,0.000168576
Central Arizona College,9,Two-year (public and private not-for-profit),2,4,AZ,4021,Pinal,0.51980501,0.42484701,0.016930938,1.12E-05,65594.20756,53400,0.458846029,0.19480759,0.23486999,0.25846767,0.20546924,0.10638555,0.037229478,0.009246261,0.002559071,0.000635954
Central Carolina Community College,9,Two-year (public and private not-for-profit),2,3,NC,37105,Lee,0.57392389,0.43892407,0.01114486,2.99E-05,63738.59621,57000,0.469035868,0.18055682,0.23129269,0.24860062,0.22826265,0.11128721,0.034810588,0.01395893,0.002879324,6.09E-05
Central Carolina Technical College,9,Two-year (public and private not-for-profit),2,3,SC,45085,Sumter,0.60394734,0.39048141,0.010536547,0,51362.61869,40600,0.392203886,0.27657214,0.27204001,0.22811587,0.16201095,0.061260954,0.018757472,0.005228011,0.000139836,2.31E-05
Central College,6,Selective private,1,2,IA,19125,Marion,0.59307766,0.75761187,0.009312517,0.000790958,110612.775,87700,0.650072263,0.035016622,0.11813613,0.22802544,0.31436551,0.30445635,0.13599041,0.06575834,0.009596091,6.87E-05
Central Community College,9,Two-year (public and private not-for-profit),2,2,NE,31079,Hall,0.55843741,0.58858949,0.009871045,0,62759.31933,56600,0.475073872,0.13151333,0.23422383,0.32472631,0.23876831,0.070768245,0.028389929,0.012743748,0.002052618,9.63E-08
Central Connecticut State University,5,Selective public,1,1,CT,9003,Hartford,0.49430364,0.52908772,0.014561397,0.000667064,104581.3845,93300,0.663732088,0.05061036,0.10825457,0.16859604,0.31301624,0.3595227,0.14420708,0.043641295,0.004709914,0.000269641
Central Georgia Technical College,9,Two-year (public and private not-for-profit),2,3,GA,13153,Houston,0.65714288,0.27714461,0.009280959,4.81E-05,47888.52474,33600,0.343031863,0.36186621,0.28114435,0.16398613,0.13049597,0.062507242,0.023456739,0.002861663,0.000603935,0.0001292
Central Methodist University,6,Selective private,1,2,MO,29089,Howard,0.51215279,0.66388357,0.01253188,0.003494827,77169.68938,66000,0.551949654,0.084834293,0.17985511,0.30542454,0.26669103,0.16319506,0.062764555,0.024506124,0.001232764,7.35E-05
Central Michigan University,5,Selective public,1,2,MI,26073,Isabella,0.60200667,0.64899361,0.010340575,0.000298447,112044.4632,98300,0.6897157,0.043737322,0.085741848,0.1716128,0.29306608,0.40584195,0.17767414,0.059556484,0.005869707,0.000129065
Central New Mexico Community College,9,Two-year (public and private not-for-profit),2,4,NM,35001,Bernalillo,0.51316422,0.38035893,0.01441014,7.43E-05,66972.26994,54500,0.468295009,0.19610479,0.23237987,0.22694471,0.20582892,0.1387417,0.050161894,0.019378321,0.002732884,0.000289135
Central Ohio Technical College,9,Two-year (public and private not-for-profit),2,2,OH,39089,Licking,0.63339919,0.53683203,0.017037578,3.25E-05,66213.68552,62200,0.504279873,0.11529409,0.22088629,0.27482384,0.29279384,0.096201979,0.036359504,0.020002546,0.000782366,1.96E-05
Central Oregon Community College,9,Two-year (public and private not-for-profit),2,4,OR,41017,Deschutes,0.51796007,0.50956106,0.011418321,0,97126.77408,68200,0.552724438,0.11042752,0.17806211,0.25801617,0.25533202,0.19816221,0.10305332,0.063171662,0.01248555,0.001736776
Central Penn College,10,Four-year for-profit,1,1,PA,42041,Cumberland,0.77793103,0.62044829,0.005842939,3.84E-05,72336.46977,66800,0.545081418,0.091100037,0.18333235,0.30559152,0.28542319,0.13455284,0.048962798,0.021039329,0.000885412,0.000885412
Central Piedmont Community College,9,Two-year (public and private not-for-profit),2,3,NC,37119,Mecklenburg,0.51327181,0.41521946,0.008883052,0,92559.54673,71200,0.561136318,0.12285537,0.18156567,0.21297535,0.23614706,0.24645649,0.11513934,0.052212965,0.006675948,0.000433374
Central State University,5,Selective public,1,2,OH,39057,Greene,0.54010028,0.19629507,0.020660078,0,52515.042,40300,0.399521073,0.23948643,0.31469154,0.21223468,0.15662128,0.076966211,0.031977657,0.007459865,7.11E-05,2.27E-05
Central Texas College District,9,Two-year (public and private not-for-profit),2,3,TX,48027,Bell,0.32609484,0.51249754,0.037428249,0.000215437,61043.82604,51800,0.450453408,0.19599943,0.24255061,0.25908089,0.2023696,0.099999472,0.032442741,0.010570347,0.001090145,9.12E-05
Central Virginia Community College,9,Two-year (public and private not-for-profit),2,3,VA,51680,Lynchburg City,0.53596163,0.55700481,0.006800067,3.88E-06,78032.30586,68600,0.544952135,0.10964057,0.18007098,0.25320226,0.29191726,0.16516903,0.057960797,0.025959348,0.002676726,3.24E-05
Central Washington University,5,Selective public,1,4,WA,53037,Kittitas,0.53757709,0.63380742,0.013766491,0.00083519,115641.1131,97100,0.681560286,0.054754861,0.089585133,0.16183552,0.29051191,0.4033125,0.16891204,0.074459136,0.010038604,0.000821039
Central Wyoming College,9,Two-year (public and private not-for-profit),2,4,WY,56013,Fremont,0.59243697,0.54701012,0.022614108,0.001228705,67205.53057,52100,0.45667901,0.19409195,0.22773919,0.28563023,0.20294876,0.089589842,0.037713215,0.016405467,0.002994871,0.001254797
Centralia College,7,Nonselective four-year public,1,4,WA,53041,Lewis,0.52451706,0.51344478,0.016559748,0,79800.97636,66300,0.52435051,0.13729216,0.18164127,0.25689822,0.2809059,0.14326243,0.058617365,0.021827705,0.002998152,0.001442487
Centre College Of Kentucky,4,Highly selective private,1,3,KY,21021,Boyle,0.55000001,0.6840238,0.00691677,0.001396822,192429.8266,111000,0.744182379,0.025133079,0.074178144,0.14329864,0.26771101,0.4896791,0.33675039,0.20979947,0.047270928,0.002253679
Cerritos Community College,9,Two-year (public and private not-for-profit),2,4,CA,6037,Los Angeles,0.52829599,0.36271802,0.033037066,0.000360824,56123.49818,45500,0.420908526,0.23391293,0.26428977,0.2457314,0.16574694,0.090319023,0.028967435,0.009116232,0,0
Certain Colorado Community Colleges,9,Two-year (public and private not-for-profit),2,4,CO,8001,Adams,0.51655984,0.46098489,0.013612651,0.000274739,89405.63749,70800,0.55633114,0.12505363,0.17518488,0.2194697,0.25373232,0.22655956,0.10069311,0.042917244,0.006348209,0.000613076
Chabot-Las Positas Community College District,9,Two-year (public and private not-for-profit),2,4,CA,6001,Alameda,0.49657103,0.41821817,0.015573887,3.51E-05,101121.464,84000,0.614270591,0.092919216,0.14164805,0.19660956,0.24656263,0.32226056,0.14778621,0.049529083,0.00639301,0.000876225
Chadron State College,5,Selective public,1,2,NE,31045,Dawes,0.54812098,0.68929827,0.019025898,0.000803805,72584.39897,68100,0.530354808,0.10851479,0.19772686,0.27556479,0.27668929,0.14150423,0.054927595,0.026917947,0.003249825,0
Chaffey Community College,9,Two-year (public and private not-for-profit),2,4,CA,6071,San Bernardino,0.53472883,0.42757747,0.017686883,0.00022481,76332.50965,66300,0.529770218,0.14693554,0.18849498,0.22492571,0.24177757,0.19786617,0.06486734,0.021992279,0.002581923,5.87E-05
Chaminade University Of Honolulu,6,Selective private,1,4,HI,15003,Honolulu,0.54171705,0.50743365,0.034261223,0,79499.56704,66600,0.526490535,0.15715286,0.18067917,0.21306194,0.25794584,0.19116025,0.078513481,0.038306702,0.00485519,6.72E-06
Champlain College,6,Selective private,1,1,VT,50007,Chittenden,0.53256702,0.55183423,0.017630156,0.000779234,124026.1553,85200,0.64132994,0.071677029,0.12509334,0.19379205,0.27462536,0.33481231,0.19109863,0.096056946,0.02244243,0.001686263
Chapman University,4,Highly selective private,1,4,CA,6059,Orange,0.57103372,0.56117231,0.017024867,0.001599682,233063.9002,109600,0.713686339,0.053395603,0.088427097,0.14923328,0.21186167,0.49708232,0.31340426,0.19515698,0.052809216,0.009395609
Charles Stewart Mott Community College,9,Two-year (public and private not-for-profit),2,2,MI,26049,Genesee,0.54580337,0.45090249,0.008136056,2.79E-05,83086.51094,78800,0.575906856,0.12730539,0.14173152,0.19111688,0.29733542,0.2425108,0.078909479,0.018773589,0.00351686,5.80E-05
Charleston Southern University,6,Selective private,1,3,SC,45019,Charleston,0.63722825,0.58523548,0.021454673,0.00140604,88515.8099,70500,0.572594047,0.11976121,0.1658362,0.23295052,0.25513369,0.22631836,0.11758807,0.051816653,0.00602341,0.000148484
Chatham University,6,Selective private,1,1,PA,42003,Allegheny,0.98666668,0.51998746,0.016273953,4.34E-05,98628.7274,71200,0.569233714,0.10032528,0.16995484,0.24149461,0.24404053,0.24418479,0.14102921,0.085255995,0.007308354,0.000848388
Chattahoochee Technical College,9,Two-year (public and private not-for-profit),2,3,GA,13067,Cobb,0.47348768,0.4011977,0.013216591,5.72E-05,84297.88281,70800,0.551544805,0.12042069,0.19358207,0.20676914,0.24764575,0.23158231,0.097277947,0.04229467,0.00252404,0.0001664
Chattahoochee Valley Community College,9,Two-year (public and private not-for-profit),2,3,AL,1113,Russell,0.60646385,0.41069409,0.021467324,0.000129186,62115.03906,48300,0.456215461,0.22959557,0.25515464,0.20055541,0.19610067,0.1185936,0.039763127,0.017370444,0.003060959,0.000255071
Chattanooga State Community College,9,Two-year (public and private not-for-profit),2,3,TN,47065,Hamilton,0.52389878,0.49538848,0.015062478,0.000243395,75404.91449,61800,0.504485808,0.15991968,0.20331945,0.23827511,0.2373995,0.16108619,0.05954745,0.020686448,0.002628832,0.00028999
Chemeketa Community College,9,Two-year (public and private not-for-profit),2,4,OR,41047,Marion,0.5205192,0.52319223,0.012328122,0.000201779,75356.92375,66100,0.530942742,0.13103221,0.18136886,0.24989215,0.27497718,0.16272961,0.05462544,0.025156107,0.002023017,1.45E-05
Chesapeake College,9,Two-year (public and private not-for-profit),2,3,MD,24035,Queen Anne's,0.58682632,0.47219369,0.014860309,1.94E-05,72342.70171,65500,0.522197877,0.15893093,0.19299686,0.21015455,0.26315847,0.17475918,0.056297872,0.024071991,0.00297279,0.000214225
Chestnut Hill College,6,Selective private,1,1,PA,42101,Philadelphia,0.83625734,0.43626398,0.014189931,0.000126967,85882.13542,76600,0.573786477,0.080211788,0.21783096,0.20876962,0.2636556,0.22953191,0.081609525,0.016928766,0.001111787,0.000353288
Cheyney University Of Pennsylvania,5,Selective public,1,1,PA,42045,Delaware,0.49706745,0.12473197,0.023012543,0,49417.09597,38600,0.375882234,0.27863061,0.32551664,0.21436997,0.12566902,0.055813823,0.031590983,0.008811885,0.000208896,4.23E-05
Chicago State University,5,Selective public,1,2,IL,17031,Cook,0.71143085,0.17575735,0.036516991,3.10E-05,51843.76085,43700,0.398387312,0.25747424,0.26945236,0.23220672,0.1614275,0.079439186,0.01283491,0.002791261,0.000512709,3.63E-05
Chipola College,7,Nonselective four-year public,1,3,FL,12063,Jackson,0.51313484,0.49437055,0.008406901,0.000170017,63056.5625,51800,0.455045799,0.21384507,0.23631319,0.21643563,0.24007756,0.093328543,0.030915346,0.014215896,0.000515779,0.0001292
Chippewa Valley Technical College,9,Two-year (public and private not-for-profit),2,2,WI,55035,Eau Claire,0.47410893,0.59211111,0.01684336,0,74736.92418,66900,0.527249525,0.10428528,0.18281147,0.30294406,0.28813383,0.12182534,0.040479191,0.021300908,0.004347325,4.04E-05
Christian Brothers University,6,Selective private,1,3,TN,47157,Shelby,0.49784791,0.57391977,0.02648765,0.002811567,144483.7004,97600,0.661530025,0.065602966,0.12154903,0.15170237,0.26956305,0.39158261,0.22909066,0.12872165,0.021787895,0.004365269
Christopher Newport University,5,Selective public,1,3,VA,51700,Newport News City,0.59299958,0.60644472,0.010826487,0.000400446,101743.3676,92500,0.66620822,0.049734365,0.095811263,0.18565997,0.33060637,0.33818808,0.13542372,0.04695804,0.004229637,1.82E-05
Cincinnati Christian University,8,Nonselective four-year private not-for-profit,1,2,OH,39061,Hamilton,0.49321267,0.845846,0.003745617,0.000147793,101239.9505,74400,0.610173404,0.065313846,0.090320595,0.26277971,0.31581977,0.26576608,0.10784278,0.042069707,0.005910465,0.000383827
Cincinnati State Technical & Community College,9,Two-year (public and private not-for-profit),2,2,OH,39061,Hamilton,0.48999575,0.43960771,0.007278363,8.23E-06,76086.0012,68800,0.538747265,0.12702498,0.18250492,0.23359509,0.28898102,0.16789402,0.059826992,0.024090493,0.002066766,2.48E-05
Cisco College,9,Two-year (public and private not-for-profit),2,3,TX,48133,Eastland,0.51495725,0.52343524,0.028757729,0,61954.15924,53600,0.45658809,0.18150912,0.23102507,0.28384912,0.22415249,0.079464108,0.0316884,0.018529985,0.004076834,0.000139507
Citadel - The Military College Of South Carolina,5,Selective public,1,3,SC,45019,Charleston,0.05358436,0.66932344,0.019621627,0,146210.8855,106800,0.715968957,0.043771118,0.08003179,0.14568144,0.26153904,0.46897662,0.25989813,0.14215226,0.024630979,0.001505703
Citrus Community College,9,Two-year (public and private not-for-profit),2,4,CA,6037,Los Angeles,0.5257715,0.41265777,0.0204411,0.000891676,77666.00098,66500,0.537398716,0.14061031,0.18883803,0.22093631,0.24069507,0.20892018,0.0889415,0.027103774,0.00403653,0.000156598
City College Of New York - CUNY,5,Selective public,1,1,NY,36061,New York,0.47223812,0.38075513,0.11723747,0.004584892,54008.8998,35500,0.377118508,0.32546476,0.27965024,0.16806409,0.11846089,0.10835999,0.051773727,0.017143482,0.002335155,1.72E-05
City Colleges Of Chicago,9,Two-year (public and private not-for-profit),2,2,IL,17031,Cook,0.61105335,0.24427831,0.027052514,0.000323175,52773.57552,39400,0.381869574,0.28944212,0.28959864,0.20344295,0.14214964,0.07536675,0.024147619,0.009019015,0.00169045,0.000302223
Clackamas Community College,9,Two-year (public and private not-for-profit),2,4,OR,41005,Clackamas,0.47110114,0.49449268,0.011399943,0,84703.94166,73400,0.573037594,0.097364634,0.15579762,0.2453302,0.2951971,0.20631057,0.07414294,0.033274226,0.003836865,0.000213734
Claflin University,6,Selective private,1,3,SC,45075,Orangeburg,0.66911763,0.24522418,0.035919443,9.56E-05,47542.23958,35400,0.357602348,0.31608564,0.32724491,0.17756058,0.12673719,0.05237164,0.014427496,0.005359346,0.00086995,0.000131102
Claremont Mckenna College,2,Other elite schools (public and private),1,4,CA,6037,Los Angeles,0.46992481,0.57537639,0.029592477,0.012494438,335092.9724,142000,0.782583563,0.043338105,0.060416773,0.099125788,0.16861159,0.62850773,0.47098017,0.3521474,0.13383201,0.015121774
Clarendon College,9,Two-year (public and private not-for-profit),2,3,TX,48129,Donley,0.41485506,0.54330939,0.034184813,0,59815.49644,50800,0.455342149,0.20852247,0.23832178,0.24693528,0.22474484,0.081475675,0.017471246,0.003281706,0.000710476,7.05E-05
Clarion University Of Pennsylvania,5,Selective public,1,1,PA,42031,Clarion,0.6134454,0.62836319,0.010521275,0,84457.06468,75500,0.586859582,0.075623177,0.14226678,0.26054302,0.30919233,0.21237472,0.07571765,0.027025154,0.001976739,0.000184674
Clark Atlanta University,6,Selective private,1,3,GA,13121,Fulton,0.71659267,0.19444919,0.033000425,0.001236012,74033.14395,54500,0.49007356,0.17830929,0.23744145,0.22206387,0.17288803,0.18929723,0.085837424,0.027889255,0.003107512,0.000434178
Clark College,9,Two-year (public and private not-for-profit),2,4,WA,53011,Clark,0.53063023,0.54283333,0.01020667,0.000417579,93273.28773,82100,0.608837282,0.075429775,0.13185968,0.21174413,0.33225536,0.24871109,0.091145031,0.038674019,0.004959137,0.000889964
Clark State Community College,9,Two-year (public and private not-for-profit),2,2,OH,39023,Clark,0.59944749,0.51481026,0.00884233,0,71638.21039,66100,0.524688993,0.13012069,0.18895891,0.25450805,0.29512787,0.13128437,0.040498339,0.008004904,0.002991756,0.000187836
Clark University,4,Highly selective private,1,1,MA,25027,Worcester,0.61378205,0.51991743,0.022418769,0.001641466,176605.0442,103000,0.70936188,0.05281157,0.096697249,0.1681546,0.23460267,0.44773394,0.29547572,0.18150261,0.050328232,0.005133561
Clarke University,6,Selective private,1,2,IA,19061,Dubuque,0.72812498,0.71658003,0.034456961,9.01E-05,95361.0026,75700,0.621402522,0.070276625,0.11714609,0.25313917,0.31832796,0.24111019,0.090696119,0.044284381,0.009949823,0.0001292
Clarkson University,6,Selective private,1,1,NY,36089,St Lawrence,0.2659511,0.67122161,0.029669976,0.000623622,121016.7813,94600,0.665297642,0.055987392,0.11307572,0.18074469,0.27866876,0.37152347,0.18589994,0.078789555,0.010683599,0.001868988
Clatsop Community College,9,Two-year (public and private not-for-profit),2,4,OR,41007,Clatsop,0.56106871,0.50324523,0.010094148,1.42E-05,67825.03646,59000,0.501170208,0.14178185,0.20942852,0.26683533,0.24823126,0.13372298,0.039899025,0.023983246,0.000505221,0.000144064
Clayton State University,5,Selective public,1,3,GA,13063,Clayton,0.60470456,0.50633097,0.015449493,0.000569924,85736.66754,77600,0.581022268,0.098921984,0.16441631,0.20813501,0.28989947,0.23862727,0.082062908,0.02893699,0.002273384,8.50E-06
Clearwater Christian College,6,Selective private,1,3,FL,12103,Pinellas,0.53024912,0.7628969,0.00808674,0.000136745,108308.4271,64300,0.557067732,0.077094264,0.17901418,0.26648182,0.24407075,0.23333904,0.085947797,0.052664485,0.007132526,0.002539333
Clemson University,3,Highly selective public,1,3,SC,45077,Pickens,0.47578016,0.68194026,0.012014057,0.000240175,167040.6807,120200,0.753945141,0.031747334,0.066345565,0.11962822,0.22191879,0.56036019,0.33743089,0.17781831,0.030593092,0.00234562
Cleveland Community College,9,Two-year (public and private not-for-profit),2,3,NC,37045,Cleveland,0.56821191,0.44786841,0.014537858,0,60836.8195,49600,0.444558212,0.20315419,0.25279492,0.22517844,0.24744414,0.071428262,0.026270626,0.013666751,0.000674747,3.41E-05
Cleveland Institute Of Dental - Medical Assistants,12,Less than two-year schools of any type,3,2,OH,39085,Lake,0.969697,0.26681754,0,0,45757.71354,42600,0.351591994,0.27978602,0.30373317,0.2547034,0.11194003,0.049837478,0.025448628,0.005103499,0.00094833,0.000313504
Cleveland State Community College,9,Two-year (public and private not-for-profit),2,3,TN,47011,Bradley,0.53702319,0.58411217,0.016037308,7.98E-05,68400.9173,64700,0.513956028,0.13267526,0.20583236,0.24900021,0.28720826,0.12528405,0.034824584,0.010403262,0.000423755,2.52E-05
Cleveland State University,5,Selective public,1,2,OH,39035,Cuyahoga,0.52163607,0.48733816,0.016072698,0.000605989,83517.16677,72700,0.559369506,0.1086647,0.17408119,0.23316422,0.28712153,0.19696833,0.079615891,0.032019157,0.006071628,1.21E-05
Clinton Community College - SUNY Office Of Community Colleges,9,Two-year (public and private not-for-profit),2,1,NY,36019,Clinton,0.51851851,0.4639703,0.014248387,4.60E-05,72551.91743,62800,0.50166685,0.14520653,0.21739082,0.24346545,0.27046546,0.12347177,0.040390141,0.016141806,0.003370371,0.000924759
Cloud County Community College,9,Two-year (public and private not-for-profit),2,2,KS,20029,Cloud,0.55075848,0.51787478,0.010864627,3.14E-05,60092.88543,54200,0.455038094,0.15881728,0.22735378,0.3235521,0.22677726,0.063499555,0.020666271,0.009041394,0.000976423,0.000134309
Clover Park Technical College,9,Two-year (public and private not-for-profit),2,4,WA,53053,Pierce,0.5750916,0.41616434,0.010678563,1.13E-06,72370.83723,65300,0.522421868,0.14598779,0.19124655,0.23525259,0.26727206,0.16024105,0.048287891,0.014830164,0.000103167,3.15E-05
Clovis Community College,9,Two-year (public and private not-for-profit),2,4,NM,35009,Curry,0.5778302,0.51016891,0.025265463,0.000802748,53957.48672,44300,0.402651917,0.24661276,0.26642078,0.25262833,0.16319704,0.071141012,0.03143964,0.015287637,0.001214501,7.84E-05
Coast Community College District,9,Two-year (public and private not-for-profit),2,4,CA,6059,Orange,0.48081729,0.43207157,0.033638272,0.000437195,101057.1973,72800,0.559872269,0.16203935,0.16135868,0.18049389,0.20913832,0.28696984,0.14830817,0.066935636,0.010915638,0.001177313
Coastal Carolina Community College,9,Two-year (public and private not-for-profit),2,3,NC,37133,Onslow,0.51239365,0.5316841,0.023259424,9.49E-06,66498.19622,56700,0.475464869,0.17013389,0.21128128,0.28747547,0.23458347,0.096525773,0.032529894,0.016013015,0.002698914,0
Coastal Carolina University,5,Selective public,1,3,SC,45051,Horry,0.55079985,0.54325742,0.010405573,4.02E-06,120509.9386,91500,0.652506581,0.067513563,0.13130477,0.1758745,0.25701094,0.36829633,0.18644127,0.088090666,0.016635459,0.001266891
Cochise College,9,Two-year (public and private not-for-profit),2,4,AZ,4003,Cochise,0.51464844,0.48535725,0.029472644,0.000463311,60835.64143,51600,0.445704891,0.22349018,0.22674364,0.23838164,0.20233694,0.10904758,0.031299457,0.004824644,0.000503636,5.76E-06
Coconino County Community College,9,Two-year (public and private not-for-profit),2,4,AZ,4005,Coconino,0.52623904,0.48100784,0.013590458,0,85217.23153,68500,0.545450427,0.13289244,0.18134919,0.22814083,0.25916609,0.19845158,0.07971748,0.035686597,0.004672281,9.91E-06
Coe College,6,Selective private,1,2,IA,19113,Linn,0.57014155,0.66688877,0.015621743,0.001395568,138284.5279,90600,0.661584106,0.040683456,0.11318737,0.23224337,0.29368871,0.32019717,0.15420727,0.075759061,0.015752088,0.001462684
Coffeyville Community College,9,Two-year (public and private not-for-profit),2,2,KS,20125,Montgomery,0.375,0.45469144,0.039232817,0.004593531,52326.55859,40700,0.370831599,0.28458995,0.2977764,0.23506035,0.12213672,0.060436662,0.012776034,0.00445894,0.001209564,0.000142193
Coker College,6,Selective private,1,3,SC,45031,Darlington,0.59203982,0.54939586,0.012170363,3.45E-05,78650.54427,59000,0.516442875,0.097994193,0.24429621,0.25406179,0.24380103,0.15984683,0.064547181,0.020393671,0.002003074,0.000314255
Colby College,2,Other elite schools (public and private),1,1,ME,23011,Kennebec,0.54915255,0.61660719,0.00903765,0.001988733,418072.8775,208700,0.849585997,0.014857688,0.039035626,0.076881126,0.12354537,0.74568021,0.62598133,0.49980685,0.18335766,0.026146624
Colby Community College,9,Two-year (public and private not-for-profit),2,2,KS,20193,Thomas,0.50974661,0.64581424,0.019100532,9.90E-06,63084.84336,57600,0.474771045,0.13050967,0.22347587,0.34167796,0.22044569,0.083890751,0.02079365,0.007234866,0.001554736,0.000188486
Colby-Sawyer College,6,Selective private,1,1,NH,33013,Merrimack,0.64620358,0.59457123,0.009923109,0,170401.6362,99400,0.694896769,0.039272387,0.09492369,0.17323528,0.26376909,0.42879963,0.2549797,0.16083795,0.03361354,0.004806697
Colgate University,2,Other elite schools (public and private),1,1,NY,36053,Madison,0.51829267,0.61718601,0.008740681,0.001002786,522975.6131,208900,0.840636927,0.02392368,0.05331241,0.069005579,0.12226261,0.73149574,0.62212026,0.50260758,0.19767268,0.031047979
College For Creative Studies,8,Nonselective four-year private not-for-profit,1,2,MI,26163,Wayne,0.40899795,0.45507818,0.010717616,0.000156455,145763.0598,98300,0.693112255,0.059223983,0.11108849,0.15318292,0.26048768,0.41601694,0.22635365,0.12110811,0.022038925,0.002034883
College Of Central Florida,7,Nonselective four-year public,1,3,FL,12083,Marion,0.57021677,0.46871647,0.019528002,0,70597.18126,54100,0.461252599,0.21211888,0.2275358,0.25114715,0.18699209,0.12220605,0.052942168,0.025881391,0.006168224,0.000301464
College Of Charleston,5,Selective public,1,3,SC,45019,Charleston,0.64691269,0.56692559,0.009531893,0.000377725,208335.5537,119500,0.745286166,0.042147186,0.076594882,0.12889944,0.21106282,0.54129571,0.36992398,0.22850154,0.052666549,0.006361202
College Of Coastal Georgia,7,Nonselective four-year public,1,3,GA,13127,Glynn,0.61513424,0.48560932,0.015464905,4.23E-06,70369.78359,64400,0.508996397,0.17309459,0.18155211,0.22087254,0.2764118,0.14806904,0.044324584,0.018003503,0.001756689,9.55E-05
College Of Du Page,9,Two-year (public and private not-for-profit),2,2,IL,17043,Dupage,0.48780784,0.44728529,0.012644388,0.000377458,104929.1552,85900,0.617568211,0.096004002,0.13891931,0.18320844,0.25994062,0.32192761,0.14954916,0.06170309,0.008706776,0.000875858
College Of Health Care Professions ,11,Two-year for-profit,2,3,TX,48201,Harris,0.77990431,0.23214878,0.019838,0.000182195,44729.16927,35200,0.32288608,0.33329287,0.34103608,0.17543249,0.093687885,0.056550581,0.017361775,0.004243557,0.00125209,0.000256403
College Of Idaho ,6,Selective private,1,4,ID,16027,Canyon,0.55084747,0.61751211,0.019359518,1.70E-05,123050.638,92200,0.658025702,0.055966828,0.11480243,0.16587767,0.30458394,0.35876918,0.18803561,0.085276835,0.020880312,0.002421992
College Of Lake County,9,Two-year (public and private not-for-profit),2,2,IL,17097,Lake,0.51840556,0.46586972,0.012542963,0.000199099,109431.4581,88400,0.635388672,0.07924813,0.12906039,0.17140654,0.29298246,0.32730255,0.1441053,0.057223607,0.010406517,0.00143757
College Of Marin,9,Two-year (public and private not-for-profit),2,4,CA,6041,Marin,0.44603902,0.29013917,0.017165836,0.000445655,118352.0524,82000,0.612647365,0.11661103,0.15394269,0.17459628,0.19701596,0.35783404,0.20684277,0.10949881,0.016893512,0.001648017
College Of Mount Saint Joseph,6,Selective private,1,2,OH,39061,Hamilton,0.65529013,0.67195117,0.004574945,6.71E-05,133300.6563,88500,0.652254934,0.05449371,0.11080777,0.20276622,0.3223272,0.30960518,0.12424248,0.063020915,0.013442523,0.001111823
College Of Mount Saint Vincent And Manhattan College,6,Selective private,1,1,NY,36005,Bronx,0.55054152,0.49549633,0.057835598,0.001726041,130125.5443,94800,0.655511717,0.092331685,0.12273066,0.1627875,0.20089154,0.42125863,0.25929117,0.12303515,0.017379981,0.002050502
College Of New Jersey ,2,Other elite schools (public and private),1,1,NJ,34021,Mercer,0.59034556,0.63029325,0.018082317,0.001065613,140408.1488,122300,0.758883569,0.036272641,0.062041439,0.10108942,0.22230923,0.57828724,0.31344151,0.1112533,0.00992845,0.000905341
College Of New Rochelle ,6,Selective private,1,1,NY,36119,Westchester,0.9009009,0.23871805,0.028672865,9.64E-06,53121.07918,40400,0.394423561,0.241118,0.32449472,0.22666998,0.11087433,0.096842945,0.033545151,0.008086347,9.69E-05,1.01E-05
College Of Our Lady Of The Elms,6,Selective private,1,1,MA,25013,Hampden,0.72125435,0.65567285,0.018826811,7.91E-06,91490.27621,87500,0.627638854,0.086761922,0.10652539,0.19059598,0.38091981,0.23519698,0.093004659,0.045675647,0.008440443,0.000144813
College Of Saint Benedict,6,Selective private,1,2,MN,27145,Stearns,0.99776119,0.73596156,0.012409491,0,150242.8078,106800,0.724667608,0.025961448,0.063894019,0.17123456,0.26447335,0.47443658,0.26912868,0.14863127,0.02550045,0.002364506
College Of Saint Elizabeth,6,Selective private,1,1,NJ,34027,Morris,0.99157304,0.50174236,0.025033178,0,97344.61196,75200,0.580176369,0.094434507,0.20053658,0.19070074,0.19928262,0.3150456,0.14953534,0.081654504,0.005528303,0.000297859
College Of Saint Rose,6,Selective private,1,1,NY,36001,Albany,0.74279213,0.65088898,0.017303271,0.000686197,100367.322,91000,0.652090781,0.059194759,0.11862616,0.17082673,0.30025363,0.35109872,0.13040023,0.043664835,0.006025223,8.91E-05
College Of Saint Scholastica,6,Selective private,1,2,MN,27137,St Louis,0.73363096,0.70403069,0.021893101,1.38E-05,102990.1563,87700,0.652348936,0.045562282,0.10882609,0.2194759,0.32592124,0.30021447,0.13052832,0.070173778,0.006713565,0.000330702
College Of Southern Idaho,9,Two-year (public and private not-for-profit),2,4,ID,16083,Twin Falls,0.54457104,0.63068783,0.01153981,3.03E-05,65010.28156,56900,0.487510446,0.13033275,0.23137349,0.29966161,0.22825786,0.11037432,0.046145007,0.019508861,0.000513683,0.00014451
College Of Southern Maryland,9,Two-year (public and private not-for-profit),2,3,MD,24017,Charles,0.57997823,0.51053333,0.013362688,3.23E-05,96132.38765,90600,0.64191021,0.071568117,0.10951754,0.18895698,0.29381236,0.33614495,0.12893045,0.032872524,0.002245141,0.000114722
College Of Southern Nevada,7,Nonselective four-year public,1,4,NV,32003,Clark,0.52703053,0.41334799,0.015094155,0.00043524,83522.43611,66800,0.540362138,0.12047299,0.20458537,0.23312953,0.24625783,0.19555433,0.078428306,0.030718517,0.005300588,0.000695738
College Of Staten Island/CUNY,5,Selective public,1,1,NY,36085,Richmond,0.51493633,0.44264865,0.041348025,0.000988963,85456.88344,73500,0.559001982,0.14325194,0.16776149,0.18993238,0.24679071,0.2522634,0.094745539,0.027209453,0.00354558,0.000255783
College Of The Albemarle,9,Two-year (public and private not-for-profit),2,3,NC,37139,Pasquotank,0.62595421,0.42844048,0.004530654,0,63908.70497,52000,0.445905745,0.21489429,0.21641408,0.27693811,0.2022182,0.089535385,0.038269587,0.016487971,0.00386806,8.27E-05
College Of The Canyons,9,Two-year (public and private not-for-profit),2,4,CA,6037,Los Angeles,0.47413486,0.45758101,0.015793353,0.000553013,103185.4909,88200,0.62994083,0.093080953,0.12606144,0.18340333,0.24463084,0.35282332,0.1700044,0.057685614,0.007720616,0.000171235
College Of The Desert,9,Two-year (public and private not-for-profit),2,4,CA,6065,Riverside,0.50893742,0.40106046,0.032123238,0,59464.92465,44900,0.427019709,0.24684334,0.26989532,0.2015015,0.16153598,0.1202239,0.053923298,0.018760389,0.003540158,0.000503876
College Of The Holy Cross,2,Other elite schools (public and private),1,1,MA,25027,Worcester,0.51899999,0.6485858,0.010001441,0.001023609,294562.2806,157000,0.818728425,0.020545233,0.048574306,0.079342745,0.15432552,0.69721222,0.52730381,0.3583867,0.10860765,0.011347651
College Of The Mainland,9,Two-year (public and private not-for-profit),2,3,TX,48167,Galveston,0.56650245,0.45113516,0.020746801,0,75046.44954,68700,0.536970953,0.15082945,0.2048215,0.1740877,0.25834122,0.21192008,0.052997395,0.014798854,0.001831741,6.13E-05
College Of The Ouachitas,9,Two-year (public and private not-for-profit),2,3,AR,5059,Hot Spring,0.55911332,0.47396234,0.004765618,0,61094.48576,53000,0.459162892,0.16971281,0.23047271,0.29314211,0.2154908,0.091181673,0.020414777,0.003982067,0.001818698,7.10E-05
College Of The Ozarks,6,Selective private,1,2,MO,29213,Taney,0.54233408,0.68581057,0.033171967,2.87E-05,58892.23307,49200,0.417234292,0.17934622,0.27624997,0.32153812,0.17236081,0.050504897,0.014118537,0.007333142,0.001546108,0.000325569
College Of The Redwoods,9,Two-year (public and private not-for-profit),2,4,CA,6023,Humboldt,0.50093925,0.42711225,0.014106999,0.000645648,71567.55342,59900,0.487497999,0.18767489,0.19158393,0.23813036,0.23134689,0.15126392,0.062923089,0.031249629,0.003208401,0.00039365
College Of The Sequoias,9,Two-year (public and private not-for-profit),2,4,CA,6107,Tulare,0.50623345,0.47901785,0.025295895,2.51E-05,66608.21153,51500,0.45487847,0.21755768,0.22784069,0.22809505,0.19063759,0.135869,0.045900196,0.016133817,0.002863494,4.41E-05
College Of The Siskiyous,9,Two-year (public and private not-for-profit),2,4,CA,6093,Siskiyou,0.39806762,0.49926093,0.019861612,7.86E-05,85761.7108,57500,0.484808919,0.1895545,0.21313694,0.23229018,0.21952465,0.14549366,0.048606142,0.025321662,0.003837296,0.000939711
College Of Westchester ,10,Four-year for-profit,1,1,NY,36119,Westchester,0.46590909,0.33266377,0.038551867,0.000106698,73597.45313,55800,0.474097113,0.19217539,0.2375447,0.20805347,0.16598889,0.19623764,0.064529143,0.029856982,0.004466952,0.000225191
College Of William & Mary,2,Other elite schools (public and private),1,3,VA,51830,Williamsburg City,0.5740416,0.61055648,0.005236037,0.000210615,208657.8585,147100,0.818497437,0.013460711,0.042123187,0.080365479,0.16588438,0.69816625,0.48023704,0.27825558,0.044547305,0.003979304
College Of Wooster ,6,Selective private,1,2,OH,39169,Wayne,0.52025419,0.59345227,0.007071152,0,169626.4079,108100,0.736237135,0.035116892,0.06419158,0.14649259,0.27498916,0.47920984,0.29682791,0.17825384,0.035055626,0.00214521
CollegeAmerica Denver,8,Nonselective four-year private not-for-profit,1,4,CO,8031,Denver,0.65863454,0.34217453,0.021143179,0.003761126,54268.69577,43500,0.414347134,0.23756598,0.27929035,0.25257477,0.17841189,0.052157044,0.020869464,0.014255309,0.004083242,8.45E-05
Collin County Community College,9,Two-year (public and private not-for-profit),2,3,TX,48085,Collin,0.48714635,0.51081228,0.008677235,0.000278922,117859.7836,95000,0.662608023,0.067232974,0.12475233,0.1634022,0.25399324,0.39061922,0.20635456,0.091145165,0.010180939,0.001039279
Colorado Christian University,6,Selective private,1,4,CO,8059,Jefferson,0.60382515,0.79574049,0.003553036,8.79E-05,156218.599,98600,0.688643952,0.041456532,0.11167874,0.16644271,0.26581562,0.41460654,0.26839483,0.14202751,0.032360364,0.005255117
Colorado College,4,Highly selective private,1,4,CO,8041,El Paso,0.55709571,0.55171168,0.018225832,0.002691631,344930.6795,154600,0.776341993,0.048108205,0.079629481,0.11831924,0.14019668,0.6137464,0.5159601,0.38977557,0.13256186,0.013901605
Colorado Mesa University,5,Selective public,1,4,CO,8077,Mesa,0.52169424,0.60787284,0.020071208,0.000670998,91094.41488,75800,0.585725208,0.088197485,0.15079653,0.24495435,0.27533349,0.24071822,0.099381402,0.0476068,0.005530362,2.87E-05
Colorado Mountain College,7,Nonselective four-year public,1,4,CO,8045,Garfield,0.45199817,0.43789586,0.01090023,0.000549187,125855.6803,79400,0.612938909,0.093963735,0.14144784,0.21918905,0.22183007,0.32356939,0.1841737,0.10773876,0.022231832,0.002307274
Colorado Northwestern Community College,9,Two-year (public and private not-for-profit),2,4,CO,8103,Rio Blanco,0.44666088,0.6166445,0.019090416,0.001759274,78010.27746,72900,0.551433,0.095909372,0.17772651,0.22943904,0.34864655,0.14827865,0.043543801,0.023051003,0.003819248,0.000203725
Colorado School Of Mines,3,Highly selective public,1,4,CO,8059,Jefferson,0.25325522,0.69109714,0.024911636,0.002558496,138417.319,111500,0.72785661,0.038899351,0.071553119,0.15060279,0.24013722,0.49880755,0.282107,0.14269727,0.014936082,0.000789954
Colorado State University,5,Selective public,1,4,CO,8069,Larimer,0.52779895,0.62975681,0.011196307,0.000249791,167637.0132,115400,0.742263802,0.031607941,0.073101088,0.13832285,0.23086205,0.52610612,0.31739771,0.17442866,0.035559274,0.003065477
Colorado State University-Pueblo,5,Selective public,1,4,CO,8101,Pueblo,0.54809618,0.56463993,0.024855316,7.45E-05,85255.34115,72300,0.567654669,0.102222,0.16089502,0.24699435,0.28906602,0.20082262,0.089070231,0.031078573,0.005446903,0.000915024
Colorado Technical University,10,Four-year for-profit,1,4,CO,8041,El Paso,0.57797581,0.49450436,0.017387966,4.54E-05,63589.87501,52300,0.458856697,0.19730598,0.2329668,0.26529211,0.196504,0.10793117,0.034585755,0.01215734,0.00238366,0.000154383
Columbia - Greene Community College - SUNY Office Of Cmnty Colleg,9,Two-year (public and private not-for-profit),2,1,NY,36021,Columbia,0.52782464,0.43860149,0.021880884,0.001106675,73355.76563,64600,0.51217262,0.15452711,0.18085152,0.25674975,0.26068652,0.14718509,0.046537843,0.019821504,0.001487528,0.000283633
Columbia Basin College,7,Nonselective four-year public,1,4,WA,53021,Franklin,0.49836707,0.58218116,0.017361954,4.26E-05,89138.51078,77500,0.585959335,0.10458976,0.13586327,0.2143532,0.3048442,0.24034959,0.070818998,0.022380617,0.00248441,0.000537699
Columbia College of Chicago - IL,6,Selective private,1,2,IL,17031,Cook,0.48874396,0.34840989,0.009500749,4.21E-05,133648.8095,85100,0.618293351,0.10289799,0.14294088,0.17858079,0.2213542,0.35422614,0.20206566,0.10622145,0.022456542,0.003739114
Columbia College of Columbia - MO,6,Selective private,1,2,MO,29019,Boone,0.60445434,0.53231281,0.017756516,3.66E-06,79430.47413,61700,0.518744104,0.14413707,0.20893718,0.23621456,0.23397161,0.17673947,0.075435422,0.033697121,0.007149436,0.00046995
Columbia College of Columbia - SC,6,Selective private,1,3,SC,45079,Richland,0.99276859,0.51905644,0.013072638,0.000120997,87105.71192,62600,0.529043361,0.14573449,0.2237718,0.20245445,0.22914207,0.19889729,0.074636839,0.032268789,0.011965712,0.000290006
Columbia Gorge Community College,9,Two-year (public and private not-for-profit),2,4,OR,41065,Wasco,,0.46714813,0.015939707,7.88E-05,64630.11849,59100,0.471863538,0.14293604,0.21202205,0.3338607,0.24277286,0.068408355,0.027517512,0.012086757,0.003043773,0.0001292
Columbia International University,8,Nonselective four-year private not-for-profit,1,3,SC,45079,Richland,0.68398267,0.7925958,0.001409322,0,75192.91667,71700,0.554689586,0.1183475,0.18252639,0.20503925,0.27154189,0.22254497,0.10484836,0.011430644,0.001488622,0.00035109
Columbia State Community College,9,Two-year (public and private not-for-profit),2,3,TN,47119,Maury,0.58751351,0.57550788,0.009880749,0.000307754,82924.71683,74300,0.568541282,0.10548632,0.15614679,0.23521098,0.30136684,0.20178908,0.079742916,0.028155498,0.004596819,3.34E-05
Columbia University In The City Of New York,1,Ivy Plus,1,1,NY,36061,New York,0.45593357,0.52451259,0.030735934,0.007503281,372277.2722,169600,0.795071616,0.050208129,0.061156154,0.092937693,0.12840004,0.66729796,0.54871309,0.42415187,0.13680275,0.018464794
Columbus College Of Art & Design,8,Nonselective four-year private not-for-profit,1,2,OH,39049,Franklin,0.4826884,0.4686285,0.015975298,2.27E-05,102307.4688,81800,0.634576877,0.062556893,0.13709559,0.22012573,0.25243863,0.3277832,0.14253858,0.066767119,0.006868139,0.00023387
Columbus State Community College,9,Two-year (public and private not-for-profit),2,2,OH,39049,Franklin,0.51594818,0.47217727,0.009728084,0.000174772,89415.25685,72400,0.567736481,0.098598473,0.17389259,0.2391189,0.27889007,0.20950001,0.091765888,0.042265076,0.006308322,0.000518343
Columbus State University,5,Selective public,1,3,GA,13215,Muscogee,0.60912865,0.51240695,0.017842893,6.41E-06,89221.06939,72600,0.565471113,0.1078043,0.16830747,0.24095219,0.27190742,0.21102872,0.093158782,0.042516053,0.007443908,0.000446714
Columbus Technical College,9,Two-year (public and private not-for-profit),2,3,GA,13215,Muscogee,0.59583336,0.33931795,0.007759768,2.54E-05,57362.82624,41500,0.399661755,0.26603284,0.26922035,0.22489248,0.16596992,0.07388445,0.028937766,0.01030395,0.003241777,0.000104258
Community College Of Allegheny County,9,Two-year (public and private not-for-profit),2,1,PA,42003,Allegheny,0.4963274,0.43519601,0.011950014,0.000245563,78478.31131,66100,0.529962596,0.13463691,0.18032309,0.2478801,0.27353019,0.16362979,0.062057123,0.025934458,0.003844998,0.000234055
Community College Of Baltimore County,9,Two-year (public and private not-for-profit),2,3,MD,24005,Baltimore,0.55088443,0.40068832,0.016488396,0.000281502,90746.70168,71600,0.558782307,0.11790532,0.18779255,0.20904341,0.26076245,0.22449632,0.08698643,0.03378721,0.005181825,0.000555424
Community College Of Beaver County,9,Two-year (public and private not-for-profit),2,1,PA,42007,Beaver,0.46394232,0.48039693,0.008128308,6.09E-05,76014.9375,68500,0.53282241,0.13399538,0.17076781,0.2582626,0.2778033,0.15917102,0.048723236,0.016768228,0.000659608,0.0001292
Community College Of Philadelphia,9,Two-year (public and private not-for-profit),2,1,PA,42101,Philadelphia,0.57937425,0.28508392,0.028465066,0.000277825,56646.52372,43600,0.415037173,0.24111739,0.27810359,0.21344247,0.17350039,0.093835972,0.026494194,0.006881136,0.001368385,0.000249051
Community College Of Rhode Island,9,Two-year (public and private not-for-profit),2,1,RI,44003,Kent,0.48617223,0.3888644,0.015341016,0.000199762,74518.00587,64600,0.514118888,0.15742569,0.18458149,0.23744279,0.25825596,0.16229405,0.056340825,0.020580074,0.004059789,0.000210792
Concord University,5,Selective public,1,3,WV,54055,Mercer,0.56819695,0.60822612,0.01432975,0.00129336,75027.8998,66800,0.524803152,0.12968643,0.18215518,0.26088542,0.28183258,0.14544044,0.043560252,0.017236361,0.002435885,0.000624375
Concordia College - Moorhead,6,Selective private,1,2,MN,27027,Clay,0.61357564,0.7211116,0.013580244,0.00207243,118527.4562,86400,0.651015287,0.045202877,0.11051361,0.22843057,0.31054702,0.30530593,0.15861043,0.085293911,0.020209355,0.001044814
Concordia University - Saint Paul,6,Selective private,1,2,MN,27123,Ramsey,0.54382825,0.65818667,0.017048677,0,92246.76324,77900,0.605192686,0.076551579,0.13406472,0.23786752,0.31487626,0.23663987,0.10814564,0.055633318,0.008807832,0.0003964
Concordia University - Wisconsin,6,Selective private,1,2,WI,55089,Ozaukee,0.57678783,0.70293367,0.008185218,4.51E-05,92678.25979,79300,0.617985299,0.054974683,0.12193414,0.26204863,0.32316548,0.2378771,0.098561145,0.029886371,0.007881121,6.91E-05
Concordia University Texas,6,Selective private,1,3,TX,48453,Travis,0.49756098,0.69025499,0.012233841,0.003331974,112917.8802,91300,0.642608424,0.053078007,0.09964893,0.21708342,0.34769833,0.28249124,0.14843366,0.049136676,0.015256582,0.0001292
Concordia University of Irvine - CA,6,Selective private,1,4,CA,6059,Orange,0.66500831,0.64912969,0.014180595,0.000157279,131138.3081,94000,0.666680317,0.054093983,0.10939102,0.21430151,0.23255028,0.38966319,0.21540028,0.11358805,0.021736369,6.36E-05
Concordia University of Portland - OR,6,Selective private,1,4,OR,41051,Multnomah,0.66467065,0.68295842,0.008752621,0,102064.7883,88400,0.645239097,0.020543464,0.16914535,0.1694153,0.38077527,0.26012048,0.14058912,0.073348328,0.012667838,5.11E-05
Concordia University of River Forest - IL,6,Selective private,1,2,IL,17031,Cook,0.64006257,0.69645548,0.007672153,0,98720.00335,86300,0.637220127,0.047088619,0.12322174,0.20187871,0.35029438,0.27751663,0.11508046,0.043349113,0.006133644,8.64E-05
Concordia University of Seward - NE,6,Selective private,1,2,NE,31159,Seward,0.55400252,0.78544164,0.007025959,0,86492.41058,75500,0.603925692,0.040935021,0.13092634,0.32094264,0.27265096,0.2345451,0.085780405,0.038805742,0.002259966,0
Connecticut College,2,Other elite schools (public and private),1,1,CT,9011,New London,0.59548753,0.5768404,0.015796896,0.001602059,417732.294,170500,0.803398233,0.031054907,0.060571387,0.082687154,0.14583586,0.6798507,0.53634197,0.41683662,0.13932349,0.023389585
Connors State College,9,Two-year (public and private not-for-profit),2,3,OK,40101,Muskogee,0.59818184,0.51402336,0.02265805,8.26E-05,56276.33401,49000,0.438062919,0.20629695,0.2486053,0.25967634,0.21078365,0.074637614,0.01722743,0.0092805,0.001098548,5.93E-05
Conservatory Of Recording Arts & Sciences,12,Less than two-year schools of any type,3,4,AZ,4013,Maricopa,0.084677421,0.43267623,0.021747004,0.000189508,95241.25,76800,0.630222619,0.073527955,0.14341538,0.21051347,0.29916105,0.27338201,0.15761475,0.064809196,0.002443991,0.000418928
Contra Costa Community College District,9,Two-year (public and private not-for-profit),2,4,CA,6013,Contra Costa,0.48887244,0.40162104,0.017630978,0.00062228,108743.3619,85400,0.621625185,0.096791759,0.12763196,0.19278003,0.24187419,0.34092206,0.1643429,0.068096958,0.007849265,0.000841476
Converse College,6,Selective private,1,3,SC,45083,Spartanburg,0.99310344,0.64285815,0.006902115,0,122906.4332,93000,0.645071457,0.078901567,0.13417879,0.14902301,0.29231662,0.34558004,0.19104499,0.1199064,0.025238751,0.000180198
Cooper Union For The Advancement Of Science & Art ,2,Other elite schools (public and private),1,1,NY,36061,New York,0.35946462,0.46624222,0.04277638,0.005803276,143460.5724,110100,0.690203004,0.082825214,0.091849178,0.13973799,0.19441965,0.49116802,0.31169438,0.16766047,0.026050696,0.002050637
Copiah-Lincoln Community College,9,Two-year (public and private not-for-profit),2,3,MS,28029,Copiah,0.55722177,0.4308928,0.032753877,5.39E-05,55632.91146,41400,0.392182499,0.31810239,0.22323956,0.18235615,0.17970505,0.096596926,0.033690665,0.013459885,0.000981016,0.000237659
Copper Mountain College,9,Two-year (public and private not-for-profit),2,4,CA,6071,San Bernardino,0.47808358,0.50784194,0.038822509,0.000101008,67192.23472,50100,0.443196093,0.22266489,0.22673079,0.24785413,0.19401127,0.10873893,0.032154974,0.015801111,0.002725871,0.000184531
Corban University,6,Selective private,1,4,OR,41047,Marion,0.60243905,0.77762383,0.004716359,1.72E-05,106438.4746,79000,0.627553645,0.045662422,0.14067928,0.27598587,0.30331001,0.23436241,0.13034563,0.066577472,0.009784765,0.000288353
Cornell College,6,Selective private,1,2,IA,19113,Linn,0.61764705,0.62191403,0.008709464,0.000217246,117782.6172,91800,0.648050606,0.035137136,0.11407667,0.19764473,0.27972785,0.37341356,0.19515041,0.077667899,0.017447721,0.0001292
Cornell University,1,Ivy Plus,1,1,NY,36109,Tompkins,0.48373455,0.5826292,0.029070236,0.005072356,279239.9712,143300,0.769540584,0.048977412,0.072817601,0.10707949,0.15052344,0.62060207,0.47702715,0.32325426,0.091139019,0.011417026
Cornerstone University,6,Selective private,1,2,MI,26081,Kent,0.6169045,0.77100056,0.003296471,5.69E-05,115400.1175,84200,0.638633271,0.03950521,0.10126104,0.26443106,0.32282367,0.27197888,0.12386038,0.070912965,0.019258292,0.002266984
Corning Community College - SUNY Office Of Community Colleges,9,Two-year (public and private not-for-profit),2,1,NY,36101,Steuben,0.5078631,0.51147038,0.015082307,0,74179.11331,65200,0.517803377,0.12722814,0.19080108,0.26901123,0.27439618,0.13856344,0.051055048,0.014965059,0.00093995,0.00013591
Cornish College Of The Arts,8,Nonselective four-year private not-for-profit,1,4,WA,53033,King,0.60765553,0.35447565,0.008419852,0,151934.4375,89700,0.660594225,0.066521227,0.12842989,0.18940118,0.28479889,0.33084872,0.18307002,0.091150999,0.029220195,0.008742031
Cossatot Community College Of The University Of Arkansas,9,Two-year (public and private not-for-profit),2,3,AR,5133,Sevier,0.55000001,0.53676403,0.029480916,2.38E-05,51799.03026,40800,0.379394626,0.31473413,0.24718723,0.24271932,0.14132914,0.05403031,0.017472632,0.010381208,0.002284611,0.000123557
County College Of Morris,9,Two-year (public and private not-for-profit),2,1,NJ,34027,Morris,0.43718079,0.42910743,0.01101199,9.24E-05,117864.2682,101100,0.688787897,0.059250757,0.10088412,0.16079247,0.2514365,0.42763609,0.2142317,0.089168251,0.00810419,0.00106137
Covenant College,6,Selective private,1,3,GA,13083,Dade,0.60194176,0.7339108,0.021523731,0.001523727,146452.9559,86400,0.655299632,0.072564371,0.093668833,0.20043299,0.27603054,0.35730332,0.23916499,0.1667107,0.03555816,0.001802548
Cowley County Community College & Area Vocational Technical Schoo,9,Two-year (public and private not-for-profit),2,2,KS,20035,Cowley,0.5436573,0.55221409,0.010186591,0.000395888,78036.83514,75300,0.575306346,0.089429468,0.14139692,0.24212906,0.35125604,0.17578863,0.051368073,0.010170205,0.002139448,2.38E-05
Coyne College,11,Two-year for-profit,2,2,IL,17031,Cook,0.069196425,0.26246592,0.041875269,0,57621.94106,44200,0.402556861,0.21289909,0.31350079,0.27760139,0.13411343,0.061885417,0.026822397,0.013208147,0.002565506,0.000208203
Craven Community College,9,Two-year (public and private not-for-profit),2,3,NC,37049,Craven,0.47881356,0.50133586,0.024627035,0,64038.11858,57200,0.477570464,0.18641794,0.2047611,0.24147692,0.25879073,0.10855323,0.037904456,0.013534523,0.001157058,6.56E-05
Creighton University,6,Selective private,1,2,NE,31055,Douglas,0.60164833,0.67006105,0.016024692,0.000979937,184670.776,119200,0.760402838,0.029984152,0.077279329,0.12120094,0.2338528,0.53768265,0.37280264,0.24534911,0.054313846,0.002308143
Crimson Technical College,11,Two-year for-profit,2,4,CA,6037,Los Angeles,0.073717952,0.45359665,0.075222887,0.000206,47183.26172,44700,0.363316019,0.25033554,0.30319721,0.22778362,0.12831846,0.090365238,0.052374519,0.028754923,0.005523531,0.000292909
Crowder College,9,Two-year (public and private not-for-profit),2,2,MO,29145,Newton,0.55244255,0.62020308,0.015008159,0.000692712,58819.77192,51100,0.438075137,0.18316031,0.24845791,0.31741714,0.18761906,0.063345484,0.020351766,0.009206832,0.003090169,1.10E-05
Crown College,8,Nonselective four-year private not-for-profit,1,2,MN,27019,Carver,0.57710278,0.73663735,0.010557843,0,82883.52282,73500,0.5674512,0.075402565,0.13857518,0.30497146,0.30146182,0.17958893,0.069444537,0.035415921,0.002871053,9.63E-05
Cuesta College,9,Two-year (public and private not-for-profit),2,4,CA,6079,San Luis Obispo,0.47643515,0.50089586,0.01772581,0.000320751,107517.4889,79900,0.601404649,0.1063613,0.14864618,0.19016638,0.24382734,0.31099874,0.16202357,0.071290202,0.013468853,0.001379257
Culinary Institute Of America,8,Nonselective four-year private not-for-profit,1,1,NY,36027,Dutchess,0.30759573,0.49287385,0.015095212,0.000646674,137637.939,102800,0.694481136,0.051736087,0.087505572,0.17380509,0.25002807,0.43692511,0.25674549,0.13079937,0.02040061,0.002464595
Culver-Stockton College,6,Selective private,1,2,MO,29111,Lewis,0.54720616,0.65980899,0.015609925,0.000327362,85740.02113,78600,0.59198031,0.074048199,0.14029855,0.23250628,0.34846187,0.20468523,0.083899282,0.037761044,0.004359724,0.000341583
Cumberland County College,9,Two-year (public and private not-for-profit),2,1,NJ,34011,Cumberland,0.57503235,0.44045267,0.026444279,1.75E-05,69802.91073,59900,0.500262514,0.14982034,0.23084089,0.2248033,0.2429423,0.15159312,0.054051355,0.022207156,0.001432099,5.82E-05
Cumberland University,6,Selective private,1,3,TN,47189,Wilson,0.4537445,0.62066227,0.020049477,0.000115753,81696.70612,68800,0.540093802,0.13668558,0.20489043,0.20624895,0.24491087,0.20726427,0.098944083,0.045024741,0.002224877,0.00019306
Curry College,6,Selective private,1,1,MA,25021,Norfolk,0.47758284,0.47148463,0.019095086,7.29E-05,167527.834,101600,0.688045011,0.064112388,0.11522503,0.14664367,0.22230375,0.45171523,0.28766292,0.16882144,0.047802914,0.002959048
Cuyahoga Community College,9,Two-year (public and private not-for-profit),2,2,OH,39035,Cuyahoga,0.55222178,0.35391167,0.010280576,0.000153688,70341.45573,57500,0.485879511,0.17952956,0.21519555,0.24030823,0.23123592,0.13373074,0.050529655,0.021195363,0.003190435,0.000580658
D G Erwin Technical Center,9,Two-year (public and private not-for-profit),2,3,FL,12057,Hillsborough,0.57515031,0.36943945,0.027593378,0,54144.92348,42500,0.388694237,0.28758079,0.27299613,0.17920744,0.16414779,0.096067816,0.034875307,0.015533962,0.003852579,7.54E-05
D'Youville College,6,Selective private,1,1,NY,36029,Erie,0.78637773,0.60614693,0.039663244,0.000104131,77711.34281,75800,0.553815241,0.14159825,0.15415378,0.19765064,0.28217268,0.22442463,0.072700486,0.027195608,0.003706327,5.02E-05
Dabney S Lancaster Community College,9,Two-year (public and private not-for-profit),2,3,VA,51005,Alleghany,0.50619835,0.53833228,0.003484688,0,67210.58771,63200,0.501793342,0.13802943,0.18709181,0.3143746,0.26815748,0.092346825,0.045460783,0.015564152,0.002145486,0.000230989
Daemen College,6,Selective private,1,1,NY,36029,Erie,0.76196808,0.55639189,0.015489782,0.002498484,89060.2474,77600,0.584341951,0.10852973,0.15901193,0.19722757,0.27095893,0.26427186,0.096171208,0.031518962,0.003952889,3.99E-05
Dakota College At Bottineau,9,Two-year (public and private not-for-profit),2,2,ND,38009,Bottineau,0.45320198,0.56260812,0.017396238,0,63575.53959,54900,0.453541956,0.14627683,0.23296461,0.33869976,0.2045972,0.077461511,0.029688481,0.021358956,0.001661889,0.000369808
Dallas Baptist University,6,Selective private,1,3,TX,48113,Dallas,0.56616801,0.73855031,0.008309655,0,105931.1373,87000,0.643214237,0.060558893,0.1181777,0.21397641,0.28294826,0.32433867,0.14252648,0.06352561,0.007131512,0.001169084
Dallas County Community College District,9,Two-year (public and private not-for-profit),2,3,TX,48113,Dallas,0.52034146,0.41824672,0.020608749,0.000508802,81900.61262,59200,0.512165615,0.15445296,0.22626443,0.21924309,0.20391768,0.19612187,0.084145002,0.03547734,0.005563303,0.000891978
Dalton State College,7,Nonselective four-year public,1,3,GA,13313,Whitfield,0.57017136,0.5823521,0.012678913,0,76413.55133,63500,0.513556446,0.11866969,0.20196503,0.2931073,0.2585004,0.12775767,0.046841156,0.022188524,0.006135827,0.000947773
Daniel Webster College,10,Four-year for-profit,1,1,NH,33011,Hillsborough,0.18809524,0.56111228,0.006541746,0.000231341,160458.8373,93800,0.677022258,0.041364133,0.12098955,0.16832766,0.28261268,0.38670602,0.19191384,0.086853676,0.014693948,0.002468386
Danville Area Community College,9,Two-year (public and private not-for-profit),2,2,IL,17183,Vermilion,0.54198474,0.49928409,0.009039371,0,69816.33184,61100,0.497548996,0.14193609,0.20834537,0.2773051,0.27201876,0.10039471,0.037870597,0.010776429,0.002614918,0.000729301
Danville Community College,9,Two-year (public and private not-for-profit),2,3,VA,51590,Danville City,0.52397746,0.48675278,0.011276226,2.54E-05,66177.91532,59800,0.478415342,0.16667162,0.21680354,0.24901696,0.26479885,0.10270893,0.028597455,0.015782153,0.003466463,4.41E-05
Dartmouth College,1,Ivy Plus,1,1,NH,33009,Grafton,0.48192772,0.5692296,0.013762614,0.003631115,469593.629,185500,0.831228554,0.027713936,0.051006421,0.081291251,0.12927108,0.71071732,0.58701611,0.4569706,0.17733659,0.025214911
Darton State College,9,Two-year (public and private not-for-profit),2,3,GA,13095,Dougherty,0.61652422,0.4688108,0.013995953,0,73677.21855,63200,0.50902164,0.17982718,0.19429301,0.19498304,0.25070411,0.18019277,0.06611377,0.025045037,0.002654056,1.68E-05
Davenport University,6,Selective private,1,2,MI,26081,Kent,0.67474532,0.44057539,0.012456022,0.000394885,69110.94351,55800,0.469172333,0.20412642,0.1988315,0.25041115,0.22022013,0.12641087,0.048520364,0.019009395,0.002705814,0.000197507
Davidson College,2,Other elite schools (public and private),1,3,NC,37119,Mecklenburg,0.51710099,0.6497786,0.004102056,0.001701734,493919.26,208500,0.858225485,0.013816977,0.035382777,0.069171324,0.10971762,0.77191138,0.62943494,0.49338904,0.17505419,0.020357974
Davidson County Community College,9,Two-year (public and private not-for-profit),2,3,NC,37057,Davidson,0.61153519,0.50996208,0.007500936,0,68937.28666,60000,0.497470286,0.1263378,0.23715396,0.26373664,0.25895691,0.11381464,0.03636891,0.014512623,0.001372432,5.62E-05
Davis & Elkins College,6,Selective private,1,3,WV,54083,Randolph,0.62116992,0.55900997,0.005587278,8.59E-05,97471.96683,68000,0.55558671,0.10979949,0.18268594,0.23337968,0.23104836,0.24308641,0.10996976,0.053257409,0.016383067,0.00012769
Davis Applied Technology College,9,Two-year (public and private not-for-profit),2,4,UT,49011,Davis,0.40414509,0.60257524,0.004149469,0,89998.14109,78400,0.603581576,0.049927335,0.14532888,0.26386595,0.33660635,0.20427155,0.068386681,0.026125427,0.007730087,8.82E-05
Dawson Community College,9,Two-year (public and private not-for-profit),2,4,MT,30021,Dawson,0.4598338,0.61917734,0.009444409,0.002600119,61527.72998,58000,0.454887935,0.16631769,0.21874103,0.29736504,0.26838276,0.049193557,0.018125016,0.012515978,0.001968468,0.000400251
Daytona State College,7,Nonselective four-year public,1,3,FL,12127,Volusia,0.5686838,0.42483357,0.016004307,0.000162816,67913.38329,52400,0.465254389,0.20341428,0.23097001,0.23044637,0.20152088,0.13364848,0.054709293,0.026548352,0.004529006,3.94E-05
DePauw University,6,Selective private,1,2,IN,18133,Putnam,0.56050956,0.66448319,0.009076159,0.001208679,218739.5379,117700,0.754285738,0.02425099,0.080683008,0.13237885,0.21296875,0.5497185,0.36345696,0.23865448,0.055153769,0.009014248
DeSales University,6,Selective private,1,1,PA,42077,Lehigh,0.52930731,0.58771598,0.006845656,8.66E-05,126097.4245,98800,0.702512721,0.035594914,0.087237544,0.15602398,0.30082408,0.42031953,0.19910648,0.093888611,0.008440034,0.001878393
Dean College,8,Nonselective four-year private not-for-profit,1,1,MA,25021,Norfolk,0.45016077,0.3791995,0.008705345,0,131190.3213,91400,0.648356772,0.09397278,0.11908345,0.1612488,0.24684104,0.37885398,0.23142268,0.12057136,0.027641436,0.002239314
Defiance College,6,Selective private,1,2,OH,39039,Defiance,0.49508196,0.75439018,0.011066434,0,86515.04948,77900,0.631722311,0.051063716,0.13855039,0.23085256,0.32235837,0.25717506,0.092351548,0.033722885,0.002725299,0.000188242
Del Mar College,9,Two-year (public and private not-for-profit),2,3,TX,48355,Nueces,0.54342866,0.44109896,0.036728296,2.52E-05,64100.71885,52900,0.459525586,0.22380438,0.22232859,0.20619288,0.21600351,0.13167061,0.044212133,0.013875786,0.002461671,6.19E-05
Delaware County Community College,9,Two-year (public and private not-for-profit),2,1,PA,42045,Delaware,0.48383859,0.42155856,0.012844165,0.000377343,96664.11133,80800,0.603262166,0.087870367,0.15029728,0.20780404,0.27730182,0.27672651,0.1152203,0.04560373,0.006180519,0.000396897
Delaware Technical Community College - Owens Campus,9,Two-year (public and private not-for-profit),2,3,DE,10005,Sussex,0.56937802,0.46705595,0.012010596,0,78604.88016,64600,0.517019459,0.13990191,0.19309515,0.24598885,0.26807952,0.15293446,0.04874856,0.018739745,0.003467565,4.37E-05
Delaware Technical Community College of Dover - DE,9,Two-year (public and private not-for-profit),2,3,DE,10001,Kent,0.60281384,0.45703039,0.014241505,3.82E-05,74277.11113,69900,0.544728027,0.12873238,0.17927101,0.22577247,0.30535921,0.16086483,0.048081189,0.01188123,0.002134011,0.000158559
Delaware Technical Community College of Wilmington - DE,9,Two-year (public and private not-for-profit),2,3,DE,10003,New Castle,0.51976526,0.3973237,0.009188932,0,92159.32607,82100,0.610280988,0.077616043,0.15546584,0.19483802,0.28479904,0.28728113,0.10301132,0.032422505,0.002879364,4.30E-05
Delaware Valley College Of Science & Agriculture,6,Selective private,1,1,PA,42017,Bucks,0.50527424,0.60700297,0.016287908,1.56E-06,113197.3328,90700,0.6513936,0.062112503,0.11507855,0.19387244,0.28879052,0.34014601,0.16932976,0.066960655,0.012179647,0.001129778
Delgado Community College,9,Two-year (public and private not-for-profit),2,3,LA,22071,Orleans,0.60496807,0.31466419,0.021469839,0.000264741,58689.42019,43800,0.418509296,0.28750584,0.22724594,0.18873325,0.18165053,0.11486448,0.03861348,0.015470658,0.00152172,3.00E-05
Delta College,9,Two-year (public and private not-for-profit),2,2,MI,26017,Bay,0.51767594,0.53904021,0.010663178,1.26E-06,83777.15743,75800,0.57437882,0.11479627,0.14606149,0.21770677,0.29058498,0.23085049,0.073764659,0.022378601,0.002970852,3.19E-05
Delta State University,5,Selective public,1,3,MS,28011,Bolivar,0.59824783,0.58209383,0.0224602,0.000962825,79019.67969,71000,0.536070466,0.16261435,0.17736001,0.17434756,0.2719464,0.21373159,0.081610784,0.030937457,0.001528903,0.000173037
Denison University,4,Highly selective private,1,2,OH,39089,Licking,0.56379426,0.59033829,0.009391842,0.001320326,271317.6188,149300,0.792447117,0.031097684,0.058350503,0.10251603,0.16279356,0.64524221,0.49257216,0.34794077,0.093930125,0.013124404
Depaul University,6,Selective private,1,2,IL,17031,Cook,0.58344805,0.51821834,0.028553518,0.0013982,188629.9128,99900,0.682105407,0.066376403,0.11340807,0.16060704,0.215941,0.44366747,0.27755445,0.16897662,0.046285465,0.004449165
Des Moines Area Community College,9,Two-year (public and private not-for-profit),2,2,IA,19153,Polk,0.51103681,0.56651384,0.007622814,0.000127767,82641.01052,72600,0.567351243,0.084647775,0.16914831,0.25495195,0.30852664,0.18272531,0.065950014,0.027636899,0.003577526,0.000402519
Devry University - Devry Institute Of Technology And Denver Technical College,10,Four-year for-profit,1,2,IL,17031,Cook,0.24237382,0.4134998,0.042764816,0.000787484,70434.77291,56300,0.483857628,0.1762338,0.23370583,0.22812574,0.21240193,0.14953271,0.054321557,0.018305309,0.002580784,0.00031898
Dickinson College,4,Highly selective private,1,1,PA,42041,Cumberland,0.55268019,0.59422815,0.012097311,0.001671999,279506.9335,136600,0.790114656,0.022410417,0.053809442,0.11695296,0.20052758,0.60629964,0.43809861,0.30393133,0.10373,0.00876126
Dickinson State University,5,Selective public,1,2,ND,38089,Stark,0.51409137,0.6750263,0.040979888,6.72E-06,65513.14383,57800,0.482207663,0.13897127,0.23013201,0.29205444,0.24904045,0.089801908,0.030846201,0.009722155,0.000968622,3.53E-06
Digipen Institute Of Technology,10,Four-year for-profit,1,4,WA,53033,King,0.062146891,0.43178764,0.013474088,0,117772.3568,95200,0.675617655,0.043147095,0.10385203,0.18490532,0.31172943,0.35636622,0.16663797,0.085185505,0.015803285,0.000133086
Dillard University,6,Selective private,1,3,LA,22071,Orleans,0.76016098,0.24606214,0.050284807,0.000476997,55132.93278,42600,0.41637716,0.24772984,0.28737444,0.19434829,0.16486211,0.10568531,0.039522473,0.010430237,0.001589322,0.000114597
Dixie State University,7,Nonselective four-year public,1,4,UT,49053,Washington,0.47337568,0.72373933,0.014699235,0.000472296,98070.63916,76900,0.586677069,0.088813767,0.14236119,0.24008566,0.30702358,0.2217159,0.10098113,0.052030016,0.008115957,0.000800479
Doane College,6,Selective private,1,2,NE,31151,Saline,0.5050633,0.71481633,0.014534251,0.00248767,102872.5711,76600,0.602734635,0.058835037,0.14700867,0.26945436,0.28116417,0.2435378,0.11756071,0.057327673,0.011448151,8.11E-06
Dodge City Community College,9,Two-year (public and private not-for-profit),2,2,KS,20057,Ford,0.44820717,0.49873984,0.010987721,5.71E-05,58319.4388,48000,0.444053064,0.16480404,0.29058444,0.25796679,0.21352068,0.073124208,0.017359285,0.010423543,0.000812582,0.0001292
Dominican College Of Blauvelt,6,Selective private,1,1,NY,36087,Rockland,0.58928573,0.45007131,0.036583826,0.002114046,96784.10938,88900,0.643382152,0.075897068,0.1415329,0.20571786,0.23097667,0.3458755,0.1551896,0.051225893,0.004300786,0.000230176
Dominican University,6,Selective private,1,2,IL,17031,Cook,0.67833334,0.5694741,0.014196316,0,104994.0624,87300,0.640001364,0.06072709,0.13051106,0.20012097,0.269483,0.33915791,0.14447226,0.062932879,0.014906717,0.001641741
Dominican University Of California,6,Selective private,1,4,CA,6041,Marin,0.76029056,0.50909108,0.031980876,0.00244417,163987.119,98100,0.684231013,0.060711909,0.12911583,0.1603592,0.23964556,0.41016746,0.24089342,0.12724848,0.025760667,0.004699891
Dordt College,6,Selective private,1,2,IA,19167,Sioux,0.56550217,0.81992364,0.003423932,0,105026.3015,80500,0.633071362,0.037580971,0.10023153,0.29770321,0.31373256,0.25075173,0.12576486,0.058056325,0.00929815,0.002171535
Dorsey School Of Business,12,Less than two-year schools of any type,3,2,MI,26099,Macomb,0.9212963,0.2384682,0.000261048,9.56E-05,57263.88802,43400,0.409705639,0.22166905,0.28945553,0.21643361,0.19093852,0.081503324,0.023532331,0.005710973,0.000765734,0.000221573
Douglas J Aveda Institute,12,Less than two-year schools of any type,3,2,MI,26065,Ingham,0.97402596,0.71043253,0.000377264,0.00015254,101865.8568,93600,0.681328436,0.033618625,0.13352543,0.11206349,0.37486833,0.34592414,0.11143994,0.078369707,0.000505221,0.00020276
Dowling College,6,Selective private,1,1,NY,36103,Suffolk,0.57090908,0.49549663,0.049541503,0.001253946,95406.83613,71500,0.565657182,0.16336198,0.16316129,0.17664842,0.20128752,0.29554084,0.13873383,0.070939288,0.005812548,1.53E-05
Drake University,6,Selective private,1,2,IA,19153,Polk,0.59797466,0.66906774,0.017473824,0.000988635,175198.4808,109600,0.731984745,0.036516391,0.072967246,0.1457247,0.25944901,0.48534265,0.2943604,0.15457882,0.025500627,0.002647382
Drew University,6,Selective private,1,1,NJ,34027,Morris,0.59077525,0.49907449,0.02305807,0.000996407,253466.6252,140400,0.767171586,0.040804565,0.07975889,0.099642783,0.15565206,0.62414169,0.46773288,0.28805581,0.072175577,0.009737742
Drury University,6,Selective private,1,2,MO,29077,Greene,0.61494619,0.65087605,0.012201751,1.11E-05,107483.5263,74400,0.584441931,0.11019837,0.17314722,0.21032459,0.21999383,0.28633609,0.16130254,0.094115198,0.018933941,0.000647137
Duke University,1,Ivy Plus,1,3,NC,37063,Durham,0.48711112,0.6006999,0.016026281,0.004252429,517631.5869,196000,0.830458482,0.03180375,0.051623411,0.074047938,0.12539901,0.71712601,0.59894389,0.47915623,0.19215614,0.031923793
Dunwoody College Of Technology,8,Nonselective four-year private not-for-profit,1,2,MN,27053,Hennepin,0.08118812,0.54957736,0.014309225,6.17E-05,126602.8824,89100,0.646158391,0.03501863,0.12727515,0.21310714,0.32423335,0.30036569,0.11354657,0.052806489,0.010208519,0.001895545
Duquesne University Of The Holy Spirit,6,Selective private,1,1,PA,42003,Allegheny,0.58823532,0.65585172,0.017168846,0.000349158,147170.5605,104000,0.711957892,0.041523315,0.077676848,0.15542963,0.27166969,0.45370054,0.25492808,0.13605368,0.027037466,0.001266193
Durham Technical Community College,9,Two-year (public and private not-for-profit),2,3,NC,37063,Durham,0.55190539,0.3106795,0.007297395,0,73778.08323,59700,0.505569045,0.16234961,0.23599982,0.19748354,0.20453122,0.19963585,0.082140967,0.029541763,0.003811614,6.12E-06
Dutchess Community College,9,Two-year (public and private not-for-profit),2,1,NY,36027,Dutchess,0.49441412,0.43011078,0.015608984,0,88697.63165,82900,0.607108799,0.091885269,0.13677916,0.19929101,0.28337055,0.28867394,0.10371143,0.025694406,0.001558773,5.05E-05
Dyersburg State Community College,9,Two-year (public and private not-for-profit),2,3,TN,47045,Dyer,0.63519311,0.53435147,0.009487578,0,64790.94409,55200,0.470744536,0.17251746,0.23175088,0.24045418,0.25965437,0.095623128,0.025192307,0.011573257,0.000931167,4.79E-05
ETI School Of Skilled Trades,12,Less than two-year schools of any type,3,2,IL,17043,Dupage,0.025270758,0.32372022,0.031885624,0.000266914,86786.75,63100,0.523758213,0.14308093,0.21377715,0.28542897,0.26309931,0.094613738,0.064447083,0.021951403,0.009770001,0.000260692
Earlham College,6,Selective private,1,2,IN,18177,Wayne,0.56312627,0.44535008,0.00244365,0,156866.5313,99100,0.696656267,0.050809905,0.09232229,0.18778691,0.23140062,0.4376803,0.27202991,0.15623097,0.028555281,0.001974586
East Arkansas Community College,9,Two-year (public and private not-for-profit),2,3,AR,5123,St Francis,0.68388104,0.349145,0.019993518,0,50165.03537,36100,0.349774858,0.3459686,0.27756414,0.19430833,0.10556532,0.076593637,0.027138529,0.011722368,0.003812199,2.41E-05
East Carolina University,5,Selective public,1,3,NC,37147,Pitt,0.58909827,0.60079682,0.011932503,0.000459565,120568.6082,96000,0.668644038,0.061542444,0.11048505,0.17343634,0.2607621,0.39377409,0.20989044,0.094760984,0.012488611,0.000706174
East Central College,9,Two-year (public and private not-for-profit),2,2,MO,29071,Franklin,0.53377265,0.60811591,0.011705676,0,77419.01037,68000,0.53567392,0.10305495,0.17668059,0.28108442,0.29731792,0.14186215,0.051195998,0.019783117,0.003735606,0.000556009
East Central Community College,9,Two-year (public and private not-for-profit),2,3,MS,28101,Newton,0.5154959,0.46259463,0.026077507,0.001130151,60647.60938,41600,0.384839565,0.30573347,0.2559002,0.21130723,0.16769385,0.059365377,0.021953102,0.009761269,0.001092199,0.00016327
East Georgia State College,7,Nonselective four-year public,1,3,GA,13107,Emanuel,0.48710603,0.45116279,0.014026567,0,67453.67732,57600,0.458629898,0.21354727,0.21474108,0.2144305,0.20932575,0.14795539,0.066076718,0.026426852,0.005521259,7.11E-05
East Mississippi Community College,9,Two-year (public and private not-for-profit),2,3,MS,28069,Kemper,0.5243808,0.39658549,0.018988805,0.000327125,59939.10207,44900,0.423497486,0.28596041,0.21842743,0.19267556,0.18453297,0.11840363,0.038308553,0.015378819,0.002064373,1.97E-05
East Stroudsburg University Of Pennsylvania,5,Selective public,1,1,PA,42089,Monroe,0.58344924,0.6060605,0.017018918,4.48E-05,100663.2459,85700,0.633879015,0.06731233,0.12047589,0.21297024,0.29152721,0.3077144,0.13712788,0.047083605,0.00548464,0.000360675
East Tennessee State University,5,Selective public,1,3,TN,47179,Washington,0.56413221,0.60041434,0.014986984,0.000226685,92165.12312,75600,0.583928187,0.1034819,0.1347515,0.23970272,0.27760601,0.24445795,0.094187587,0.046924282,0.005707977,0.000451273
East Texas Baptist University,6,Selective private,1,3,TX,48203,Harrison,0.53144264,0.6877172,0.014889835,0.00243115,82426.97436,72500,0.569181538,0.1071303,0.16109157,0.23584333,0.27104849,0.22488633,0.07614506,0.034205548,0.005765905,0.000158829
Eastern Arizona College,9,Two-year (public and private not-for-profit),2,4,AZ,4009,Graham,0.5481264,0.60901856,0.02299221,5.14E-05,65886.76933,60900,0.489823284,0.1434419,0.21568286,0.29393488,0.25063437,0.096305996,0.035191886,0.006700443,0.001221367,6.08E-05
Eastern College Of Health Vocations,12,Less than two-year schools of any type,3,3,AR,5119,Pulaski,0.98368299,0.24123588,0.004710648,0.000142145,39767.47219,29300,0.303223801,0.41119552,0.29819825,0.1357154,0.1301457,0.02474509,0.006991983,0.000519535,0.000519535,7.60E-06
Eastern Connecticut State University,5,Selective public,1,1,CT,9015,Windham,0.55151016,0.55108076,0.008899264,0.000139893,107254.1607,94900,0.66792227,0.043887377,0.11044176,0.17664379,0.29957056,0.36945647,0.14791638,0.042301103,0.00564789,0.001025797
Eastern Florida State College,7,Nonselective four-year public,1,3,FL,12009,Brevard,0.53374541,0.44630757,0.014721945,0.000364845,76959.22588,65300,0.519124059,0.14659899,0.18643217,0.23861235,0.26174951,0.16660696,0.05768938,0.026574528,0.003429526,0.000352346
Eastern Gateway Community College,9,Two-year (public and private not-for-profit),2,2,OH,39081,Jefferson,0.56386292,0.49881166,0.009931176,5.84E-05,62850.77197,58100,0.476064553,0.16253282,0.1893428,0.3007023,0.28557557,0.061846536,0.01613063,0.010328432,0.000854481,0.000145719
Eastern Idaho Technical College,9,Two-year (public and private not-for-profit),2,4,ID,16019,Bonneville,0.57620817,0.70685691,0.022192212,0.003808776,69364.40625,59900,0.497194896,0.15435266,0.21179488,0.2837823,0.25402251,0.096047483,0.018731887,0.006403986,0.000642237,0.000456377
Eastern Illinois University,5,Selective public,1,2,IL,17029,Coles,0.59008199,0.65643591,0.009658183,0,113245.7419,100100,0.693926933,0.03730486,0.079846859,0.16011924,0.32110539,0.40162379,0.16859792,0.06215591,0.005102078,0.001093653
Eastern Iowa Community College District,9,Two-year (public and private not-for-profit),2,2,IA,19163,Scott,0.55133384,0.54526687,0.008275759,2.35E-05,82501.26661,75600,0.574128788,0.096413553,0.14281352,0.24166933,0.31498006,0.20412359,0.053831536,0.021667562,0.002465403,3.75E-06
Eastern Kentucky University,5,Selective public,1,3,KY,21151,Madison,0.57618666,0.60685867,0.015209559,0.000170094,81068.46966,69700,0.54090643,0.14080454,0.17051028,0.22153223,0.27335548,0.19379745,0.073326729,0.029808486,0.003803395,0.00033703
Eastern Mennonite University,6,Selective private,1,3,VA,51660,Harrisonburg City,0.60330576,0.7542572,0.010012529,0,109883.7292,90700,0.661467016,0.052225251,0.10512462,0.22760673,0.26203376,0.35300973,0.17601824,0.084445722,0.007475779,0.00024919
Eastern Michigan University,5,Selective public,1,2,MI,26161,Washtenaw,0.60770577,0.54191947,0.011686578,1.02E-05,112188.3546,98400,0.674306469,0.061472073,0.10183222,0.15672736,0.27339089,0.40657747,0.18185295,0.060436159,0.007516868,0.000498105
Eastern Nazarene College,6,Selective private,1,1,MA,25021,Norfolk,0.57971013,0.67397976,0.013295866,0,96446.74107,81600,0.618000513,0.075436167,0.13108708,0.21532145,0.30910739,0.26904789,0.10649946,0.044736963,0.006165456,7.74E-05
Eastern New Mexico University,5,Selective public,1,4,NM,35041,Roosevelt,0.54474044,0.47971797,0.021399237,0.000348188,59703.11171,47200,0.431199757,0.22382048,0.25846061,0.23199134,0.18605873,0.09966889,0.035372976,0.015644662,0.001861632,0.000370738
Eastern Oklahoma State College,9,Two-year (public and private not-for-profit),2,3,OK,40077,Latimer,0.51910114,0.55262268,0.026414393,3.70E-05,58649.67645,45500,0.412922965,0.23353475,0.25384709,0.24850596,0.20512176,0.058990449,0.02473315,0.011479706,0.003755325,0
Eastern Oregon University,5,Selective public,1,4,OR,41061,Union,0.55034214,0.62764186,0.019505963,1.89E-05,88624.77361,74600,0.578908588,0.10578898,0.1237062,0.24287169,0.30310199,0.22453114,0.092956319,0.04204379,0.003962217,1.83E-05
Eastern Shore Community College,9,Two-year (public and private not-for-profit),2,3,VA,51001,Accomack,0.66838044,0.34402633,0.025636859,0,48420.48725,35800,0.338495412,0.37020293,0.24464409,0.20129757,0.12907526,0.054780237,0.014093051,0.00402392,0.000529221,0
Eastern University,6,Selective private,1,1,PA,42045,Delaware,0.67514676,0.70200974,0.007069828,0.001098465,138814.893,93900,0.670930393,0.044532068,0.10369286,0.19867173,0.28008887,0.37301457,0.19402641,0.097562738,0.022081083,0.001925638
Eastern Washington University,5,Selective public,1,4,WA,53063,Spokane,0.57797354,0.6524502,0.019227237,2.32E-05,103225.9917,85900,0.632479617,0.068264976,0.11436328,0.2012991,0.32335398,0.29271877,0.11008503,0.04590442,0.00642022,0.000887224
Eastern Wyoming College,9,Two-year (public and private not-for-profit),2,4,WY,56015,Goshen,0.54308945,0.6340059,0.027820466,0,62977.82997,54500,0.451161394,0.18121919,0.24206889,0.28060985,0.20316318,0.092938945,0.014064605,0.012640697,0.000330853,9.95E-05
Eckerd College,6,Selective private,1,3,FL,12103,Pinellas,0.55010021,0.5206424,0.011483468,4.56E-05,207860.5668,113100,0.715935448,0.047560938,0.1106654,0.12231676,0.21242981,0.50702703,0.3283743,0.19953573,0.05307392,0.009128229
Ecpi University And Skyline Colleges,10,Four-year for-profit,1,3,VA,51810,Virginia Beach City,0.32158399,0.37294537,0.020262921,0,64741.90964,53100,0.463024671,0.19131513,0.24359381,0.2302108,0.22009608,0.11478426,0.037882406,0.012542277,0.002958935,9.81E-05
Edgecombe Community College,9,Two-year (public and private not-for-profit),2,3,NC,37065,Edgecombe,0.66492832,0.24940664,0.014374515,1.76E-05,45305.81817,32500,0.353853046,0.3440536,0.29253653,0.16495869,0.1401723,0.058278944,0.014055148,0.002167621,4.51E-05,4.51E-05
Edgewood College,6,Selective private,1,2,WI,55025,Dane,0.71932513,0.6669603,0.01235362,2.28E-05,126379.0122,93300,0.667647929,0.059073351,0.095309764,0.16072083,0.31896877,0.36592734,0.18998209,0.11763548,0.022895299,2.55E-05
Edinboro University Of Pennsylvania,5,Selective public,1,1,PA,42049,Erie,0.58141303,0.56722277,0.010094229,0.00030633,83334.27045,74800,0.584359222,0.081304699,0.15166372,0.25039953,0.32270306,0.19392899,0.066351682,0.023888664,0.004274348,0.000267522
Edison State College,7,Nonselective four-year public,1,3,FL,12071,Lee,0.57191271,0.45821381,0.017097075,0.000173668,88481.85029,61100,0.50946065,0.14622974,0.22622837,0.23578802,0.22424266,0.16751114,0.074969783,0.036500178,0.00582626,0.000920421
Edmonds Community College,9,Two-year (public and private not-for-profit),2,4,WA,53061,Snohomish,0.49323493,0.47115237,0.015954733,0.000286067,97288.68104,84300,0.617077969,0.084483303,0.12362928,0.19428931,0.31670436,0.28089371,0.10556312,0.039517812,0.006247834,0.000948901
El Camino College,9,Two-year (public and private not-for-profit),2,4,CA,6037,Los Angeles,0.50492859,0.33746764,0.031190863,0.000707942,70792.21628,51600,0.466883441,0.21975967,0.23381616,0.20055769,0.17230776,0.17355867,0.078792982,0.029556336,0.00340229,0.000499612
El Paso Community College,9,Two-year (public and private not-for-profit),2,3,TX,48141,El Paso,0.54610598,0.41843244,0.047745954,0.000706533,41655.43214,29200,0.313252189,0.40920174,0.2875343,0.15483689,0.10214154,0.046285599,0.015021882,0.005690831,0.000696659,4.09E-05
Elaine P. Nunez Community College,9,Two-year (public and private not-for-profit),2,3,LA,22087,St Bernard,0.55917668,0.44049317,0.025575977,0.000143838,59750.56771,47200,0.414730628,0.25470054,0.21204711,0.23069808,0.21464834,0.087905787,0.013688601,0.008863373,0.000987062,0.0001292
Elgin Community College,9,Two-year (public and private not-for-profit),2,2,IL,17089,Kane,0.50521231,0.49980515,0.010504249,0.00025137,101686.9282,91700,0.654613002,0.05890109,0.10712155,0.17966703,0.31623623,0.33807409,0.13074419,0.047919076,0.004722276,3.93E-06
Elizabeth City State University,5,Selective public,1,3,NC,37139,Pasquotank,0.58964145,0.27648056,0.038773548,5.59E-07,44637.21484,37400,0.372998416,0.3210327,0.24686012,0.20806468,0.16146985,0.062572628,0.011814641,0,0,0
Elizabethtown College,6,Selective private,1,1,PA,42071,Lancaster,0.63819093,0.69474488,0.009347604,8.32E-05,118657.1078,98100,0.697525247,0.027147356,0.087089568,0.17041993,0.32028607,0.39505708,0.18675996,0.082429446,0.016050318,0.000978126
Elmhurst College,6,Selective private,1,2,IL,17043,Dupage,0.63913041,0.59827423,0.016476316,4.89E-05,134585.6094,100200,0.692306519,0.047116987,0.074734867,0.14689668,0.32478684,0.40646458,0.22055629,0.092352845,0.017193377,0.003753383
Elmira College,6,Selective private,1,1,NY,36015,Chemung,0.73498964,0.57406598,0.013689324,9.98E-05,126658.8958,91400,0.649737577,0.05035124,0.09180297,0.21744885,0.28886598,0.35153097,0.17053619,0.069444254,0.016928185,0.000343974
Elon University,4,Highly selective private,1,3,NC,37001,Alamance,0.61042619,0.63001317,0.006364957,3.70E-05,269743.9892,146000,0.801888413,0.020629592,0.047432169,0.097863033,0.17212591,0.66194928,0.47828841,0.29225561,0.067646362,0.009061854
Embry-Riddle Aeronautical University,6,Selective private,1,3,FL,12127,Volusia,0.15838288,0.63416588,0.034791574,0.000960587,121675.0662,92400,0.656499839,0.072243504,0.12332027,0.17984867,0.2369988,0.38758877,0.21646957,0.11482009,0.014424954,0.000955273
Emerson College,4,Highly selective private,1,1,MA,25025,Suffolk,0.57164949,0.44374913,0.010786374,0.000519284,219301.8474,120500,0.745133538,0.039237924,0.073039487,0.12237465,0.2170167,0.54833132,0.37270412,0.24336566,0.066375889,0.007206847
Emily Griffith Technical College,12,Less than two-year schools of any type,3,4,CO,8031,Denver,0.42345276,0.37011898,0.023928825,9.64E-05,57399.9441,50200,0.449456443,0.20666222,0.25288346,0.23626396,0.20494722,0.099243306,0.026516596,0.013200872,0.001472929,2.29E-06
Emmanuel College of Boston - MA,6,Selective private,1,1,MA,25025,Suffolk,0.71900827,0.51794374,0.018747658,2.72E-05,117082.5469,93400,0.651603023,0.055309255,0.14763653,0.16411529,0.24242544,0.39051348,0.16828591,0.067003414,0.012984347,0.00256548
Emmanuel College of Franklin Springs - GA,8,Nonselective four-year private not-for-profit,1,3,GA,13119,Franklin,0.52865064,0.65357649,0.014061822,0.002079754,76561.14874,67500,0.527527939,0.12578648,0.19162996,0.24972405,0.26772586,0.16513361,0.046485595,0.033804327,0.007855886,0.000274046
Emory & Henry College,6,Selective private,1,3,VA,51191,Washington,0.52507377,0.6671294,0.015035091,4.77E-05,99376.02489,84000,0.625443547,0.071854308,0.13248706,0.20360911,0.28264785,0.30940169,0.15556626,0.062890984,0.011192085,0.000248554
Emory University,2,Other elite schools (public and private),1,3,GA,13089,DeKalb,0.55201501,0.58406121,0.018005462,0.003534804,379558.8261,175700,0.806358669,0.036100194,0.066468887,0.092586413,0.12645225,0.67839229,0.55866838,0.43500996,0.16779459,0.017796706
Empire Beauty School of Moosic - PA,12,Less than two-year schools of any type,3,1,PA,42069,Lackawanna,0.95220393,0.38136017,0.002298607,3.78E-05,70031.54427,55300,0.470562538,0.20994507,0.23149706,0.20910865,0.21880835,0.13064085,0.047171313,0.027504865,0.003850983,0.0001292
Empire Beauty School of New York - NY,12,Less than two-year schools of any type,3,1,NY,36061,New York,0.96836984,0.22928773,0.010763849,7.75E-06,68715.57813,43000,0.414545983,0.26611945,0.26364782,0.18278691,0.14114662,0.14629926,0.074021414,0.034743678,0.00988749,0
Empire Beauty School of Philadelphia - PA,12,Less than two-year schools of any type,3,1,PA,42101,Philadelphia,0.97083336,0.66514546,8.21E-05,8.21E-05,81230.17708,76000,0.597338021,0.087379225,0.15040296,0.22460754,0.30383822,0.23377216,0.062982395,0.028142247,0.000505221,0.0001292
Empire Beauty School of Portland - ME,12,Less than two-year schools of any type,3,1,ME,23005,Cumberland,0.95187163,0.40451708,0,0,65183.35156,52200,0.432580402,0.21503705,0.22266096,0.28078356,0.20302701,0.078491382,0.051217977,0.023684237,0.000679986,0.000223453
Empire Beauty School of Somersworth - NH,12,Less than two-year schools of any type,3,1,NH,33017,Strafford,0.95890409,0.3843959,0.008623284,0.000238202,64785.13281,53500,0.517796377,0.16924217,0.18782006,0.25945961,0.30556145,0.07791663,0.016862052,0.016862052,0.003279752,0.000809179
Emporia State University,5,Selective public,1,2,KS,20111,Lyon,0.60918581,0.67057979,0.007318537,0.000451683,88528.54329,80100,0.612001806,0.057322424,0.12305,0.25551552,0.34704086,0.21707128,0.078798987,0.026424244,0.002374983,2.75E-05
Endicott College,6,Selective private,1,1,MA,25009,Essex,0.67708331,0.59219152,0.014197784,4.12E-05,164295.7624,108400,0.720497834,0.03760685,0.081013873,0.15193294,0.24748763,0.48195869,0.25129241,0.14743717,0.034413323,0.003606435
Enterprise State Community College,9,Two-year (public and private not-for-profit),2,3,AL,1031,Coffee,0.43944636,0.50819385,0.023830872,5.79E-05,77794.28906,59300,0.489399433,0.19608748,0.17398095,0.2834411,0.22320154,0.12328892,0.033304263,0.021267803,0.003087621,0.002198151
Erie Community College,9,Two-year (public and private not-for-profit),2,1,NY,36029,Erie,0.46425045,0.44441557,0.01268109,0.000269337,79686.81533,72400,0.552576741,0.12134389,0.16213065,0.2291379,0.29654801,0.19083953,0.060386326,0.018169349,0.002857269,0.00019152
Erskine College,6,Selective private,1,3,SC,45001,Abbeville,0.59923667,0.76364201,0.001567531,0,112021.4505,94700,0.678504845,0.057901051,0.12057947,0.16076064,0.3401508,0.32060802,0.19824439,0.094872221,0.018671656,0.0001292
Essex County College,9,Two-year (public and private not-for-profit),2,1,NJ,34013,Essex,0.55144036,0.24544249,0.032910001,1.74E-06,59459.4754,43000,0.41490227,0.2528612,0.27406269,0.21648525,0.14495763,0.1116333,0.044110112,0.014320457,0.002785548,0.000345157
Eureka College,6,Selective private,1,2,IL,17203,Woodford,,0.59816241,0.018272847,0.000349911,78117.15365,76500,0.577541808,0.094731174,0.14238934,0.23175235,0.3821485,0.14897862,0.064177573,0.021341706,0.010743777,0.0001292
Evangel University,6,Selective private,1,2,MO,29077,Greene,0.56160456,0.75585812,0.009568987,0.000046965,97468.01507,73800,0.59369308,0.067093924,0.15333518,0.25880867,0.29341209,0.22735003,0.11585398,0.06535998,0.012029015,0.000104857
Everest Institute of Miami - FL,11,Two-year for-profit,2,3,FL,12086,,0.80582523,0.20625438,0.01690633,3.86E-05,39944.80469,27700,0.297334701,0.43360263,0.30529931,0.13302819,0.097192958,0.030876856,0.008376984,0.008376984,0.00169087,0.000146011
Everett Community College,9,Two-year (public and private not-for-profit),2,4,WA,53061,Snohomish,0.53934008,0.51237494,0.00980751,1.68E-05,87545.77874,82100,0.611789453,0.078344263,0.12448382,0.21025465,0.34179708,0.24512017,0.069482021,0.022742882,0.002117116,3.84E-05
Evergreen State College ,5,Selective public,1,4,WA,53067,Thurston,0.5820452,0.39631587,0.005143794,1.07E-05,169285.843,100200,0.68416459,0.06618242,0.093738332,0.17028965,0.23878428,0.43100536,0.24951965,0.14642268,0.026111623,0.004276331
Fairfield University,6,Selective private,1,1,CT,9001,Fairfield,0.56006181,0.59444529,0.015773047,0.002057473,270216.2933,151500,0.820382518,0.024959581,0.047783971,0.078575969,0.15422675,0.69445372,0.50652915,0.3224054,0.082944252,0.01096391
Fairleigh Dickinson University,6,Selective private,1,1,NJ,34003,Bergen,0.5414176,0.48488015,0.033313226,0.000411744,135290.3758,87000,0.622980018,0.095446497,0.15874472,0.18062767,0.20275038,0.36243075,0.21107928,0.1149844,0.026166873,0.003820753
Fashion Institute Of Design & Merchandising,10,Four-year for-profit,1,4,CA,6037,Los Angeles,0.9067024,0.3899537,0.0252064,8.06E-05,130106.3724,76300,0.592304687,0.111849,0.16764905,0.20394582,0.20179865,0.31475767,0.18800007,0.095812015,0.022184094,0.002612504
Fashion Institute Of Technology,5,Selective public,1,1,NY,36061,New York,0.83393103,0.42236808,0.036484793,0.000819432,131569.6545,79800,0.595690816,0.1286495,0.15812391,0.17953499,0.20207077,0.33162078,0.1940982,0.095891625,0.018414009,0.003543509
Faulkner University,6,Selective private,1,3,AL,1101,Montgomery,0.55197656,0.52845579,0.007195362,8.46E-05,77458.80235,63500,0.508677815,0.16254693,0.19524884,0.23277427,0.24433824,0.16509181,0.050179254,0.020135665,0.00232547,0.001474464
Fayetteville State University,5,Selective public,1,3,NC,37051,Cumberland,0.58564693,0.28612798,0.024320804,0.001009185,52479.57138,41400,0.397006038,0.25220099,0.2896086,0.22405723,0.16788846,0.066244714,0.016169371,0.007789252,0.001219434,3.03E-05
Fayetteville Technical Community College,9,Two-year (public and private not-for-profit),2,3,NC,37051,Cumberland,0.53862458,0.44473904,0.018817434,0.000239464,58888.95394,51600,0.442226461,0.2166733,0.22693618,0.25759366,0.20822799,0.090568811,0.024122462,0.007097732,0.000427224,0.000252347
Feather River College,9,Two-year (public and private not-for-profit),2,4,CA,6063,Plumas,0.46554935,0.43922156,0.015292063,0.001687258,81433.79261,66000,0.51640507,0.17682511,0.18839191,0.19554558,0.25016004,0.18907726,0.062850222,0.035585232,0.008535996,0.001745211
Felician College,6,Selective private,1,1,NJ,34003,Bergen,0.71269488,0.42192465,0.024379453,0,90279.75826,73300,0.563436555,0.12820391,0.18708614,0.18646649,0.24856281,0.24968073,0.11362577,0.038827837,0.006455635,4.22E-07
Ferris State University,5,Selective public,1,2,MI,26107,Mecosta,0.41809008,0.59881938,0.01697208,0.000182514,96245.50628,82500,0.610509248,0.091469407,0.13186722,0.20329767,0.29249948,0.28086621,0.12754592,0.044105317,0.006496208,0.000177421
Ferrum College,6,Selective private,1,3,VA,51067,Franklin,0.38845554,0.53825051,0.016068542,1.71E-05,93533.9499,71100,0.568565143,0.11282829,0.17546266,0.21818276,0.2574054,0.23612091,0.11522837,0.066648066,0.011261962,0.000152903
Finger Lakes Community College - SUNY Office Of Community College,9,Two-year (public and private not-for-profit),2,1,NY,36069,Ontario,0.50633913,0.47119114,0.013223222,0.000355073,76683.69178,69100,0.540310202,0.11261027,0.16321324,0.26741827,0.31611782,0.14064044,0.046649385,0.017011786,0.00313127,6.31E-05
Fisher College,8,Nonselective four-year private not-for-profit,1,1,MA,25025,Suffolk,0.72011662,0.3446407,0.023498505,1.90E-05,80789.60507,55800,0.478062296,0.18575293,0.2460458,0.21218158,0.20590255,0.15011707,0.062377997,0.031409986,0.008109947,0.002890513
Fitchburg State University,5,Selective public,1,1,MA,25027,Worcester,0.59411764,0.55439347,0.017469816,2.21E-05,98777.63547,89500,0.647207268,0.056541305,0.11083756,0.19683674,0.31901899,0.31676543,0.11589308,0.034381267,0.003999201,0
Flagler College,6,Selective private,1,3,FL,12109,St Johns,0.64460784,0.62477404,0.015132731,5.96E-05,128790.4818,100900,0.69162786,0.047652148,0.08862485,0.17276774,0.26337454,0.42758074,0.21600191,0.10259704,0.018759901,0.001185863
Flathead Valley Community College,9,Two-year (public and private not-for-profit),2,4,MT,30029,Flathead,0.55734193,0.53862935,0.018682133,1.51E-05,65496.9067,55700,0.469248688,0.16455267,0.22160104,0.29417735,0.21460983,0.1050591,0.039433256,0.02154066,0.006102138,5.52E-05
Florence - Darlington Technical College,9,Two-year (public and private not-for-profit),2,3,SC,45041,Florence,0.62328178,0.39592451,0.014684206,4.22E-06,55543.7372,43900,0.410157096,0.2759634,0.24040185,0.21441831,0.18232164,0.086894885,0.031212304,0.011489794,0.000561752,3.06E-05
Florida Agricultural & Mechanical University,5,Selective public,1,3,FL,12073,Leon,0.58136278,0.27595103,0.032663293,0.000917179,73603.98865,57000,0.503448825,0.15397835,0.24432582,0.22032955,0.18805216,0.19331411,0.082143836,0.029322583,0.002056451,1.24E-05
Florida Atlantic University,5,Selective public,1,3,FL,12099,Palm Beach,0.58641481,0.47391012,0.03070315,0.00120032,121982.2715,77100,0.590164636,0.11623573,0.16960219,0.1923808,0.21725696,0.30452433,0.17060694,0.087381221,0.019166872,0.002811538
Florida College,8,Nonselective four-year private not-for-profit,1,3,FL,12057,Hillsborough,0.50566894,0.75396061,0.010077563,0,97335.90249,85500,0.622954529,0.054100055,0.13748643,0.23382927,0.28400406,0.29058027,0.12428138,0.051681567,0.0119193,0.000276647
Florida College Of Natural Health,11,Two-year for-profit,2,3,FL,12095,Orange,0.875,0.37221631,0,0,73897.84115,57300,0.503203074,0.1832387,0.19474044,0.23801452,0.20233098,0.1816752,0.089684702,0.038683601,0.005299528,0.000291674
Florida Gateway College,7,Nonselective four-year public,1,3,FL,12023,Columbia,0.55801105,0.53163081,0.016626302,8.02E-05,63584.05464,52900,0.464078928,0.1943683,0.23754096,0.25599292,0.22012928,0.091968521,0.030972566,0.018393967,0.002393429,0.000300727
Florida Gulf Coast University,5,Selective public,1,3,FL,12071,Lee,0.59868419,0.55987275,0.018777234,0.000822884,103619.5079,78900,0.600089988,0.084213451,0.15406623,0.22036117,0.26332313,0.27803594,0.14454891,0.079777867,0.01112841,6.68E-06
Florida Institute Of Technology,6,Selective private,1,3,FL,12009,Brevard,0.33741081,0.60793817,0.037505582,0.003008114,117847.8296,86300,0.64837331,0.073299572,0.11916897,0.20293257,0.25457177,0.35002714,0.19530457,0.1015997,0.011676306,0.001010885
Florida International University,5,Selective public,1,3,FL,12086,,0.57409668,0.47471055,0.052249581,0.001172267,93458.26823,66700,0.551847378,0.15013786,0.19120681,0.20280281,0.20142123,0.2544314,0.12947427,0.060615454,0.01202119,0.000400918
Florida Memorial University,6,Selective private,1,3,FL,12086,,0.5546875,0.15215114,0.025294451,6.94E-05,47531.41276,33400,0.337970624,0.31662732,0.33372256,0.20565793,0.10197551,0.042016495,0.009799396,0.002779628,0.000505221,0.0001292
Florida Southern College,6,Selective private,1,3,FL,12105,Polk,0.61500412,0.62469363,0.01863743,0.000131858,117392.4731,85400,0.638904493,0.077357441,0.14233154,0.19979739,0.25262856,0.32788497,0.18416084,0.10121273,0.016569937,0.000877044
Florida State College At Jacksonville,7,Nonselective four-year public,1,3,FL,12031,Duval,0.56834948,0.44544125,0.015607346,9.77E-05,79549.82851,66600,0.532833618,0.1390433,0.18698858,0.2284136,0.25483763,0.19071677,0.072269969,0.029742839,0.003989434,0.0002715
Florida State University,5,Selective public,1,3,FL,12073,Leon,0.582537,0.56862932,0.021649536,0.000492116,139113.5195,100500,0.682227456,0.063315511,0.10973342,0.15974638,0.22803575,0.4391689,0.25467047,0.13339213,0.023159029,0.001651619
Florida Technical College,10,Four-year for-profit,1,3,FL,12095,Orange,0.42261904,0.32299599,0.017720211,2.46E-05,48193.02297,39200,0.363766836,0.30391607,0.27035162,0.23791648,0.13236345,0.055452362,0.011993018,0.009403315,0.003425512,4.54E-05
Fontbonne University,6,Selective private,1,2,MO,29189,St Louis,0.69300914,0.63777643,0.009016399,0.00011151,140073.8906,88800,0.664082408,0.052423753,0.10818706,0.18686906,0.32603845,0.32648164,0.14715162,0.0860122,0.032612283,0.009024827
Foothill-Deanza Community College District,9,Two-year (public and private not-for-profit),2,4,CA,6085,Santa Clara,0.46625564,0.37794676,0.0255091,0.001082718,120318.3852,80200,0.600629942,0.12964211,0.14418896,0.1846675,0.20025575,0.34124559,0.20239039,0.10193549,0.016573552,0.002082297
Fordham University,4,Highly selective private,1,1,NY,36005,Bronx,0.59130019,0.50407398,0.039781969,0.003079972,187958.381,113300,0.706998856,0.076365903,0.093862742,0.12761247,0.19168758,0.51047134,0.33115616,0.19682981,0.047085628,0.005358859
Forsyth Technical Community College,9,Two-year (public and private not-for-profit),2,3,NC,37067,Forsyth,0.54860139,0.4618026,0.005303305,0,75645.00001,67300,0.528615295,0.14158376,0.20054689,0.20826049,0.27485666,0.17475227,0.061356973,0.020973278,0.002685228,3.56E-05
Fort Hays State University,5,Selective public,1,2,KS,20051,Ellis,0.5248307,0.67745829,0.013584882,0,81363.81813,71100,0.567175427,0.072559156,0.16323628,0.29210186,0.30504265,0.16705993,0.059651017,0.022824893,0.00385079,3.84E-07
Fort Lewis College,5,Selective public,1,4,CO,8067,La Plata,0.44285145,0.49071598,0.008525146,0.000394758,144700.6965,90600,0.654771556,0.073559597,0.12680106,0.17753358,0.2392278,0.38287786,0.23628709,0.14055201,0.026722632,0.003208905
Fort Myers Institute Of Technology And Cape Coral Institute Of Technology,9,Two-year (public and private not-for-profit),2,3,FL,12071,Lee,0.44097221,0.35795227,0.012328224,4.46E-05,58993.71856,49800,0.433556624,0.23465465,0.24595553,0.22687313,0.17788777,0.11462895,0.039427686,0.01148743,0.001396883,0.000152775
Fort Scott Community College,9,Two-year (public and private not-for-profit),2,2,KS,20011,Bourbon,0.51298118,0.5810743,0.012158751,0,64409.3005,56800,0.477060602,0.17471701,0.22366245,0.27381736,0.22491848,0.10288469,0.026245782,0.010537539,0.001415211,6.83E-05
Fort Valley State University,5,Selective public,1,3,GA,13225,Peach,0.51793528,0.2162244,0.028276326,0,55838.20464,45100,0.424966906,0.23707381,0.26917109,0.21199635,0.18217045,0.099588297,0.023445351,0.00464785,0.000139775,2.87E-05
Fortis College of Houston - TX,12,Less than two-year schools of any type,3,3,TX,48201,Harris,0.79136693,0.26827091,0.040602647,0.000210424,42393.37109,27900,0.268829743,0.41854,0.34665793,0.1164262,0.082498118,0.035877854,0.016452665,0.002455426,0.000758529,0.0001292
Fortis College of Largo - FL,10,Four-year for-profit,1,3,FL,12103,Pinellas,0.80748665,0.22519137,0.004277433,6.78E-05,58020.78385,35100,0.33030356,0.40457523,0.26689032,0.1957728,0.072403491,0.060358237,0.030435514,0.009170037,0.0042323,0.000160987
Fortis College of Richmond - VA,11,Two-year for-profit,2,3,VA,51087,Henrico,,0.40965852,0.001297455,0,53349.57326,50000,0.424076781,0.22952993,0.23964836,0.27397597,0.20279451,0.054051254,0.032034941,0.01051548,0.000247751,3.79E-05
Fortis Institute of Palm Springs - FL,11,Two-year for-profit,2,3,FL,12099,Palm Beach,0.85546875,0.26289353,0.01496817,4.90E-05,46762.23698,33200,0.305827747,0.36170393,0.322404,0.15496421,0.10185486,0.059072867,0.019184431,0.003206894,0.000700252,0.000167135
Fox College,11,Two-year for-profit,2,2,IL,17031,Cook,0.91772151,0.58507264,0.020481298,0.000233951,77194.02865,70500,0.614624719,0.12217592,0.15433945,0.2609202,0.28141803,0.18114637,0.027652608,0.011883361,0.004617913,0.000621157
Fox Valley Technical College,9,Two-year (public and private not-for-profit),2,2,WI,55087,Outagamie,0.46779731,0.58647311,0.005808029,1.63E-05,81514.65616,74600,0.578280095,0.063338026,0.15073957,0.27086827,0.36423409,0.15082002,0.048825901,0.021003911,0.003959566,0
Francis Marion University,5,Selective public,1,3,SC,45041,Florence,0.61019111,0.50037467,0.014445205,0.000651461,81505.38386,68500,0.537858471,0.14397457,0.18859139,0.20713031,0.26716179,0.19314209,0.073602721,0.039220866,0.005368969,4.94E-05
Francis Tuttle Technology Center School District No. 21,12,Less than two-year schools of any type,3,3,OK,40109,Oklahoma,0.48196721,0.38991836,0.008632381,1.83E-05,72334.08814,57900,0.493703638,0.16404101,0.23351333,0.2173326,0.24350123,0.14161167,0.053978987,0.025179643,0.003779773,4.57E-05
Franciscan University Of Steubenville,6,Selective private,1,2,OH,39081,Jefferson,0.62348557,0.69340795,0.006215166,0,140660.6259,102500,0.709836716,0.036558274,0.092038952,0.14791635,0.28807676,0.43540993,0.26247028,0.1503519,0.021673834,0.00105658
Franklin & Marshall College,2,Other elite schools (public and private),1,1,PA,42071,Lancaster,0.48954985,0.57183206,0.012550002,6.38E-05,281373.8709,162900,0.812555612,0.022225803,0.049962074,0.086633638,0.16653943,0.67463911,0.52969313,0.38271695,0.10822622,0.006501879
Franklin Career Institute,12,Less than two-year schools of any type,3,1,NY,36059,Nassau,0.91666669,0.14996074,0.021521056,0.000183949,39662.83984,25100,0.252361124,0.49979463,0.30128646,0.14471896,0.023157388,0.031042598,0.014743456,0.010062325,0.002776309,0.000288833
Franklin College Of Indiana,6,Selective private,1,2,IN,18081,Johnson,0.52052981,0.71523273,0.011643652,0.001460642,104945.5756,85300,0.644365087,0.048893746,0.11656143,0.22027335,0.3103776,0.30389383,0.10563589,0.042449236,0.010226437,0.001311438
Franklin Pierce University,6,Selective private,1,1,NH,33005,Cheshire,0.4968102,0.51303923,0.013234765,0,107246.193,86300,0.630810468,0.077550322,0.13326553,0.20080748,0.27334267,0.31503406,0.14712736,0.070593804,0.012240852,2.35E-05
Franklin University,8,Nonselective four-year private not-for-profit,1,2,OH,39049,Franklin,0.62666667,0.52510393,0.034656335,0.002689179,75003.68296,65800,0.526617781,0.13459419,0.21417238,0.2194877,0.24017638,0.19156943,0.071004026,0.029580828,0.003012595,2.70E-05
Frederick Community College,9,Two-year (public and private not-for-profit),2,3,MD,24021,Frederick,0.56258893,0.53785348,0.008528406,0.00077089,101489.5234,90900,0.649946948,0.05037871,0.10900549,0.1823148,0.31802812,0.3402729,0.13504934,0.037736554,0.003378855,0.000748288
Freed Hardeman University,6,Selective private,1,3,TN,47023,Chester,0.54565215,0.76035464,0.014443509,0.002183174,94981.27852,77500,0.598860862,0.065569624,0.13876796,0.26084012,0.32967451,0.20514782,0.080504887,0.022741189,0.006336858,0.001595924
Fresno Pacific University,6,Selective private,1,4,CA,6019,Fresno,0.69294608,0.7836647,0.037159514,5.60E-05,83954.31628,71100,0.575462344,0.10072254,0.14980248,0.26561975,0.28695971,0.1968956,0.10920597,0.036917746,0.0038236,0.000222786
Friends University,6,Selective private,1,2,KS,20173,Sedgwick,0.5608108,0.6373685,0.009742884,1.78E-05,101131.9606,82200,0.616726087,0.065962031,0.1377472,0.22360432,0.29626244,0.2764239,0.12018376,0.061694007,0.009534661,0.00010429
Full Sail University,10,Four-year for-profit,1,3,FL,12095,Orange,0.11588331,0.35598376,0.014656409,0.000421404,118058.1271,80400,0.603614888,0.10621342,0.15743063,0.18757267,0.23977512,0.30900812,0.15795618,0.086479925,0.018214229,0.001631718
Furman University,4,Highly selective private,1,3,SC,45045,Greenville,0.56217349,0.69398355,0.006919809,0.000379671,290693.5642,156700,0.806631404,0.022132641,0.047351703,0.089136332,0.15923896,0.68214035,0.51288402,0.35714242,0.10985211,0.011583134
Gadsden State Community College,9,Two-year (public and private not-for-profit),2,3,AL,1055,Etowah,0.57648492,0.52328116,0.019624241,0,63239.81281,52000,0.448303224,0.21807286,0.22766544,0.24029009,0.21775547,0.096216105,0.02947915,0.013671598,0.0024868,6.85E-05
Gallaudet University,8,Nonselective four-year private not-for-profit,1,3,DC,11001,District Of Columbia,0.53191489,0.32610452,0.005706394,1.75E-05,97807.64919,71200,0.557098946,0.13185443,0.19447087,0.1934019,0.25857162,0.22170109,0.12385651,0.072308823,0.009764771,0.002358598
Galveston College,9,Two-year (public and private not-for-profit),2,3,TX,48167,Galveston,0.59188032,0.35298809,0.025818452,0,61276.83333,45600,0.432699293,0.2565257,0.24652897,0.17922252,0.178589,0.13913374,0.046564296,0.011372616,0.00125405,0.0001292
Gannon University,6,Selective private,1,1,PA,42049,Erie,0.59756923,0.65811163,0.014403216,0.001964876,97523.95604,83300,0.621848783,0.068104059,0.12422435,0.22852635,0.30785048,0.27129474,0.11124557,0.040984709,0.005012613,0.000153255
Garden City Community College,9,Two-year (public and private not-for-profit),2,2,KS,20055,Finney,0.48404256,0.53274381,0.012827128,2.36E-05,65635.43234,58000,0.480982623,0.14519116,0.24730049,0.28499246,0.23090829,0.091607735,0.031855099,0.012121418,0.002494654,3.39E-05
Gardner - Webb University,6,Selective private,1,3,NC,37045,Cleveland,0.57575756,0.67279464,0.012200096,3.79E-06,102555.4919,84800,0.622917517,0.06982521,0.13368824,0.20206821,0.29208785,0.30233043,0.13107643,0.054620795,0.01182419,8.81E-05
Garrett College,9,Two-year (public and private not-for-profit),2,3,MD,24023,Garrett,0.43939394,0.51193547,0.019814374,3.65E-05,62906.7132,53800,0.475661071,0.18811122,0.20930894,0.26216701,0.2035526,0.13686025,0.068485111,0.021408943,0.002221325,0
Gaston College,9,Two-year (public and private not-for-profit),2,3,NC,37071,Gaston,0.61077845,0.48564935,0.005710326,6.17E-06,69720.79121,63100,0.507432502,0.14346778,0.20742461,0.23921071,0.28259456,0.12730236,0.028822437,0.010306786,0.001841841,9.25E-05
Gateway Community College,9,Two-year (public and private not-for-profit),2,1,CT,9009,New Haven,0.50194365,0.31776825,0.012115833,2.76E-05,77593.00335,68300,0.538604447,0.1345737,0.1818254,0.22368866,0.26479614,0.19511604,0.065868594,0.020643175,0.001887207,0.000111714
Gateway Technical College,9,Two-year (public and private not-for-profit),2,2,WI,55059,Kenosha,0.55745804,0.43159407,0.006881877,4.76E-07,76312.43974,73100,0.558357717,0.11707708,0.15982029,0.22135393,0.31784007,0.18390852,0.049626175,0.015530448,0.001266365,1.54E-05
Gavilan College,9,Two-year (public and private not-for-profit),2,4,CA,6085,Santa Clara,0.51245755,0.41951919,0.01774694,1.13E-05,96273.36366,80500,0.589599525,0.11510088,0.16547424,0.18107636,0.22586635,0.31248212,0.15773088,0.062647261,0.005901581,0.000669883
Gene Juarez Beauty Schools,12,Less than two-year schools of any type,3,4,WA,53061,Snohomish,0.93734938,0.47348315,0.009876563,0,90313.84473,75600,0.57949116,0.092716485,0.17403659,0.20797551,0.26411468,0.26115677,0.12444558,0.051235925,0.005785586,0.000149232
Genesee Community College,9,Two-year (public and private not-for-profit),2,1,NY,36037,Genesee,0.5535484,0.48416802,0.013748043,2.83E-05,69917.05681,64400,0.51212776,0.13002007,0.19009542,0.26843566,0.2891902,0.12225857,0.031589691,0.010818018,0.001544877,0.000879081
Geneva College,6,Selective private,1,1,PA,42007,Beaver,0.54895836,0.7396397,0.012010647,2.57E-05,96639.69707,77800,0.599514883,0.059030667,0.1394771,0.25921082,0.32429042,0.21799095,0.084941462,0.051012084,0.008585387,3.01E-05
George C. Wallace Community College,9,Two-year (public and private not-for-profit),2,3,AL,1045,Dale,0.57455468,0.5186184,0.018336389,0.000471747,64145.92066,53600,0.458564837,0.22807443,0.21570534,0.21301222,0.23293969,0.11026815,0.039591473,0.016600801,0.002677172,0.000184584
George C. Wallace State Community College,9,Two-year (public and private not-for-profit),2,3,AL,1043,Cullman,0.53810042,0.6157468,0.017783968,0,67642.46044,58500,0.485443408,0.14693485,0.21965218,0.28230476,0.24201249,0.10909572,0.032767169,0.013319062,0.001212284,9.38E-06
George Fox University,6,Selective private,1,4,OR,41071,Yamhill,0.61192352,0.72754705,0.011665585,7.82E-05,109181.3766,89000,0.663123927,0.044805583,0.11381292,0.21871711,0.28755254,0.33511183,0.15017173,0.080184989,0.013309986,0.000162969
George Mason University,5,Selective public,1,3,VA,51059,Fairfax,0.5714727,0.54259735,0.030900523,0.0004548,128011.1365,107500,0.693783247,0.061455533,0.10718496,0.1463483,0.20575847,0.47925276,0.27728832,0.11705179,0.013030352,0.000770994
George Washington University,2,Other elite schools (public and private),1,3,DC,11001,District Of Columbia,0.56304109,0.54504699,0.021565983,0.001246515,293372.1622,137300,0.75892832,0.051041558,0.081455447,0.11844667,0.16060691,0.58844936,0.46102962,0.31927648,0.096516728,0.011699039
Georgetown College,6,Selective private,1,3,KY,21209,Scott,0.57876712,0.74062014,0.014632449,0.001084644,125551.1404,93600,0.684499607,0.051683106,0.087863028,0.15111993,0.31075642,0.39857748,0.20720112,0.10234786,0.013773615,0.001203106
Georgetown University,2,Other elite schools (public and private),1,3,DC,11001,District Of Columbia,0.53783786,0.5585084,0.01945704,0.003636484,497298.8292,195100,0.831564753,0.03188619,0.047883362,0.079672672,0.1138293,0.72672844,0.61180902,0.47898474,0.1779272,0.028152356
Georgia College & State University,5,Selective public,1,3,GA,13009,Baldwin,0.61381751,0.64353776,0.011395562,2.51E-05,112168.4729,95100,0.671297848,0.061524745,0.097447768,0.15489636,0.30235863,0.38377234,0.16252397,0.06501212,0.009464812,0.000953139
Georgia Highlands College,9,Two-year (public and private not-for-profit),2,3,GA,13115,Floyd,0.59393156,0.59809762,0.014752206,0,84613.78906,76000,0.578947842,0.082583115,0.17090076,0.22560628,0.30416235,0.21674758,0.078956835,0.029378086,0,0
Georgia Institute Of Technology,3,Highly selective public,1,3,GA,13121,Fulton,0.29301402,0.63464087,0.018577013,0.001543645,173282.7882,126000,0.762623755,0.032330997,0.069793746,0.1110283,0.20050474,0.58634228,0.37228882,0.20501772,0.032896768,0.002439028
Georgia Military College,9,Two-year (public and private not-for-profit),2,3,GA,13009,Baldwin,0.50814843,0.45242146,0.018223684,0,72456.52209,62000,0.505911035,0.16684824,0.20672154,0.23180635,0.24225272,0.15237121,0.059913862,0.021795565,0.002597656,0.000302678
Georgia Perimeter College,9,Two-year (public and private not-for-profit),2,3,GA,13089,DeKalb,0.56990504,0.41406617,0.015731594,0.000393426,93271.18564,68800,0.557947937,0.13379997,0.20076725,0.19422719,0.20205633,0.26914924,0.13686715,0.065149397,0.007857751,0.000632963
Georgia Piedmont Technical College,9,Two-year (public and private not-for-profit),2,3,GA,13089,DeKalb,0.51775569,0.28711006,0.017360382,7.31E-05,56759.16173,47200,0.430205107,0.22605264,0.26358888,0.21965793,0.19436592,0.096334636,0.022652632,0.004648771,0.001407852,6.81E-05
Georgia Southern University,5,Selective public,1,3,GA,13031,Bulloch,0.51575565,0.543338,0.016830379,0.000247085,108631.12,88100,0.632503365,0.086741522,0.1332307,0.18108703,0.25031221,0.34862846,0.17002934,0.072684869,0.009138973,0.000650504
Georgia Southwestern State University,5,Selective public,1,3,GA,13261,Sumter,0.62313432,0.58438325,0.018960178,4.74E-05,80580.12965,73400,0.561155016,0.12420161,0.18023516,0.21088591,0.2711089,0.21356851,0.073669672,0.023607947,0.001631555,4.41E-05
Georgia State University,5,Selective public,1,3,GA,13121,Fulton,0.63036489,0.46881202,0.020784898,0.000415434,108764.681,82200,0.612789696,0.093061909,0.15606478,0.19085567,0.23306328,0.32695433,0.16754818,0.077714577,0.010490732,0.001268159
Georgian Court University,6,Selective private,1,1,NJ,34029,Ocean,0.97811818,0.54505438,0.02104051,0,117901.9835,83300,0.609470495,0.093659356,0.14660545,0.18060659,0.26798058,0.31114793,0.1397213,0.05725456,0.01305658,0.002181664
Germanna Community College,9,Two-year (public and private not-for-profit),2,3,VA,51137,Orange,0.55879498,0.53403229,0.009877199,0.000508198,90640.63993,84600,0.621441957,0.07303568,0.12560235,0.19638339,0.34086159,0.26411706,0.087074883,0.023086296,0.001622384,5.23E-05
Gettysburg College,4,Highly selective private,1,1,PA,42001,Adams,0.53139538,0.63865715,0.008159867,0.001241259,282178.1203,138500,0.795637896,0.018628128,0.051101472,0.11865012,0.19361117,0.61800915,0.45190719,0.31284624,0.10693479,0.008955717
Glendale Career College,12,Less than two-year schools of any type,3,4,CA,6037,Los Angeles,0.76550388,0.34147748,0.032009132,0.000333909,53849.61801,33200,0.295687583,0.38327798,0.29240406,0.18592729,0.075520687,0.06287007,0.029550998,0.01301962,0.001643818,0.000375691
Glendale Community College,9,Two-year (public and private not-for-profit),2,4,CA,6037,Los Angeles,0.50336349,0.39864227,0.070821285,0.001836267,60158.27255,40100,0.401219892,0.32359213,0.22000571,0.1765355,0.14426948,0.13559717,0.059154723,0.02547292,0.003114917,0.000259255
Glenville State College,5,Selective public,1,3,WV,54021,Gilmer,0.4882904,0.59509158,0.013810954,0,59424.31324,55900,0.46544074,0.17755176,0.22199185,0.27759323,0.2515066,0.07135658,0.024395613,0.003780336,0.001065808,9.35E-05
Globe University,10,Four-year for-profit,1,2,MN,27163,Washington,0.67625898,0.4250845,0.007822101,2.68E-05,79880.5818,72300,0.552584331,0.09056478,0.17023535,0.23853774,0.3345947,0.16606742,0.040016662,0.009232378,0.002412389,0.00011184
Gogebic Community College,9,Two-year (public and private not-for-profit),2,2,MI,26053,Gogebic,0.47385621,0.53197873,0.008584932,0.000108881,102457.4974,62200,0.49593844,0.13049451,0.18710655,0.33022255,0.24419478,0.10798152,0.050070465,0.024948798,0.005105339,0.002396726
Goldey-Beacom College,6,Selective private,1,3,DE,10003,New Castle,0.4977169,0.49083677,0.008131665,0,109674.0339,80300,0.632291277,0.088888004,0.14502317,0.16569896,0.26100057,0.33938932,0.1950817,0.07078243,0.015572417,0.0001292
Gonzaga University,4,Highly selective private,1,4,WA,53063,Spokane,0.53070176,0.64240348,0.008021754,0,202273.4586,121100,0.761233553,0.02698392,0.067326613,0.12614593,0.2291756,0.55036795,0.35729319,0.21897499,0.048732743,0.006978425
Gordon College,6,Selective private,1,1,MA,25009,Essex,0.64966553,0.72969699,0.005958903,0,136055.809,95900,0.693102514,0.045012005,0.087514594,0.19676216,0.2678729,0.40283841,0.23581304,0.13017561,0.019517448,0.000913777
Gordon State College,7,Nonselective four-year public,1,3,GA,13171,Lamar,0.56751388,0.50411117,0.009784251,0,85595.60189,74100,0.578817039,0.087740406,0.17587569,0.2232098,0.2869691,0.22620495,0.089540064,0.037195947,0.003610521,0.000416732
Goshen College,6,Selective private,1,2,IN,18039,Elkhart,0.60198021,0.67481667,0.010853255,0.000140975,135334.0399,86900,0.652461384,0.04634095,0.1062827,0.21940282,0.32185414,0.30611932,0.15520011,0.078000344,0.015715312,0.001912649
Goucher College,6,Selective private,1,3,MD,24005,Baltimore,0.7053892,0.5346781,0.021792538,0.0012532,174037.2533,106300,0.713402793,0.06165674,0.087811992,0.14445752,0.21879521,0.48727846,0.32278928,0.1935297,0.049457658,0.002573683
Grace College And Theological Seminary,6,Selective private,1,2,IN,18085,Kosciusko,0.58246654,0.78883553,0.01632075,0.000141115,86975.2931,73100,0.583996843,0.06753169,0.1560111,0.28825811,0.28637457,0.20182452,0.09529011,0.032133263,0.002054116,3.04E-05
Graceland University,6,Selective private,1,2,IA,19053,Decatur,0.57478005,0.6773985,0.02081232,9.99E-05,88871.24219,77200,0.582339923,0.10816111,0.13026164,0.25433239,0.24488899,0.2623558,0.092662908,0.029149422,0.000505221,0.0001292
Grambling State University,5,Selective public,1,3,LA,22061,Lincoln,0.53739274,0.18649273,0.046168223,0.000802563,47434.05128,34300,0.357170331,0.34357506,0.29734102,0.16166984,0.11868451,0.078729615,0.016685059,0.001883169,0,0
Grand Canyon University,10,Four-year for-profit,1,4,AZ,4013,Maricopa,0.67826086,0.64292312,0.008643682,8.09E-06,116612.5754,90000,0.650454793,0.060822114,0.11891363,0.20013575,0.26933384,0.35079467,0.16494606,0.081122555,0.014545845,0.002896761
Grand Rapids Community College,9,Two-year (public and private not-for-profit),2,2,MI,26081,Kent,0.4726688,0.56349146,0.006090059,8.89E-05,93852.21684,83400,0.610898327,0.071229242,0.13193375,0.20749478,0.34187618,0.24746607,0.089470349,0.038800996,0.005192093,0.00019923
Grand Valley State University,5,Selective public,1,2,MI,26139,Ottawa,0.59756398,0.68957132,0.007906375,0.000350156,112227.0293,96400,0.688965975,0.033914097,0.080890924,0.17999315,0.3326261,0.37257573,0.15887825,0.062824883,0.007520849,0.000263319
Grand View University,6,Selective private,1,2,IA,19153,Polk,0.66802442,0.65682054,0.015049594,0,84209.74992,71800,0.569282078,0.078206643,0.19584495,0.23835677,0.30238351,0.18520811,0.064963438,0.025057722,0.00610063,2.26E-05
Grays Harbor College,9,Two-year (public and private not-for-profit),2,4,WA,53027,Grays Harbor,0.54524887,0.47959512,0.019774305,0.001149823,63586.25956,58600,0.482708928,0.17846781,0.18915057,0.26214087,0.26412264,0.10611808,0.035249572,0.007903316,1.81E-05,1.81E-05
Grayson County College,9,Two-year (public and private not-for-profit),2,3,TX,48181,Grayson,0.56004977,0.53165483,0.017737901,0.001221624,77281.51741,66900,0.530008176,0.14582406,0.17524236,0.24809267,0.26088896,0.16995189,0.04748762,0.016434638,0.005584864,0.000764952
Great Basin College,7,Nonselective four-year public,1,4,NV,32007,Elko,0.56756759,0.5547474,0.021709193,0,84606.508,77300,0.563019565,0.11967289,0.13938655,0.19754833,0.37158293,0.1718092,0.031333532,0.014483553,0.002944063,0.001355713
Great Falls College Montana State University,9,Two-year (public and private not-for-profit),2,4,MT,30013,Cascade,0.70032573,0.52889317,0.013854538,0,65062.72651,54300,0.446448804,0.21464956,0.20850509,0.30290788,0.19156154,0.082375906,0.028658148,0.015100183,0.003764309,0.000159737
Green Mountain College,6,Selective private,1,1,VT,50021,Rutland,0.44753748,0.44745073,0.015690058,0.000200583,123650.6112,93200,0.647680868,0.085614152,0.13174905,0.16499168,0.26036537,0.35727978,0.1885221,0.10983259,0.021846453,5.72E-05
Green River Community College,9,Two-year (public and private not-for-profit),2,4,WA,53033,King,0.47680691,0.52441096,0.012210589,0.000289045,99165.93143,90200,0.647706551,0.061002646,0.10185105,0.18798324,0.33650726,0.31265587,0.10314179,0.030625761,0.005875266,0.000246114
Greenfield Community College,9,Two-year (public and private not-for-profit),2,1,MA,25011,Franklin,0.53253895,0.41624087,0.008510238,0,85922.04667,69100,0.54122623,0.12194675,0.18267559,0.25795612,0.26884842,0.16857314,0.060802013,0.021520847,0.002846634,0.00100812
Greensboro College,6,Selective private,1,3,NC,37081,Guilford,0.47780126,0.5815593,0.005894829,0,164265.7091,95400,0.674879995,0.055818897,0.10566832,0.17298633,0.28990451,0.37562186,0.18236145,0.10331786,0.022706317,0.00205091
Greenville College,6,Selective private,1,2,IL,17005,Bond,0.46901172,0.76091379,0.014662865,8.62E-05,94885.63357,80000,0.608981074,0.058752801,0.13540208,0.2471402,0.3246237,0.23408133,0.10404707,0.038822565,0.005070679,8.86E-05
Greenville Technical College,9,Two-year (public and private not-for-profit),2,3,SC,45045,Greenville,0.54340452,0.49100593,0.012220022,0,74384.0814,64600,0.520746101,0.14796117,0.20004231,0.22753048,0.25973937,0.16472667,0.062118463,0.025797334,0.002583869,0.000172912
Grinnell College,4,Highly selective private,1,2,IA,19157,Poweshiek,0.56591642,0.52433735,0.014552889,0.003315155,187666.0393,126400,0.764230049,0.035332449,0.059681505,0.11507009,0.20103362,0.58888239,0.39571157,0.20725198,0.040381648,0.00474938
Grossmont-Cuyamaca Community College District,9,Two-year (public and private not-for-profit),2,4,CA,6073,San Diego,0.5098719,0.49746913,0.01868738,0.000489735,95826.83271,77400,0.583346918,0.11397042,0.15377186,0.2015022,0.2668319,0.26392362,0.11487134,0.04796597,0.007171635,0.000674881
Guilford College,6,Selective private,1,3,NC,37081,Guilford,0.52263373,0.45325154,0.008433094,4.69E-05,158172.9271,109900,0.716758311,0.041673347,0.11251408,0.16916445,0.20875712,0.4678911,0.32545131,0.175341,0.034161203,0.003676067
Guilford Technical Community College,9,Two-year (public and private not-for-profit),2,3,NC,37081,Guilford,0.51094562,0.42403993,0.00641773,0,77007.34714,63000,0.517317855,0.15506712,0.2091058,0.21403173,0.23777749,0.18401791,0.079533122,0.031049144,0.002504749,0.000418867
Gulf Coast State College,7,Nonselective four-year public,1,3,FL,12005,Bay,0.5632745,0.49606222,0.01816424,7.53E-05,65935.56538,56700,0.473896842,0.18489558,0.22016844,0.25965917,0.21768667,0.1175902,0.051074754,0.018019605,0.002750496,0.000279236
Gustavus Adolphus College,4,Highly selective private,1,2,MN,27103,Nicollet,0.56466705,0.71230143,0.006676639,0.001112731,166242.1424,114000,0.747944316,0.021438349,0.064273573,0.13433298,0.26091552,0.51903963,0.30907965,0.18419328,0.037000399,0.003045037
Gwinnett Technical College,9,Two-year (public and private not-for-profit),2,3,GA,13135,Gwinnett,0.44742608,0.52343118,0.006821968,0,92078.10096,80600,0.603260621,0.076562874,0.15840435,0.21706823,0.28362685,0.26433763,0.11041424,0.038337067,0.003403802,0.000556421
Gwynedd Mercy University,6,Selective private,1,1,PA,42091,Montgomery,0.77758008,0.61892176,0.013760934,1.40E-05,110224.1635,94700,0.663794972,0.056664504,0.099311128,0.19257043,0.29425675,0.35719717,0.14362206,0.070022032,0.010236129,3.96E-05
H. Councill Trenholm State Technical College,9,Two-year (public and private not-for-profit),2,3,AL,1101,Montgomery,0.53470439,0.22699794,0.032162245,6.06E-05,44264.98828,34500,0.34540685,0.3317906,0.31750828,0.16774797,0.12892315,0.054029986,0.011596275,0.007458482,0.001224641,0.000222767
Hagerstown Community College,9,Two-year (public and private not-for-profit),2,3,MD,24043,Washington,0.51575756,0.53348613,0.011675529,0,85194.90659,71500,0.565302284,0.089148834,0.16597274,0.26118746,0.3016535,0.18203737,0.076680124,0.028150599,0.003930855,2.64E-05
Halifax Community College,9,Two-year (public and private not-for-profit),2,3,NC,37083,Halifax,0.60784316,0.2683163,0.015616477,0,41218.51784,29900,0.32275952,0.38912919,0.28857985,0.16389245,0.11063594,0.047762573,0.023087494,0.005286474,0.000462325,7.42E-05
Hallmark College Of Technology,8,Nonselective four-year private not-for-profit,1,3,TX,48029,Bexar,0.29953918,0.41745961,0.055862065,0,56981.625,42400,0.380068292,0.31601173,0.26608276,0.20713496,0.14638259,0.064387962,0.025238588,0.005134498,0.002292857,0.000354831
Hamilton College,2,Other elite schools (public and private),1,1,NY,36065,Oneida,0.52515244,0.59373504,0.023019336,0.001590212,333233.7669,164600,0.810083465,0.038505599,0.051822692,0.082808569,0.15469781,0.67216539,0.53557944,0.37882301,0.12935546,0.0127276
Hamline University,6,Selective private,1,2,MN,27123,Ramsey,0.64071858,0.59065008,0.01494779,4.99E-05,124200.522,94300,0.680207301,0.046895918,0.10644486,0.18325879,0.29222944,0.37117094,0.20428672,0.11553506,0.01624939,0.001817794
Hampden Sydney College,6,Selective private,1,3,VA,51147,Prince Edward,0.007978723,0.64348096,0.006461606,0.000997431,232201.7823,141200,0.793553524,0.016432583,0.065041251,0.11054303,0.1602326,0.64775056,0.45059845,0.31677681,0.078939587,0.002968721
Hampshire College,4,Highly selective private,1,1,MA,25015,Hampshire,0.57464457,0.38644826,0.007416717,0.001036136,254318.3371,119300,0.72355126,0.057154361,0.10661892,0.13214789,0.17757855,0.52650028,0.39477608,0.27990392,0.081500396,0.010621411
Hampton University,6,Selective private,1,3,VA,51650,Hampton City,0.62933528,0.30182973,0.021393161,0.000376385,97344.6734,79500,0.616413285,0.07955189,0.16146532,0.2162021,0.22676349,0.31601724,0.15704672,0.057280786,0.006085634,0.000156696
Hannibal - Lagrange University,6,Selective private,1,2,MO,29127,Marion,0.64549178,0.74982899,0.012957712,0,80959.72054,71800,0.564886519,0.058400009,0.18372151,0.27051258,0.31227112,0.17509484,0.045175649,0.021368125,0,0
Hanover College,6,Selective private,1,2,IN,18077,Jefferson,0.54929578,0.71513873,0.00423768,0.000184267,135724.4078,107800,0.743936924,0.025576184,0.063675366,0.13675818,0.27583727,0.49815309,0.27930275,0.12123422,0.01931932,0.001308677
Harcum College,9,Two-year (public and private not-for-profit),2,1,PA,42091,Montgomery,0.92233008,0.40645123,0.00431692,6.20E-05,104427.1543,81800,0.612577457,0.093483724,0.16758917,0.16850485,0.3363404,0.23408189,0.10030113,0.061862491,0.027886612,0.000158546
Hardin-Simmons University,6,Selective private,1,3,TX,48441,Taylor,0.52791625,0.76722729,0.013860577,0.000482287,105833.1693,91700,0.653156111,0.059579693,0.11041516,0.19777516,0.27836987,0.3538602,0.17986897,0.081954651,0.008945958,0.000150482
Harding University,6,Selective private,1,3,AR,5145,White,0.5670886,0.80366153,0.007463184,4.28E-05,119962.1745,98200,0.692194064,0.039980922,0.095733449,0.18137567,0.29024222,0.39266777,0.20221722,0.10339538,0.01286331,0.000742064
Harford Community College,9,Two-year (public and private not-for-profit),2,3,MD,24025,Harford,0.53281856,0.49861491,0.006104244,3.37E-05,98779.09817,90200,0.651192318,0.055242322,0.11326587,0.18758303,0.3164973,0.32741159,0.13133669,0.036452156,0.003829902,3.98E-05
Harper College,9,Two-year (public and private not-for-profit),2,2,IL,17031,Cook,0.48916408,0.472462,0.009327822,0,112640.3616,88900,0.643441142,0.063178763,0.13002415,0.19133027,0.27345484,0.34201202,0.16378857,0.071007274,0.011884223,0.001090019
Harrington College Of Design,10,Four-year for-profit,1,2,IL,17031,Cook,0.90158731,0.48321429,0.01009635,0,117790.4024,89100,0.648872379,0.07891088,0.11640716,0.18486059,0.27020597,0.34961551,0.17770867,0.099667534,0.019784423,0.000198206
Harris - Stowe State University,7,Nonselective four-year public,1,2,MO,29510,St Louis City,0.64928907,0.24533063,0.019000696,0,56527.25284,45200,0.414375061,0.25191858,0.25599179,0.23392583,0.17263938,0.08552447,0.025797185,0.014022802,0.000391744,7.62E-05
Harrisburg Area Community College,9,Two-year (public and private not-for-profit),2,1,PA,42043,Dauphin,0.55185634,0.51382768,0.010044537,3.19E-08,81773.74285,72200,0.561152897,0.10266445,0.1569543,0.25257987,0.30832753,0.17947383,0.062769726,0.02315608,0.003688853,0.000205066
Hartnell Community College,9,Two-year (public and private not-for-profit),2,4,CA,6053,Monterey,0.49192709,0.41353858,0.02964537,0.000497899,65456.23267,51800,0.46411591,0.19784145,0.24128802,0.23553401,0.18365359,0.14168292,0.046252944,0.016072478,0.001524662,0.000538943
Hartwick College,6,Selective private,1,1,NY,36077,Otsego,0.56262833,0.58056754,0.016615044,0,140480.093,94400,0.670922898,0.057250563,0.11645214,0.17905775,0.24212295,0.40511656,0.23591523,0.12924768,0.029986456,0.003461482
Harvard University,1,Ivy Plus,1,1,MA,25017,Middlesex,0.46851698,0.53324383,0.017591679,0.004140293,504991.5225,174000,0.819640773,0.030466165,0.0534385,0.081116386,0.13245763,0.70252132,0.56998521,0.42597306,0.15399452,0.029596413
Harvey Mudd College,2,Other elite schools (public and private),1,4,CA,6037,Los Angeles,0.3211382,0.54920626,0.029232727,0.006068034,207971.9583,139800,0.775524099,0.039317533,0.06321729,0.11517868,0.17000231,0.61228418,0.4441646,0.26962224,0.053890709,0.004025462
Hastings College,6,Selective private,1,2,NE,31001,Adams,0.50221568,0.72057533,0.010933083,0.0012638,104919.0305,82700,0.64153745,0.050670542,0.11713257,0.24700576,0.26928264,0.31590843,0.14516366,0.074171543,0.009088167,3.20E-07
Haverford College,2,Other elite schools (public and private),1,1,PA,42091,Montgomery,0.54492414,0.55709392,0.017978437,0.001147067,299314.8135,174200,0.790881849,0.045679741,0.047854267,0.10426855,0.13896203,0.66323543,0.53977728,0.42424002,0.12276054,0.008002061
Hawaii Pacific University,6,Selective private,1,4,HI,15003,Honolulu,0.4460094,0.51349145,0.029230911,0.00074822,97831.29033,68600,0.550627037,0.13375214,0.19789232,0.20208368,0.22397853,0.2422934,0.11851522,0.056372669,0.00871968,0.001800556
Hawkeye Community College,9,Two-year (public and private not-for-profit),2,2,IA,19013,Black Hawk,0.49809441,0.61479151,0.008304955,0.000586541,74256.58724,67600,0.53952323,0.096104302,0.18399054,0.28183991,0.2895208,0.14854448,0.046334103,0.014250359,0.002572946,0.000345951
Haywood Community College,9,Two-year (public and private not-for-profit),2,3,NC,37087,Haywood,0.45971563,0.54245073,0.016287753,0,62371.05748,53700,0.449582596,0.19552155,0.23995934,0.25168955,0.24308413,0.069745295,0.02398069,0.015665831,0.003706575,2.18E-05
Heald College,11,Two-year for-profit,2,4,CA,6019,Fresno,0.49498969,0.42083591,0.030289005,0.000422873,64024.20347,52400,0.461951195,0.19686426,0.23786041,0.23242515,0.20468158,0.12816855,0.042301349,0.014865147,0.001419337,6.04E-06
Heartland Community College,9,Two-year (public and private not-for-profit),2,2,IL,17113,McLean,0.49373958,0.51841706,0.00757164,1.99E-05,91340.94829,80700,0.597651745,0.090701818,0.14882238,0.1947649,0.30437851,0.26133242,0.10281171,0.035174623,0.00336467,0.000514407
Heidelberg University,6,Selective private,1,2,OH,39147,Seneca,0.48579162,0.64127046,0.009100135,0,91395.0708,80000,0.608485975,0.057620641,0.13632341,0.23659945,0.32491869,0.2445378,0.091540635,0.042176574,0.004525767,4.67E-05
Helena College University Of Montana,9,Two-year (public and private not-for-profit),2,4,MT,30049,Lewis And Clark,0.35456476,0.57953215,0.015460166,0.000125039,70864.6746,57900,0.481129178,0.12447993,0.24443929,0.29567954,0.24746658,0.087934747,0.032385003,0.009297168,0.003199067,0.000257912
Henderson State University,5,Selective public,1,3,AR,5019,Clark,0.52547979,0.61445707,0.024084078,0,79010.00388,63900,0.529191253,0.13540597,0.17384079,0.2664443,0.24387932,0.18042962,0.057093337,0.027285272,0.004976284,0.000634349
Hendrix College,4,Highly selective private,1,3,AR,5045,Faulkner,0.5816555,0.58341682,0.006243061,0.002284024,135000.9219,107500,0.72330904,0.060712356,0.09218277,0.14899667,0.24119505,0.45691323,0.31331128,0.14278966,0.014221186,0.002059646
Henry Ford Community College,9,Two-year (public and private not-for-profit),2,2,MI,26163,Wayne,0.50446647,0.44107705,0.016622903,0.000462655,83484.62874,76600,0.558866553,0.15893532,0.14762105,0.17057709,0.27242526,0.25044125,0.083452255,0.019909374,0.001948833,0.000314992
Heritage College,11,Two-year for-profit,2,2,MO,29095,Jackson,0.80917877,0.40329671,0.004852769,7.26E-05,68216.25521,53400,0.460116257,0.19427854,0.23937804,0.24527451,0.21229751,0.10877159,0.035083845,0.011779155,0.002559001,0.00032
Herkimer County Community College - SUNY Office Of Community Coll,9,Two-year (public and private not-for-profit),2,1,NY,36043,Herkimer,0.46283233,0.45669094,0.01653038,0.000465854,66034.76562,57400,0.478730646,0.16004509,0.23235834,0.26291412,0.23678625,0.10789618,0.035994776,0.016185349,0.001581245,1.39E-05
Herzing University,10,Four-year for-profit,1,2,WI,55025,Dane,0.41266796,0.44848731,0.013170211,5.52E-05,73344.64583,65400,0.517172178,0.1387811,0.18460013,0.26178601,0.28328463,0.131548,0.047760595,0.016558731,0.003193304,0.0001292
Hesston College,9,Two-year (public and private not-for-profit),2,2,KS,20079,Harvey,0.49751243,0.71899831,0.010366381,0,90859.41416,66600,0.578307531,0.040379152,0.16597344,0.29742432,0.29479125,0.20143186,0.098427214,0.022198129,0.00840442,0.000159487
Hickey College,10,Four-year for-profit,1,2,MO,29189,St Louis,0.76489025,0.52038407,0.004048305,0.00015804,69202.98438,63700,0.519913793,0.098716021,0.20048183,0.25316769,0.31214267,0.13549185,0.041601539,0.011602485,0.004627993,0.000161996
High Point University,6,Selective private,1,3,NC,37081,Guilford,0.59672761,0.57912076,0.01739048,7.13E-06,117876.3524,86100,0.628405774,0.082739033,0.13837858,0.19190061,0.24089332,0.34608853,0.20152649,0.097424634,0.01767564,0.001026162
Highland Community College of Freeport - IL,9,Two-year (public and private not-for-profit),2,2,IL,17177,Stephenson,0.59710145,0.49719694,0.006581178,2.35E-05,70253.53646,62700,0.500148505,0.1210416,0.19987828,0.28321049,0.29279211,0.10307746,0.025754778,0.009536887,0.000794524,0.000207866
Highland Community College of Highland - KS,9,Two-year (public and private not-for-profit),2,2,KS,20043,Doniphan,0.48039621,0.57230395,0.005438079,3.62E-05,75163.75164,66000,0.529549973,0.1105644,0.18608741,0.27764779,0.28591719,0.13978316,0.049489498,0.023756403,0.002078593,7.62E-05
Highline Community College,9,Two-year (public and private not-for-profit),2,4,WA,53033,King,0.58225042,0.465215,0.022786858,0.000624068,84372.29568,76500,0.575361874,0.11069468,0.16337775,0.20187078,0.28921804,0.23483863,0.075694062,0.022319838,0.00239068,1.34E-05
Hilbert College,6,Selective private,1,1,NY,36029,Erie,0.58356941,0.55927777,0.027616285,0,73850.66203,66300,0.54406558,0.11998915,0.17917879,0.26334321,0.27764332,0.15984544,0.05411981,0.017515339,0,0
Hill College,9,Two-year (public and private not-for-profit),2,3,TX,48217,Hill,0.53442401,0.55910116,0.025131643,0,68220.47953,58200,0.482644126,0.17143033,0.21462537,0.25549829,0.24373412,0.11471187,0.042580049,0.014684068,0.002268822,0.000898707
Hillsborough Community College,9,Two-year (public and private not-for-profit),2,3,FL,12057,Hillsborough,0.5485636,0.43110505,0.018509449,4.10E-06,81479.61362,63700,0.519904249,0.15357053,0.20117036,0.22454718,0.23425588,0.18645599,0.082122713,0.038650427,0.005186714,0.000530084
Hinds Community College,9,Two-year (public and private not-for-profit),2,3,MS,28049,Hinds,0.53386742,0.33824822,0.019698067,0.000130309,58763.06108,43200,0.423334709,0.2770327,0.24012536,0.17842737,0.18979166,0.11462281,0.038601846,0.015546453,0.00153812,1.84E-06
Hiram College,6,Selective private,1,2,OH,39133,Portage,0.52812499,0.59423757,0.01356729,0,99625.80601,78900,0.605081889,0.064393327,0.13406302,0.24349836,0.34310368,0.21494164,0.093787484,0.061143324,0.006887235,0.001951134
Hobart And William Smith Colleges,6,Selective private,1,1,NY,36069,Ontario,0.59139782,0.50780642,0.021943677,0.002080702,260255.5156,120400,0.73805209,0.061278764,0.088223606,0.11882497,0.20700526,0.52466738,0.39588952,0.27693611,0.095192857,0.010283861
Hocking Technical College,9,Two-year (public and private not-for-profit),2,2,OH,39009,Athens,0.43708426,0.56789863,0.009706928,0,73505.43394,63600,0.514747626,0.11316989,0.20214202,0.29015821,0.27994552,0.11458449,0.039151799,0.021602884,0.002712587,0.000280583
Hodges University,8,Nonselective four-year private not-for-profit,1,3,FL,12021,Collier,0.73099416,0.41394433,0.013447999,0.000115362,71757.28385,38300,0.385018001,0.26849911,0.29020825,0.22380099,0.12793569,0.089555837,0.046667065,0.015345046,0.008826264,0.0001292
Hofstra University,6,Selective private,1,1,NY,36059,Nassau,0.54631382,0.50488228,0.029875586,0.001866973,163606.0186,105300,0.692248497,0.070405014,0.11448722,0.13803124,0.20737395,0.46970254,0.30791762,0.16680755,0.034900315,0.00437473
Hohokus School - RETS/Nutley,12,Less than two-year schools of any type,3,1,NJ,34013,Essex,,0.32172775,0.022632658,0,58391.98177,41700,0.402084907,0.2709305,0.2989338,0.14831463,0.18226075,0.099560335,0.037731271,0.002455426,0.001623974,0.000193268
Hollins University,6,Selective private,1,3,VA,51161,Roanoke,0.99420851,0.53818524,0.010574323,0.000272591,200218.982,110700,0.711363455,0.04687259,0.11964758,0.14455688,0.18943182,0.49949116,0.34950957,0.20246157,0.053966124,0.003903285
Holmes Community College,9,Two-year (public and private not-for-profit),2,3,MS,28051,Holmes,0.56117356,0.39233521,0.021134822,6.79E-05,61404.02734,41500,0.415170809,0.3095198,0.22643828,0.16727082,0.18152867,0.11524238,0.047323328,0.016494108,0.002455313,0.0001292
Holy Family University,6,Selective private,1,1,PA,42101,Philadelphia,0.75956285,0.61592591,0.01699614,5.75E-05,85012.39293,83200,0.614838218,0.062232889,0.1373691,0.2058562,0.34236529,0.25217652,0.073990524,0.017917799,0.000307231,3.97E-05
Holyoke Community College,9,Two-year (public and private not-for-profit),2,1,MA,25013,Hampden,0.54346794,0.4061299,0.014401394,0.000323518,80086.46637,71500,0.554423993,0.1312342,0.164272,0.22151662,0.28887361,0.19410351,0.062276822,0.023580577,0.00340177,5.72E-05
Hood College,6,Selective private,1,3,MD,24021,Frederick,0.88976377,0.54918218,0.027859967,0,104035.5286,92600,0.666032414,0.063993841,0.10754037,0.16129661,0.29728597,0.36988312,0.14875247,0.059183326,0.0067965,0.000224487
Hope College,6,Selective private,1,2,MI,26139,Ottawa,0.59245282,0.74272096,0.005321636,0.00048367,181251.8362,114100,0.75060109,0.024616366,0.055586904,0.12638301,0.27038535,0.52302843,0.3231301,0.18461625,0.042065896,0.002833396
Horry - Georgetown Technical College,9,Two-year (public and private not-for-profit),2,3,SC,45051,Horry,0.56803733,0.41413572,0.009908894,3.76E-05,75980.36676,51000,0.455331512,0.23135164,0.22608417,0.21210556,0.19532695,0.13513166,0.053830665,0.029611139,0.006380438,0.000833822
Houghton College,6,Selective private,1,1,NY,36003,Allegany,0.63298488,0.73098034,0.018982267,0.001188747,98574.10918,85300,0.628683926,0.067841403,0.13836832,0.20284586,0.26717725,0.32376707,0.16177967,0.069430433,0.008649558,0
Housatonic Community College,9,Two-year (public and private not-for-profit),2,1,CT,9001,Fairfield,0.5660274,0.32582933,0.016280729,0,74346.13872,62300,0.512795198,0.16157107,0.199488,0.23025168,0.23153567,0.17715363,0.065274648,0.02483928,0.003322511,0.0001563
Houston Baptist University,6,Selective private,1,3,TX,48201,Harris,0.68548387,0.60902065,0.024330314,0.001180487,130689.765,93400,0.642118196,0.089184508,0.13546196,0.15887552,0.24318539,0.37329257,0.19854264,0.10335679,0.022955425,0.001332801
Houston Community College,9,Two-year (public and private not-for-profit),2,3,TX,48201,Harris,0.53243762,0.37970674,0.03893071,0.000692258,71246.68229,49200,0.46576494,0.21898758,0.25134006,0.20531721,0.15821117,0.16614385,0.081995718,0.035376891,0.004654477,0.00022981
Howard Community College,9,Two-year (public and private not-for-profit),2,3,MD,24027,Howard,0.47921762,0.42969558,0.012879375,0.000406328,119741.8271,99100,0.660918991,0.077942275,0.12147333,0.15426826,0.22829062,0.41802552,0.21621706,0.091567732,0.012903596,0.001593475
Howard County Junior College District,9,Two-year (public and private not-for-profit),2,3,TX,48227,Howard,0.57225436,0.53113055,0.03350284,0.000108147,64821.94531,53100,0.455279529,0.19020721,0.23050578,0.25218099,0.22177677,0.10532925,0.032775443,0.009063054,0.000663024,0.00018228
Howard Payne University,6,Selective private,1,3,TX,48049,Brown,0.45885286,0.64601624,0.021346293,0.000314812,89388.52991,69200,0.556000079,0.10496196,0.16232705,0.26721954,0.26284429,0.20264721,0.086060986,0.029081775,0.003610195,0.00139065
Howard University,6,Selective private,1,3,DC,11001,District Of Columbia,0.67221195,0.27662203,0.040040046,0.000935348,94314.2788,76900,0.590201954,0.10792967,0.16418856,0.20732972,0.21908528,0.3014667,0.15742306,0.055408306,0.00427926,1.04E-05
Hudson County Community College,9,Two-year (public and private not-for-profit),2,1,NJ,34017,Hudson,0.56142789,0.28867301,0.039884482,0.000452008,44189.75578,32600,0.33158996,0.3626492,0.30985361,0.17162967,0.097333744,0.058533847,0.02271056,0.008436281,0.000587495,7.34E-05
Hudson Valley Community College,9,Two-year (public and private not-for-profit),2,1,NY,36083,Rensselaer,0.42446524,0.4494226,0.01698599,5.52E-06,83670.62141,74200,0.565998648,0.10901017,0.16582616,0.21607734,0.29314077,0.2159456,0.072887935,0.022403087,0.004091624,0.000326528
Humboldt State University,5,Selective public,1,4,CA,6023,Humboldt,0.579638,0.49118873,0.016260199,0.000487477,126254.5199,96000,0.655456808,0.088256046,0.11586115,0.15747538,0.22739854,0.41100883,0.23157416,0.11111608,0.015193948,0.001832064
Huntingdon College,6,Selective private,1,3,AL,1101,Montgomery,0.63471502,0.61219114,0.018319014,0.007786876,117397.4849,87200,0.639147923,0.059995335,0.13641115,0.19100927,0.27374539,0.33883885,0.15711093,0.091386631,0.007615996,0.002758988
Huntington University,6,Selective private,1,2,IN,18069,Huntington,0.58357769,0.82354099,0.005507089,0.000253869,103438.3203,81400,0.605119824,0.031823222,0.14095315,0.27771142,0.31037843,0.23913376,0.13363287,0.048031591,0.00222469,0.00222469
Husson University,6,Selective private,1,1,ME,23019,Penobscot,0.59078211,0.58215493,0.019603565,1.92E-05,71795.32773,60900,0.510125169,0.13390735,0.20052089,0.28494591,0.2677474,0.11287837,0.050801501,0.021212077,0.003465333,6.31E-05
Hutchinson Community College,9,Two-year (public and private not-for-profit),2,2,KS,20155,Reno,0.46535325,0.59451354,0.009335883,0.000839024,74678.82031,67700,0.530726492,0.10411154,0.18176953,0.29195398,0.29538128,0.12678364,0.042925712,0.019711317,0.003460456,0.0001292
IBMC College,11,Two-year for-profit,2,4,CO,8069,Larimer,0.84353739,0.53482848,0.005169323,0.000139987,54957.64323,53200,0.440118333,0.20859173,0.21548317,0.24095316,0.22337615,0.11159568,0.014522454,0.009285541,0.000936599,0.000196778
ITI Technical College,11,Two-year for-profit,2,3,LA,22033,East Baton Rouge,0.086956523,0.47069141,0.081360966,0.000296684,66096.0026,56000,0.514238795,0.20257363,0.21146592,0.19340979,0.19887425,0.1936765,0.056790497,0.018023543,0.003432984,0.000246198
ITT Technical Institute,10,Four-year for-profit,1,2,IN,18097,Marion,0.14208721,0.41760245,0.036342092,0.000327861,65233.37011,52600,0.459904696,0.19454643,0.24163291,0.23998652,0.20959161,0.11424254,0.039401732,0.014545076,0.002470153,0.00020665
Idaho State University,5,Selective public,1,4,ID,16005,Bannock,0.53435117,0.70970541,0.011982939,0,78972.44551,71500,0.564926517,0.088939138,0.1554957,0.27211729,0.3149142,0.16853359,0.061351728,0.023809964,0.000906246,1.29E-05
Illinois And Ohio Center For Broadcasting,12,Less than two-year schools of any type,3,4,CO,8059,Jefferson,0.36923078,0.30883443,0.006961389,0.005243096,78434.73698,65800,0.5369036,0.16603237,0.18299067,0.20763783,0.27783346,0.16550574,0.070275106,0.021051709,0.00456238,0.000175857
Illinois Central College,9,Two-year (public and private not-for-profit),2,2,IL,17179,Tazewell,0.50284594,0.56003034,0.009973635,0,92631.86613,82800,0.614775444,0.080327496,0.12134734,0.20179638,0.3383247,0.25820395,0.084423542,0.028330151,0.004715772,1.17E-05
Illinois College,6,Selective private,1,2,IL,17137,Morgan,0.5385735,0.6808551,0.014177011,0,111745.7368,80900,0.622416212,0.058748573,0.14034358,0.22119534,0.31147978,0.26823276,0.11676427,0.051152609,0.009182097,0.000290347
Illinois Eastern Community Colleges - Olney Central College,9,Two-year (public and private not-for-profit),2,2,IL,17159,Richland,0.4950847,0.58369243,0.013684771,0.000600122,61916.53166,58400,0.467833591,0.16876051,0.20335403,0.30538842,0.23527676,0.087220371,0.027551489,0.012227565,0.000883384,8.67E-05
Illinois Institute Of Art ,10,Four-year for-profit,1,2,IL,17031,Cook,0.48900294,0.40956789,0.011372681,1.32E-05,105640.112,81500,0.602089687,0.10170621,0.15266015,0.19285345,0.25851479,0.29426536,0.13280468,0.064173937,0.013341177,0.000675116
Illinois Institute Of Technology,4,Highly selective private,1,2,IL,17031,Cook,0.26839238,0.60234845,0.036340974,0.0027319,112794.7827,91600,0.647781125,0.060009461,0.10994983,0.2050209,0.28934488,0.33567494,0.15954207,0.06522233,0.0143293,0.001609787
Illinois School Of Health Careers,12,Less than two-year schools of any type,3,2,IL,17031,Cook,0.95212764,0.12407415,0.016885567,3.24E-05,47502.23958,32200,0.328130543,0.32546595,0.31958625,0.22989227,0.079312101,0.045743499,0.009324702,0.004861139,0.000505221,0.000154262
Illinois State University,5,Selective public,1,2,IL,17113,McLean,0.59974402,0.67588174,0.010804862,0.000401664,122562.728,107600,0.723499858,0.032154523,0.068788812,0.13637893,0.29028532,0.47239238,0.21501313,0.078105435,0.008210456,0.000294081
Illinois Valley Community College,9,Two-year (public and private not-for-profit),2,2,IL,17099,La Salle,0.49452269,0.5288319,0.009264163,3.48E-05,78188.94099,73800,0.56092069,0.098997556,0.15689775,0.25569391,0.32191655,0.16649422,0.041011903,0.019143967,0.001896234,3.99E-05
Illinois Wesleyan University,4,Highly selective private,1,2,IL,17113,McLean,0.58006644,0.68047065,0.010769322,0.000599662,190235.5242,120900,0.771497707,0.019974636,0.042185985,0.11905369,0.23489067,0.58389509,0.36830062,0.20947579,0.049772725,0.002516043
Immaculata University,6,Selective private,1,1,PA,42029,Chester,0.92670155,0.60332799,0.008003213,0,141659.1859,92700,0.667635937,0.057326242,0.098307878,0.1603512,0.3354331,0.34858164,0.15001404,0.061237257,0.008123471,0.002787822
Imperial Valley College,9,Two-year (public and private not-for-profit),2,4,CA,6025,Imperial,0.53970641,0.44006106,0.048198018,0,48809.86005,34300,0.351824249,0.35884327,0.26467901,0.17494386,0.12878957,0.072744295,0.023764934,0.003913647,0.0013815,8.62E-06
Independence Community College,9,Two-year (public and private not-for-profit),2,2,KS,20125,Montgomery,0.47647059,0.49261394,0.009736853,0.000103343,64570.40234,48600,0.443316291,0.20309564,0.27736241,0.20903179,0.19495256,0.1155577,0.032996781,0.019718805,0.00462701,0.000213888
Indian Hills Community College,9,Two-year (public and private not-for-profit),2,2,IA,19179,Wapello,0.4681769,0.59275395,0.012765503,0,67807.1018,59600,0.485934445,0.13732439,0.21202713,0.31324312,0.24599108,0.091414221,0.026240673,0.00998661,0.001014719,3.97E-06
Indian River State College,7,Nonselective four-year public,1,3,FL,12111,St Lucie,0.55912936,0.43095279,0.019091338,0.000270084,73071.6537,54000,0.475624903,0.1894791,0.23013857,0.23081081,0.20449758,0.14507385,0.059727762,0.027122,0.004150908,0.000103931
Indiana Institute Of Technology,6,Selective private,1,2,IN,18003,Allen,0.37627119,0.50337768,0.012844061,7.57E-05,76339.20833,67800,0.547519803,0.1040217,0.16274402,0.28812999,0.26847586,0.17662835,0.065982848,0.014119457,0.000712955,0.000143995
Indiana State University,5,Selective public,1,2,IN,18167,Vigo,0.53822351,0.61656225,0.010691955,2.03E-05,97236.30837,82600,0.615690768,0.067021549,0.13237934,0.22014669,0.31880045,0.26165208,0.10166404,0.039692465,0.005165996,0.000711696
Indiana University Of Pennsylvania,5,Selective public,1,1,PA,42063,Indiana,0.5543977,0.58088279,0.014237016,0.000490291,88550.92967,77100,0.59152878,0.085638985,0.13793814,0.24472174,0.28903782,0.24266335,0.092393599,0.031314861,0.003833399,0.000268223
Indiana University System,5,Selective public,1,2,IN,18105,Monroe,0.5710901,0.59864211,0.009217469,0.000489618,149041.6162,99400,0.689946928,0.052903257,0.099319384,0.15951565,0.26828796,0.41997385,0.24060203,0.13392854,0.030216955,0.00250286
Institute For Business & Technology,12,Less than two-year schools of any type,3,3,TX,48029,Bexar,0.70129871,0.32116267,0.0136272,0.000173078,58626.33984,42700,0.444956462,0.2493286,0.23712347,0.24028024,0.15541628,0.11785145,0.014190651,0.002455426,0.000505221,0.000367789
Institute Of Audio Research,12,Less than two-year schools of any type,3,1,NY,36061,New York,0.10682493,0.22155727,0.020598924,0,63625.13151,49200,0.448296636,0.18689361,0.28092667,0.18889555,0.19339657,0.14988762,0.06013529,0.019649398,0.009622806,0.0001292
Institute Of Production And Recording ,11,Two-year for-profit,2,2,MN,27053,Hennepin,0.091743119,0.27140558,0.002824029,0.000118194,88928.34896,81700,0.579521755,0.088216104,0.14132746,0.23671401,0.25551841,0.27822411,0.13277589,0.051608801,0.005754108,0.000223758
Interactive College Of Technology,11,Two-year for-profit,2,3,GA,13089,DeKalb,0.55434781,0.30873829,0.016634896,0.000122232,39834.22266,32900,0.291458627,0.38550538,0.34028259,0.16135754,0.074068792,0.038785838,0.025888238,0.006588856,0.000505221,0.000474091
Intercoast Colleges,12,Less than two-year schools of any type,3,1,ME,23005,Cumberland,0.78787881,0.33922279,0.027150007,3.56E-05,44437.31901,33000,0.355559766,0.38964942,0.26216018,0.17842132,0.12488659,0.044882439,0.034948993,0.014287598,0.001184663,0.000202656
International Academy Of Design And Technology of Chicago - IL,10,Four-year for-profit,1,2,IL,17031,Cook,0.61894673,0.28933975,0.014799962,7.48E-06,66851.90975,51600,0.461305066,0.21306758,0.24177749,0.21642439,0.19486625,0.13386428,0.055877205,0.02060114,0.005770439,0.000143314
International Academy Of Design And Technology of Orlando - FL,11,Two-year for-profit,2,3,FL,12095,Orange,0.52615541,0.34667593,0.016981412,0.000278109,72308.96543,50400,0.451203053,0.22000612,0.23615807,0.23697552,0.17600542,0.13085487,0.063108489,0.032079071,0.006023617,0.001267856
International Business College of Fort Wayne - IN,11,Two-year for-profit,2,2,IN,18097,Marion,0.69656491,0.51691157,0.003195086,0,67022.02344,64500,0.540089389,0.083520837,0.1987443,0.3278372,0.27268225,0.11721547,0.046461169,0.011205683,0.006746015,0.0001292
International Career Development Center,11,Two-year for-profit,2,4,CA,6037,Los Angeles,0.73023254,0.23218314,0.01266721,0.003007804,36129.47396,29500,0.255117059,0.46069685,0.31994748,0.14132762,0.050474547,0.027553517,0.01662728,0.002455426,0.000505221,0.000223015
Iona College,6,Selective private,1,1,NY,36119,Westchester,0.47277629,0.51727587,0.030527983,0.000443761,130628.6377,97400,0.661688199,0.077935554,0.12130226,0.1660331,0.22357732,0.41115177,0.20915079,0.090792879,0.011320206,0.001099068
Iowa Central Community College,9,Two-year (public and private not-for-profit),2,2,IA,19187,Webster,0.46539792,0.57113618,0.012071272,0,68173.73811,64400,0.515829001,0.11202067,0.19892961,0.30546969,0.27676284,0.10681719,0.032805718,0.011393575,0.000844556,3.45E-05
Iowa Lakes Community College,9,Two-year (public and private not-for-profit),2,2,IA,19063,Emmet,0.47378162,0.61277336,0.009707803,0.000579457,64542.613,55200,0.474562266,0.11723371,0.23588011,0.35280055,0.22619991,0.067885749,0.027737804,0.011510258,0.000884233,0.000547323
Iowa State University Of Science & Technology,5,Selective public,1,2,IA,19169,Story,0.46161339,0.70147175,0.01310383,0.000491121,120476.7901,92900,0.675687239,0.03684026,0.09978275,0.20339432,0.29366642,0.36631617,0.1812637,0.087988071,0.011801567,0.000729564
Iowa Western Community College,9,Two-year (public and private not-for-profit),2,2,IA,19155,Pottawattamie,0.51649803,0.56985825,0.009368707,2.85E-06,75374.67892,67100,0.539234589,0.10256921,0.17447315,0.28854817,0.28832549,0.14608397,0.046264417,0.01777895,0.002484091,0.00083182
Irvine Valley College,9,Two-year (public and private not-for-profit),2,4,CA,6059,Orange,0.47858822,0.41622785,0.0234816,0.000478562,120056.0569,81200,0.597485442,0.11972666,0.15892126,0.17303385,0.20921761,0.33910048,0.18558663,0.083260998,0.014119123,0.002291849
Isothermal Community College,9,Two-year (public and private not-for-profit),2,3,NC,37161,Rutherford,0.57951808,0.49603683,0.009988754,9.01E-05,63790.32965,54600,0.466630003,0.14585254,0.27060169,0.28061017,0.21666262,0.086273067,0.031531505,0.014493863,0.005791456,3.51E-05
Itawamba Community College,9,Two-year (public and private not-for-profit),2,3,MS,28057,Itawamba,0.56070942,0.49338296,0.013454756,8.41E-05,58231.7474,47900,0.423679084,0.23893005,0.24790181,0.23084109,0.2099048,0.072422341,0.032799337,0.011644377,0.002038931,0.000203484
Ithaca College,6,Selective private,1,1,NY,36109,Tompkins,0.55750489,0.57237363,0.013821164,0.000510769,196699.1,117800,0.746990234,0.038133666,0.070935674,0.12750107,0.22284475,0.5405848,0.34775826,0.2133638,0.049347773,0.004813039
Ivy Tech Community College Of Indiana System,9,Two-year (public and private not-for-profit),2,2,IN,18097,Marion,0.55246794,0.48081198,0.009666141,4.91E-05,75331.12874,66000,0.524464808,0.13201554,0.19230212,0.24380277,0.27885249,0.15302706,0.050252654,0.016971314,0.003154361,0.000254094
J Sargeant Reynolds Community College,9,Two-year (public and private not-for-profit),2,3,VA,51087,Henrico,0.54932302,0.40409455,0.01099189,2.22E-05,83883.47005,71300,0.55461549,0.12676841,0.19181623,0.19646847,0.25377029,0.23117676,0.093066968,0.031273969,0.004004812,1.26E-05
Jackson College,9,Two-year (public and private not-for-profit),2,2,MI,26075,Jackson,0.55595815,0.53387898,0.008990978,0,79094.22596,72400,0.562103624,0.10476068,0.1650926,0.23652449,0.30508247,0.18853977,0.063853212,0.018505335,0.00119249,0.000437826
Jackson State Community College,9,Two-year (public and private not-for-profit),2,3,TN,47113,Madison,0.5801127,0.56324011,0.014169036,0,72090.77047,63200,0.503356493,0.15331045,0.19835728,0.2558834,0.26128688,0.13116193,0.05390409,0.021847794,0.002687592,1.02E-05
Jackson State University,5,Selective public,1,3,MS,28049,Hinds,0.60664022,0.2084779,0.029727178,0.000693698,50561.0942,37100,0.377055552,0.3050558,0.28829518,0.18668142,0.14599089,0.073976681,0.019752294,0.004189788,0.000294049,3.50E-05
Jacksonville State University,5,Selective public,1,3,AL,1015,Calhoun,0.5545612,0.54831809,0.01316584,0.000273321,76855.89479,69100,0.541662636,0.1268723,0.17773406,0.23913418,0.27412018,0.18213928,0.064516276,0.023899036,0.005221977,2.97E-05
Jacksonville University,6,Selective private,1,3,FL,12031,Duval,0.46718147,0.54242557,0.012346011,4.27E-05,132678.0104,85000,0.637406607,0.07648842,0.15547481,0.18124476,0.2416161,0.34517586,0.22029357,0.11592212,0.028818427,0.001920677
James A. Rhodes State College,9,Two-year (public and private not-for-profit),2,2,OH,39003,Allen,0.63607597,0.61501205,0.008322621,3.63E-05,71187.31326,64200,0.523627194,0.095145904,0.17701022,0.31471619,0.31394637,0.099181339,0.023296926,0.013231043,0.002593316,0.000683764
James H. Faulkner State Community College,9,Two-year (public and private not-for-profit),2,3,AL,1003,Baldwin,0.52635717,0.5182057,0.013492712,4.01E-05,76158.8927,65100,0.524940687,0.16081138,0.18650146,0.21752772,0.26308811,0.17207132,0.064124949,0.031941973,0.003524992,5.98E-05
James Madison University,5,Selective public,1,3,VA,51660,Harrisonburg City,0.59782374,0.66406965,0.007485462,0.000110027,173973.1364,134300,0.795031533,0.018523922,0.045060128,0.099718481,0.19188838,0.64480901,0.41345534,0.19900037,0.026087217,0.000752541
James Sprunt Community College,9,Two-year (public and private not-for-profit),2,3,NC,37061,Duplin,0.6397059,0.41649598,0.004848243,0,50466.63606,36700,0.382456177,0.28171602,0.29020882,0.20401143,0.17144008,0.052623734,0.016172469,0.006007011,0.000756426,0
Jamestown College,6,Selective private,1,2,ND,38093,Stutsman,0.57004833,0.67858803,0.024772471,0.001929986,80801.125,75200,0.581739763,0.055782977,0.17870648,0.25665605,0.32650703,0.18234749,0.057509087,0.015916495,0.001451747,0.00026433
Jamestown Community College,9,Two-year (public and private not-for-profit),2,1,NY,36013,Chautauqua,0.50822371,0.5229879,0.013247563,3.25E-05,66000.86933,59600,0.486714312,0.15476562,0.20655634,0.28702828,0.24106134,0.11058831,0.036070772,0.01349556,0.00238772,0.000372636
Jefferson College,9,Two-year (public and private not-for-profit),2,2,MO,29099,Jefferson,0.51635307,0.59678549,0.008750295,3.43E-06,79973.66351,75400,0.574134101,0.08966656,0.14174268,0.25088906,0.34622231,0.17147946,0.040417735,0.015371438,0.001868015,6.70E-05
Jefferson Community And Technical College,9,Two-year (public and private not-for-profit),2,3,KY,21111,Jefferson,0.51107997,0.54488653,0.010224662,7.46E-05,76259.73919,69100,0.542055833,0.11280152,0.15933348,0.27695376,0.30509329,0.14581801,0.047713481,0.018672641,0.003457387,2.06E-06
Jefferson Community College,9,Two-year (public and private not-for-profit),2,1,NY,36045,Jefferson,0.53543305,0.52545846,0.021000827,0.000502626,65559.48715,56800,0.478244569,0.16422865,0.22011095,0.28492001,0.21148787,0.11925259,0.029020611,0.014501954,0.001623539,5.15E-05
Jefferson Davis Community College,9,Two-year (public and private not-for-profit),2,3,AL,1053,Escambia,0.58333331,0.42608756,0.019047033,7.02E-05,56457.80599,35800,0.356146276,0.32824939,0.26238635,0.212386,0.13371107,0.063267142,0.010660274,0.002455426,0.000954281,0.000174591
Jefferson State Community College,9,Two-year (public and private not-for-profit),2,3,AL,1073,Jefferson,0.54703099,0.52024853,0.010756201,0,91962.81782,76200,0.574239908,0.11875201,0.15569685,0.20640478,0.27704629,0.24210006,0.10536801,0.040006351,0.007935137,0.000520384
John A. Logan College,9,Two-year (public and private not-for-profit),2,2,IL,17199,Williamson,0.51847136,0.54442006,0.010144386,8.09E-05,72589.14844,61100,0.504635433,0.16178943,0.19393806,0.25025305,0.25449681,0.13952251,0.048790272,0.023197677,0.003127502,0.000574279
John Brown University,6,Selective private,1,3,AR,5007,Benton,0.53944564,0.81902176,0.021008391,2.98E-05,115449.0755,86800,0.645304064,0.082645535,0.10690287,0.19913967,0.27456504,0.33674696,0.20505564,0.09630014,0.018353352,0.0001292
John Carroll University,6,Selective private,1,2,OH,39035,Cuyahoga,0.5490368,0.65741366,0.009716484,0.00046699,166976.4437,101500,0.722235911,0.034117755,0.080445617,0.16177124,0.27371502,0.44995043,0.28107631,0.16733788,0.046191491,0.003088911
John Tyler Community College,9,Two-year (public and private not-for-profit),2,3,VA,51041,Chesterfield,0.51636076,0.42337447,0.012521456,0,88274.30649,79900,0.594371535,0.093142487,0.14896809,0.20370007,0.29108417,0.26310524,0.099028952,0.030823432,0.003390638,2.38E-06
John Wood Community College,9,Two-year (public and private not-for-profit),2,2,IL,17001,Adams,0.59273183,0.59273475,0.007460704,6.08E-05,68192.78385,61400,0.479198605,0.16014446,0.18870452,0.32397109,0.256156,0.071023911,0.040527329,0.0100034,0.001789576,0.000196493
John - Castleton And Lyndon State Colleges And Community College Of Vermont,9,Two-year (public and private not-for-profit),2,1,VT,50007,Chittenden,0.55497837,0.47808409,0.00895936,0.000220714,84669.64314,68400,0.542677614,0.12492699,0.18090484,0.24609818,0.26330847,0.18476149,0.079914004,0.036717813,0.005399437,0.000871622
Johns Hopkins University,2,Other elite schools (public and private),1,3,MD,24510,Baltimore City,0.41768512,0.56499428,0.021514801,0.005394512,285199.6829,142300,0.781817869,0.036704928,0.057801947,0.11920501,0.1648141,0.62147403,0.47295532,0.33017173,0.088066913,0.009491612
Johnson & Wales University,6,Selective private,1,1,RI,44007,Providence,0.4617593,0.41242045,0.018311018,0.000144113,109336.6145,75100,0.580852968,0.11738681,0.1716783,0.20145077,0.22823083,0.28125337,0.15010568,0.07322596,0.015666807,0.001618026
Johnson College,9,Two-year (public and private not-for-profit),2,1,PA,42069,Lackawanna,0.21652421,0.50891173,0.019844528,0,64881.88214,55700,0.487983978,0.10758089,0.20457777,0.32566813,0.24786031,0.11431291,0.020145146,0.006943242,0.002819145,0.000349756
Johnson County Community College,9,Two-year (public and private not-for-profit),2,2,KS,20091,Johnson,0.49544376,0.52790791,0.008402172,0.000252101,113411.8889,91100,0.655972289,0.057515595,0.11471111,0.1908187,0.2842741,0.3526805,0.16316988,0.071690887,0.010111821,0.000631314
Johnson University,8,Nonselective four-year private not-for-profit,1,3,TN,47093,Knox,0.50812066,0.78989154,0.003926433,1.81E-05,89472.16406,82000,0.614761436,0.050282519,0.13874783,0.24263763,0.32914317,0.23918892,0.072208613,0.025602486,0.003829617,0.000705646
Johnston Community College,9,Two-year (public and private not-for-profit),2,3,NC,37101,Johnston,0.61984736,0.51168984,0.009869199,0,66438.27051,60200,0.48639164,0.17290641,0.20765194,0.24874482,0.2601352,0.11056179,0.034745429,0.017542951,0.001593496,8.15E-05
Joliet Junior College,9,Two-year (public and private not-for-profit),2,2,IL,17197,Will,0.51079988,0.50742549,0.007776358,0.000153222,97467.54581,92100,0.653861672,0.05761461,0.10077599,0.18124537,0.32800719,0.33235672,0.10067078,0.027451988,0.003354646,0
Jones County Junior College,9,Two-year (public and private not-for-profit),2,3,MS,28067,Jones,0.50978589,0.48362494,0.022898406,0.000109622,62569.93727,49100,0.438970766,0.2465644,0.2221455,0.22507931,0.19530812,0.11090267,0.041165829,0.017919384,0.004011127,3.80E-05
Judson University,6,Selective private,1,2,IL,17089,Kane,0.54219407,0.71100515,0.012514249,0,112884.7663,83000,0.645442595,0.061773848,0.12248529,0.20313741,0.32427198,0.28833148,0.14846797,0.066495925,0.012225868,0.001947163
Juniata College,6,Selective private,1,1,PA,42061,Huntingdon,0.57289296,0.68300217,0.021759938,0.001089001,104523.1914,92100,0.679572433,0.045758195,0.085436076,0.1973967,0.31767288,0.35373628,0.17570801,0.068510965,0.012516074,3.28E-06
Kalamazoo College,4,Highly selective private,1,2,MI,26077,Kalamazoo,0.55941117,0.58756334,0.010934224,0.000967011,190716.3059,139700,0.784664682,0.026910778,0.053973638,0.094755515,0.17317343,0.6511867,0.4565005,0.24880071,0.045004118,0.002851296
Kalamazoo Valley Community College,9,Two-year (public and private not-for-profit),2,2,MI,26077,Kalamazoo,0.49316388,0.52075434,0.007549267,1.32E-05,87515.72661,79600,0.595166763,0.09453816,0.13846242,0.21103866,0.30333555,0.25262523,0.092692837,0.036054391,0.004599845,0.000195406
Kankakee Community College,9,Two-year (public and private not-for-profit),2,2,IL,17091,Kankakee,0.57894737,0.50720233,0.012874074,0.001171347,75771.4974,72400,0.553931256,0.11547808,0.15853925,0.23451804,0.31354028,0.17792436,0.044629354,0.009003822,0.000665673,0.000129401
Kansas City Art Institute,8,Nonselective four-year private not-for-profit,1,2,MO,29095,Jackson,0.57398373,0.40753841,0.000110894,0.000110894,164667.6676,98500,0.667408107,0.05967541,0.13159513,0.17568596,0.22357313,0.40947038,0.25014088,0.13330433,0.027432488,0.003214964
Kansas City Kansas Community College,9,Two-year (public and private not-for-profit),2,2,KS,20209,Wyandotte,0.56501079,0.46019703,0.010293118,0,71122.62727,66500,0.526889011,0.11851852,0.20373258,0.25328356,0.2708092,0.15365624,0.035602275,0.007594879,0.001145781,2.62E-06
Kansas State University,5,Selective public,1,2,KS,20161,Riley,0.48891681,0.69983423,0.012689818,0.00017548,118400.4989,92100,0.671222447,0.042821653,0.10338095,0.1980707,0.29655793,0.35916877,0.18428841,0.090274476,0.01329574,0.000822957
Kansas Wesleyan University,6,Selective private,1,2,KS,20169,Saline,,0.6767621,0,0,86824.24441,66000,0.578637547,0.054501042,0.13915452,0.35313475,0.30935368,0.14385611,0.034168448,0.012446886,0.011617546,0.000344287
Kaskaskia College,9,Two-year (public and private not-for-profit),2,2,IL,17027,Clinton,0.54409319,0.56734508,0.014057627,6.53E-05,64447.38151,59900,0.478225956,0.17025508,0.18795338,0.27137491,0.25959769,0.11081888,0.028988235,0.010576976,0.001688606,0.0001292
Kean University,5,Selective public,1,1,NJ,34039,Union,0.61672586,0.50013345,0.034185618,0.000331141,89084.32862,79200,0.587649464,0.11098741,0.16701669,0.18353575,0.24924865,0.28921139,0.1216208,0.038367193,0.001879289,4.63E-06
Keene State College,5,Selective public,1,1,NH,33005,Cheshire,0.5923022,0.58371478,0.009485594,0.00039399,121387.9032,97700,0.685010419,0.047357902,0.094667919,0.16356991,0.29892576,0.39547849,0.19163793,0.082004458,0.011649789,0.001773648
Keiser University,8,Nonselective four-year private not-for-profit,1,3,FL,12011,Broward,0.61164331,0.35896763,0.017503604,7.85E-06,61606.95203,40500,0.400192228,0.25540394,0.30773622,0.19979571,0.14218928,0.094874911,0.039367869,0.017720016,0.004452056,0.001464041
Kellogg Community College,9,Two-year (public and private not-for-profit),2,2,MI,26025,Calhoun,0.57262999,0.53493112,0.009109623,0,77261.02735,71600,0.55398705,0.10054462,0.17576633,0.24779093,0.30088645,0.17501172,0.054032471,0.018964019,0.002042883,0.000112703
Kennesaw State University,5,Selective public,1,3,GA,13067,Cobb,0.59569985,0.61514676,0.011789772,0.000417665,117402.3434,99900,0.685888532,0.049236793,0.095413469,0.16891144,0.27586126,0.410577,0.19794738,0.082836464,0.008637314,0.000208056
Kent State University,5,Selective public,1,2,OH,39133,Portage,0.59103358,0.56936604,0.010914355,0.000191254,94457.12201,78400,0.603592129,0.068991691,0.13708657,0.2424155,0.32206115,0.22944519,0.10153652,0.046375714,0.006640161,0.000516204
Kentucky Christian University,6,Selective private,1,3,KY,21043,Carter,0.53304595,0.75846958,0.004252274,0.00022432,83473.00723,77900,0.617490688,0.045202423,0.14658542,0.27469096,0.3300615,0.20345978,0.05955074,0.018011473,0.001246252,0.000123133
Kentucky State University,5,Selective public,1,3,KY,21073,Franklin,0.54618877,0.33855453,0.019366039,1.01E-05,61212.63743,54000,0.469510708,0.18195711,0.25276545,0.22709377,0.21344814,0.12473559,0.028159907,0.008091769,0.001200936,4.67E-05
Kentucky Wesleyan College,6,Selective private,1,3,KY,21059,Daviess,0.49659863,0.65304631,0.014455378,0,88167.26364,82500,0.599487355,0.087404713,0.098895304,0.245427,0.3344295,0.23384351,0.085050106,0.034361623,0.004816687,0.000350919
Kenyon College,2,Other elite schools (public and private),1,2,OH,39083,Knox,0.55638474,0.52355683,0.006436008,0.001689048,360158.4906,168400,0.825174888,0.021347713,0.043400247,0.087348647,0.15545818,0.69244522,0.54504424,0.41855833,0.14486052,0.017958594
Kern & North Orange County Community College Districts,9,Two-year (public and private not-for-profit),2,4,CA,6059,Orange,0.51299232,0.45789587,0.027805742,0.000314894,77913.88572,63600,0.515883073,0.17821079,0.19058728,0.20054901,0.22300337,0.20764945,0.082748421,0.02781344,0.002214495,0.000190807
Kettering University,4,Highly selective private,1,2,MI,26049,Genesee,0.17861886,0.69364899,0.031106485,0,118244.3909,100100,0.692193724,0.041647803,0.091911294,0.15493441,0.30737162,0.40413493,0.19067636,0.067213289,0.005163768,2.10E-05
Keuka College,6,Selective private,1,1,NY,36123,Yates,0.69565219,0.63045371,0.022801867,0,72568.87699,67700,0.533764423,0.12792821,0.15954715,0.25496006,0.28636667,0.17119795,0.057717174,0.011657894,0.002725373,0
Keystone College,6,Selective private,1,1,PA,42131,Wyoming,0.5160839,0.47914267,0.010262592,0,73812.28425,60200,0.488753061,0.15415059,0.2213724,0.24556389,0.26200229,0.11691077,0.044383835,0.023729995,0.006993054,1.28E-05
Kiamichi Technology Center,12,Less than two-year schools of any type,3,3,OK,40121,Pittsburg,0.54504502,0.5335536,0.034996659,0.007985172,41781.63932,29800,0.305763851,0.43620118,0.22958441,0.17789927,0.11995962,0.036355622,0.012382285,0.002772612,0.000773275,0.0001292
Kilgore College,9,Two-year (public and private not-for-profit),2,3,TX,48183,Gregg,0.55994099,0.49804527,0.020010188,0.000418042,70444.44697,59900,0.488804821,0.18190564,0.19922127,0.24054936,0.24047819,0.13784561,0.0493249,0.020828316,0.004463343,5.50E-05
King University,6,Selective private,1,3,TN,47163,Sullivan,0.63287669,0.70002967,0.000345035,2.15E-05,175558.9493,76000,0.592660032,0.074696749,0.16227946,0.24794412,0.2468614,0.26821834,0.12130722,0.080005229,0.014087128,0.002714642
King's College,11,Two-year for-profit,2,3,NC,37119,Mecklenburg,0.74703556,0.33353287,0.005681294,2.72E-05,56307.80208,54700,0.451962113,0.19975767,0.29339042,0.23794366,0.17641877,0.092489354,0.009191641,0.009191641,0.002251882,0.0001292
King's College of Wilkes-Barre - PA,6,Selective private,1,1,PA,42079,Luzerne,0.50994575,0.64980233,0.016503258,0.001631131,112238.2987,89900,0.657962289,0.043402076,0.11805231,0.20454007,0.28287438,0.35113117,0.17336529,0.071014374,0.012981337,0.001085981
Kingsborough Commmunity College/CUNY,9,Two-year (public and private not-for-profit),2,1,NY,36047,Kings,0.50594991,0.32177314,0.049766187,0.001638989,56519.94413,40700,0.404481266,0.27106011,0.27442783,0.19782549,0.14882021,0.10786636,0.042572722,0.013820001,0.001605973,0.000228562
Kirkwood Community College,9,Two-year (public and private not-for-profit),2,2,IA,19113,Linn,0.50167388,0.56930137,0.0091231,6.78E-06,86485.51625,75000,0.581966133,0.081021696,0.14922969,0.25198877,0.31838554,0.19937435,0.076495446,0.032566257,0.005878244,4.20E-05
Kishwaukee College,9,Two-year (public and private not-for-profit),2,2,IL,17037,DeKalb,0.47988078,0.50706977,0.010672361,1.37E-05,89514.67068,76400,0.578000088,0.10030961,0.14084645,0.22816896,0.31974238,0.21093266,0.068896636,0.033524554,0.006441633,7.80E-06
Klamath Community College,9,Two-year (public and private not-for-profit),2,4,OR,41035,Klamath,0.6015625,0.48975748,0.016201738,6.42E-05,56753.79427,53600,0.440698822,0.27762055,0.18600176,0.23402373,0.22247431,0.079879701,0.049640842,0.006975808,0.001285398,0.0001292
Knox College,4,Highly selective private,1,2,IL,17095,Knox,0.54444444,0.57451469,0.010817061,0.000693816,132051.7696,99900,0.691516248,0.042475175,0.099849001,0.16248356,0.27282953,0.42236274,0.23509805,0.11446815,0.017861316,0.001552363
Kutztown University Of Pennsylvania,5,Selective public,1,1,PA,42011,Berks,0.60052156,0.61679596,0.00887451,1.85E-05,104947.7908,94100,0.672172513,0.043335348,0.098377988,0.17636228,0.32769966,0.35422474,0.14914891,0.052062977,0.004629913,0.000265692
La Roche College,6,Selective private,1,1,PA,42003,Allegheny,0.61285269,0.57308966,0.022898763,0,88946.96222,78700,0.604504055,0.089604959,0.12653707,0.23086964,0.29753339,0.25545496,0.10677826,0.049880747,0.006675327,9.85E-05
La Salle University,6,Selective private,1,1,PA,42101,Philadelphia,0.51978767,0.60929614,0.018244173,8.76E-06,121669.1426,101500,0.696405507,0.042639773,0.093383208,0.14765778,0.29295772,0.42336154,0.20771824,0.087986991,0.013126772,4.50E-05
La Sierra University,6,Selective private,1,4,CA,6065,Riverside,0.57398373,0.56604177,0.032972757,0.001719945,114744.1669,81300,0.606475451,0.11186931,0.1483404,0.18772982,0.23204002,0.32002035,0.19009031,0.11073422,0.015468284,0.001629231
Labette Community College,9,Two-year (public and private not-for-profit),2,2,KS,20099,Labette,0.55589122,0.58603078,0.015454844,8.46E-06,64082.9362,57700,0.472501586,0.11665671,0.24412005,0.31753218,0.25975695,0.061934106,0.021536332,0.006584269,0.000985832,0.000183655
Lackawanna College,9,Two-year (public and private not-for-profit),2,1,PA,42069,Lackawanna,0.3941606,0.41304505,0.024060566,9.32E-05,67098.66686,55200,0.463774726,0.20366848,0.22596797,0.24786809,0.23194048,0.090554915,0.033834402,0.010453904,0.003183098,8.97E-05
Lafayette College,2,Other elite schools (public and private),1,1,PA,42095,Northampton,0.50614756,0.64583045,0.016269231,0.001419495,290379.4022,156700,0.817690337,0.027788993,0.029509699,0.098437242,0.16700178,0.67726219,0.52365029,0.35179335,0.099882178,0.012073053
Lagrange College,6,Selective private,1,3,GA,13285,Troup,0.61904764,0.65587074,0.003223014,0,125953.018,100800,0.69467653,0.051301349,0.088855907,0.13619328,0.31650728,0.40714213,0.20485239,0.11528038,0.009303263,0.000607809
Lake Area Technical Institute,9,Two-year (public and private not-for-profit),2,2,SD,46029,Codington,0.41535616,0.65384692,0.017021975,0.000846673,64178.47793,56500,0.465583462,0.13263248,0.2535758,0.34155509,0.20468175,0.067554854,0.031457342,0.012498355,0.001411417,0.000127231
Lake Erie College,6,Selective private,1,2,OH,39085,Lake,0.75984251,0.52591568,0.000744401,1.52E-05,114317.9966,76700,0.594204398,0.092986345,0.1321827,0.25094929,0.29559076,0.22829092,0.091599219,0.059421189,0.025859764,0.004044246
Lake Forest College,6,Selective private,1,2,IL,17097,Lake,0.58595192,0.57693034,0.017924456,0.000178017,249870.7552,116000,0.73103267,0.037609879,0.093520567,0.14629968,0.20159277,0.52097714,0.34771091,0.22416943,0.066205435,0.006053002
Lake Land College,9,Two-year (public and private not-for-profit),2,2,IL,17029,Coles,0.51337415,0.60795963,0.012073628,0.000650587,72397.96729,63800,0.517945001,0.11951365,0.19004215,0.28210828,0.29123864,0.1170972,0.039795835,0.016117085,0.00246995,0.000348331
Lake Michigan College,9,Two-year (public and private not-for-profit),2,2,MI,26021,Berrien,0.53357315,0.50658756,0.013315809,0,72165.91994,69800,0.530497636,0.14014797,0.17313394,0.23027572,0.2803635,0.17607887,0.056012098,0.021750888,0.002782029,0
Lake Region State College,9,Two-year (public and private not-for-profit),2,2,ND,38071,Ramsey,0.47390109,0.57997221,0.021279249,0,62696.70971,54300,0.473637814,0.15430665,0.23129632,0.31058401,0.21876448,0.085048467,0.038092416,0.016673042,0.002359808,0.00014826
Lake Sumter State College,7,Nonselective four-year public,1,3,FL,12069,Lake,0.58945119,0.49919537,0.018196633,0,72138.34002,59100,0.499491518,0.15875214,0.22210939,0.22630921,0.23608992,0.15673943,0.061647806,0.03224083,0.004788084,0.000104925
Lake Superior State University,5,Selective public,1,2,MI,26033,Chippewa,0.48306841,0.60599256,0.013305768,4.00E-05,88844.06647,75500,0.586552379,0.084555775,0.1358512,0.26249695,0.2976748,0.21942136,0.08428771,0.036723528,0.006889465,0.000947992
Lake Tahoe Community College,9,Two-year (public and private not-for-profit),2,4,CA,6017,El Dorado,0.49412915,0.3746646,0.013964919,0,86911.49272,64600,0.536725517,0.14193307,0.20959999,0.2074028,0.21220154,0.22886267,0.11905084,0.054487284,0.010143626,1.68E-05
Lake Washington Institute Of Technology,7,Nonselective four-year public,1,4,WA,53033,King,0.41926345,0.44216874,0.01125679,0,101788.3454,84100,0.615640921,0.084670886,0.12905565,0.20103018,0.28604206,0.29920128,0.12432903,0.054236371,0.008317275,0.000119476
Lakeland College,6,Selective private,1,2,WI,55117,Sheboygan,0.48863637,0.56202328,0.005564518,0.001911773,95498.1622,75400,0.572307489,0.092644028,0.15563309,0.23597503,0.33075833,0.1849895,0.090412781,0.05146791,0.017338842,0
Lakeland Community College,9,Two-year (public and private not-for-profit),2,2,OH,39085,Lake,0.49568462,0.47263366,0.007817745,4.90E-06,84233.33381,73500,0.572904614,0.070790708,0.15599337,0.2799868,0.31681198,0.17641713,0.066035174,0.029342921,0.003629281,0.000248337
Lakes Region Community College,9,Two-year (public and private not-for-profit),2,1,NH,33001,Belknap,0.33217993,0.51164353,0.012063907,1.95E-05,79775.30539,71200,0.567472772,0.077974826,0.16429329,0.26307911,0.31450328,0.18014941,0.068605162,0.02652603,0.002651826,0.000194045
Lakeshore Technical College,9,Two-year (public and private not-for-profit),2,2,WI,55071,Manitowoc,0.55421686,0.58834541,0.010939484,0,75856.44758,73100,0.568275758,0.062238496,0.12319554,0.31711137,0.38817543,0.10927922,0.030902265,0.010721377,0.001093868,0.000121866
Lamar Community College,9,Two-year (public and private not-for-profit),2,4,CO,8099,Prowers,0.48474178,0.56141078,0.021570003,0,60040.7856,48500,0.4327523,0.21668658,0.27228194,0.24943547,0.17055298,0.091042951,0.042247031,0.015644893,0.00247133,6.58E-05
Lamar Institute Of Technology,9,Two-year (public and private not-for-profit),2,3,TX,48245,Jefferson,0.36966464,0.44961339,0.047277257,0.000486986,62884.57204,52600,0.46607731,0.2428209,0.20857465,0.18703307,0.22210586,0.13946551,0.045991085,0.022391461,0.00156024,0.000148186
Lamar State College - Orange,9,Two-year (public and private not-for-profit),2,3,TX,48361,Orange,0.63198459,0.49959874,0.033136956,0.000328559,72770.76302,64100,0.49864461,0.20821583,0.17638153,0.17828658,0.27641925,0.16069695,0.03321996,0.014074098,0.000704873,0.000269923
Lamar State College - Port Arthur,9,Two-year (public and private not-for-profit),2,3,TX,48245,Jefferson,0.59684682,0.43646166,0.024081459,0,70101.71851,61100,0.475292841,0.22163831,0.18950133,0.18675891,0.26476336,0.13733804,0.033213459,0.014922952,0.005970449,7.02E-05
Lamar University,5,Selective public,1,3,TX,48245,Jefferson,0.5213387,0.55771351,0.029002167,0.00022702,85448.26247,77200,0.571350275,0.13572988,0.14391422,0.18902427,0.28882581,0.24250576,0.077851541,0.026129112,0.004376428,0.000229663
Lancaster Bible College,8,Nonselective four-year private not-for-profit,1,1,PA,42071,Lancaster,0.58088237,0.82795435,0.009362091,7.92E-05,85907.23958,72000,0.585365514,0.068185948,0.14847918,0.28229681,0.2688365,0.23220164,0.072100244,0.042165022,0.005764068,0.000133696
Lander University,5,Selective public,1,3,SC,45047,Greenwood,0.61850154,0.60396624,0.009774477,0,97607.6346,83300,0.613085949,0.077214658,0.13866591,0.21214423,0.28908554,0.28288969,0.1097588,0.04552437,0.008039557,0.000822889
Landmark College,8,Nonselective four-year private not-for-profit,1,1,VT,50025,Windham,0.33333334,0.26200655,0,0,463387.3407,179000,0.816307473,0.026890591,0.063008882,0.072662033,0.17903112,0.65840739,0.57662791,0.42680457,0.15214111,0.022358939
Lane Community College,9,Two-year (public and private not-for-profit),2,4,OR,41039,Lane,0.49641025,0.45978329,0.010806557,2.90E-06,92604.73145,69300,0.550666058,0.11852233,0.17539918,0.24581206,0.25917968,0.20108663,0.090150058,0.039541185,0.004950012,0.001197976
Langston University,5,Selective public,1,3,OK,40083,Logan,0.5142349,0.21023108,0.01986186,3.94E-05,55501.56557,38800,0.38124716,0.29319191,0.30065903,0.17183892,0.1609183,0.073391698,0.021939056,1.15E-05,1.15E-05,1.15E-05
Lanier Technical College,9,Two-year (public and private not-for-profit),2,3,GA,13139,Hall,0.52533042,0.52451712,0.009419682,6.27E-05,76528.743,63800,0.532105379,0.13933393,0.18670702,0.2448076,0.25824329,0.17090818,0.06407024,0.029353995,0.005717496,0.000127572
Lansing Community College,9,Two-year (public and private not-for-profit),2,2,MI,26065,Ingham,0.4895232,0.50324345,0.007415063,0.000133032,89430.02069,80700,0.601760259,0.084948577,0.12857664,0.22435175,0.3075102,0.25461277,0.085312262,0.030660637,0.004881501,0.000334177
Laramie County Community College,9,Two-year (public and private not-for-profit),2,4,WY,56021,Laramie,0.56024504,0.57793391,0.011898088,0,81563.38689,69000,0.556136977,0.090870917,0.16753165,0.28539771,0.30686036,0.14933926,0.037888419,0.018094486,0.002072693,0.001266914
Laredo Community College,9,Two-year (public and private not-for-profit),2,3,TX,48479,Webb,0.52704054,0.39421958,0.06712117,0.001265622,41084.45408,27400,0.304835347,0.43076658,0.28657308,0.13628757,0.088872865,0.057499871,0.017860275,0.007595631,0.000525821,2.74E-05
Las Positas College,9,Two-year (public and private not-for-profit),2,4,CA,6001,Alameda,0.48254931,0.48959401,0.008015368,8.89E-05,138317.9167,109500,0.703827838,0.04872369,0.089297518,0.13924924,0.24402051,0.4787091,0.252271,0.10724624,0.019541621,0.002497791
Lasell College,6,Selective private,1,1,MA,25017,Middlesex,0.73645318,0.47036147,0.031484902,2.46E-05,124633.0286,74300,0.582347035,0.10896926,0.16001974,0.22160769,0.22443208,0.28497136,0.15080443,0.073919117,0.021509664,0.003977028
Lassen College,9,Two-year (public and private not-for-profit),2,4,CA,6035,Lassen,0.43493152,0.47789365,0.018295955,3.62E-05,75203.63296,64200,0.508998777,0.16820851,0.16487595,0.24849251,0.27399981,0.1444232,0.046447251,0.018675357,0.001787737,5.34E-05
Latter Day Saints Business College,9,Two-year (public and private not-for-profit),2,4,UT,49035,Salt Lake,0.592668,0.80967766,0,0,99330.52604,83900,0.641147017,0.03173054,0.12622356,0.24284399,0.29973894,0.29946297,0.12350688,0.048624966,0.007433816,0.0001292
Lawrence Technological University,6,Selective private,1,2,MI,26125,Oakland,0.26696834,0.58825362,0.024249569,0.001094628,109074.7454,95100,0.656993807,0.077243477,0.10314374,0.16645661,0.26564896,0.38750723,0.17897746,0.06195277,0.007726887,0.001112945
Lawrence University Of Wisconsin,4,Highly selective private,1,2,WI,55087,Outagamie,0.54000002,0.58409798,0.011534142,5.09E-05,190990.8303,111600,0.724597753,0.045872759,0.064598247,0.1377089,0.25395307,0.49786705,0.29411927,0.1826295,0.040263381,0.003746068
Le Cordon Bleu College Of Culinary Arts In Chicago,11,Two-year for-profit,2,2,IL,17031,Cook,0.34793815,0.35845265,0.010716604,2.75E-06,86131.95455,72100,0.562001123,0.12642148,0.16901496,0.20505331,0.23669659,0.26281369,0.10960761,0.043598775,0.005425571,0.00012508
Le Cordon Bleu College Of Culinary Arts of Dallas - TX,11,Two-year for-profit,2,3,TX,48113,Dallas,0.31870228,0.40281844,0.021365335,0.002181746,141942.2079,64800,0.536652652,0.13342735,0.20330016,0.23535895,0.23620737,0.19170624,0.098577514,0.045849632,0.012705334,0.00593853
Le Cordon Bleu College Of Culinary Arts of Pasadena - CA,11,Two-year for-profit,2,4,CA,6037,Los Angeles,0.37468356,0.36449561,0.02866322,4.72E-05,98614.81078,64800,0.530395306,0.17367226,0.19713297,0.19428819,0.22203428,0.21287225,0.13619547,0.056978721,0.020362604,0.002500665
Le Cordon Bleu College Of Culinary Arts of Scottsdale - AZ,10,Four-year for-profit,1,4,AZ,4013,Maricopa,0.33002129,0.39659822,0.017094569,0,84844.49257,67200,0.552256355,0.13429488,0.18051589,0.22936372,0.22841525,0.22741024,0.10790946,0.046798587,0.003640996,0.000886456
Le Cordon Bleu College Of Culinary Arts of Tucker - GA,11,Two-year for-profit,2,3,GA,13089,DeKalb,0.35262451,0.40973011,0.007992919,4.74E-05,85374.9843,66800,0.540820003,0.13264789,0.19835655,0.22044307,0.2315205,0.2170319,0.085511036,0.044077549,0.005463323,0.000790364
Le Moyne College,6,Selective private,1,1,NY,36067,Onondaga,0.60908192,0.60158962,0.015694968,7.98E-05,103118.6719,89100,0.646921476,0.055178147,0.12111564,0.18483904,0.2986452,0.34022194,0.14183785,0.051422846,0.004612117,0.000284559
Lebanon Valley College,6,Selective private,1,1,PA,42075,Lebanon,0.5651359,0.71686924,0.012868647,0.000956869,122939.3391,92700,0.692165132,0.037419308,0.066378921,0.19500731,0.34467173,0.35652277,0.14994377,0.067885742,0.008577632,0.002741206
Lee College,9,Two-year (public and private not-for-profit),2,3,TX,48201,Harris,0.54754263,0.48740661,0.03132154,0.000563917,70773.38832,63300,0.511241408,0.16421403,0.19119394,0.23607454,0.23499799,0.1735196,0.047927924,0.008819742,0.001060534,0.0002153
Lee University,6,Selective private,1,3,TN,47011,Bradley,0.57409823,0.71565288,0.01377523,0,101781.6767,78600,0.595494231,0.087299451,0.14901553,0.21823479,0.28977889,0.25567141,0.11847826,0.051508423,0.005614025,0.001630621
Lees-Mcrae College,6,Selective private,1,3,NC,37011,Avery,0.53380781,0.57779813,0.003113481,0.000105792,120698.0417,83200,0.622816881,0.080635652,0.12061962,0.22160406,0.30123243,0.27590823,0.15588732,0.091446668,0.011549724,0.000278797
Lehigh Carbon Community College,9,Two-year (public and private not-for-profit),2,1,PA,42077,Lehigh,0.54741377,0.47456068,0.00998477,0.000870465,78683.13003,70000,0.545660682,0.11678901,0.17473143,0.24938282,0.27718267,0.18191409,0.069634601,0.025503252,0.003935789,0
Lehigh University,2,Other elite schools (public and private),1,1,PA,42095,Northampton,0.42070484,0.62970114,0.018740082,0.000955119,291534.8066,138300,0.784317151,0.032861903,0.061060429,0.11308983,0.1820063,0.61098158,0.44969988,0.32655367,0.099099644,0.012892449
Lenoir Community College,9,Two-year (public and private not-for-profit),2,3,NC,37107,Lenoir,0.5467391,0.43347511,0.01301099,3.75E-05,59802.19614,45900,0.42779096,0.23458113,0.26060146,0.22066522,0.18801081,0.096141413,0.03400347,0.013262233,0.002019636,2.59E-05
Lenoir-Rhyne University,6,Selective private,1,3,NC,37035,Catawba,0.59512937,0.65434253,0.012167468,0,137077.3016,91600,0.659730563,0.060815379,0.13680713,0.1717079,0.29417259,0.33649707,0.15148643,0.076622166,0.019263441,0.002967495
Lesley University,6,Selective private,1,1,MA,25017,Middlesex,0.75431609,0.44186538,0.01264025,1.09E-05,160368.5921,96100,0.668882754,0.077693194,0.1193496,0.17090084,0.21152262,0.4205339,0.2556763,0.14189044,0.03358959,0.003921261
Letourneau University,6,Selective private,1,3,TX,48183,Gregg,0.27629912,0.72522378,0.038236253,0.0024966,116460.607,85700,0.624903785,0.089892775,0.1353668,0.16335317,0.32073134,0.29065591,0.17075121,0.095689036,0.01761058,0.001356805
Lewis & Clark College,6,Selective private,1,4,OR,41051,Multnomah,0.60341728,0.47775823,0.013648864,0.001622769,234572.6135,119100,0.722175953,0.051261608,0.078153357,0.15895313,0.17794052,0.53369141,0.37077647,0.25378427,0.08185412,0.006504946
Lewis And Clark Community College,9,Two-year (public and private not-for-profit),2,2,IL,17119,Madison,0.53158295,0.5356105,0.01287931,0.000781455,75870.88395,70500,0.547070652,0.1154248,0.15245408,0.25509152,0.31661835,0.16041127,0.048389286,0.017236346,0.001674904,6.97E-06
Lewis University,6,Selective private,1,2,IL,17197,Will,0.48191759,0.56415528,0.016398102,1.71E-05,109028.2981,93700,0.665443353,0.057522953,0.10793501,0.18244147,0.27250901,0.37959164,0.1883602,0.069904156,0.006918753,0.00011391
Lewis-Clark State College,5,Selective public,1,4,ID,16069,Nez Perce,0.54221386,0.62077421,0.021265127,3.63E-05,77156.067,66000,0.527534645,0.12525316,0.18429685,0.257714,0.30662262,0.12611343,0.053453963,0.023023117,0.002926946,0.000129911
Lim College,10,Four-year for-profit,1,1,NY,36061,New York,0.95754719,0.47049659,0.029028108,0.005037032,109684.0966,80700,0.605382051,0.093039863,0.17977521,0.17715037,0.20861956,0.34141493,0.1573049,0.071038313,0.019259769,5.16E-05
Limestone College,6,Selective private,1,3,SC,45021,Cherokee,0.48374999,0.52594805,0.007293466,2.75E-05,104596.1854,73900,0.565081575,0.11880223,0.17478009,0.1868742,0.28618494,0.23335859,0.12636313,0.057563752,0.009820285,0.004961102