-
Notifications
You must be signed in to change notification settings - Fork 0
/
college-tuition-data-cleaned.csv
We can't make this file beautiful and searchable because it's too large.
1535 lines (1535 loc) · 789 KB
/
college-tuition-data-cleaned.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,Applicants total,Admissions total,Enrolled total,Percent of freshmen submitting SAT scores,Percent of freshmen submitting ACT scores,SAT Critical Reading 25th percentile score,SAT Critical Reading 75th percentile score,SAT Math 25th percentile score,SAT Math 75th percentile score,SAT Writing 25th percentile score,SAT Writing 75th percentile score,ACT Composite 25th percentile score,ACT Composite 75th percentile score,"Estimated enrollment, total","Estimated enrollment, full time","Estimated enrollment, part time","Estimated undergraduate enrollment, total","Estimated undergraduate enrollment, full time","Estimated undergraduate enrollment, part time","Estimated freshman undergraduate enrollment, total","Estimated freshman enrollment, full time","Estimated freshman enrollment, part time","Estimated graduate enrollment, total","Estimated graduate enrollment, full time","Estimated graduate enrollment, part time",Number of students receiving an Associate's degree,Percent admitted - total,Admissions yield - total,"Tuition and fees, 2010-11","Tuition and fees, 2011-12","Tuition and fees, 2012-13","Tuition and fees, 2013-14",Total price for in-state students living on campus 2013-14,Total price for out-of-state students living on campus 2013-14,State abbreviation,FIPS state code,Geographic region,Sector of institution,Level of institution,Control of institution,Historically Black College or University,Tribal college,Degree of urbanization (Urban-centric locale),Carnegie Classification 2010: Basic,Total enrollment,Full-time enrollment,Part-time enrollment,Undergraduate enrollment,Graduate enrollment,Full-time undergraduate enrollment,Part-time undergraduate enrollment,Percent of total enrollment that are American Indian or Alaska Native,Percent of total enrollment that are Asian,Percent of total enrollment that are Black or African American,Percent of total enrollment that are Hispanic/Latino,Percent of total enrollment that are Native Hawaiian or Other Pacific Islander,Percent of total enrollment that are White,Percent of total enrollment that are two or more races,Percent of total enrollment that are Race/ethnicity unknown,Percent of total enrollment that are Nonresident Alien,Percent of total enrollment that are Asian/Native Hawaiian/Pacific Islander,Percent of total enrollment that are women,Percent of undergraduate enrollment that are American Indian or Alaska Native,Percent of undergraduate enrollment that are Asian,Percent of undergraduate enrollment that are Black or African American,Percent of undergraduate enrollment that are Hispanic/Latino,Percent of undergraduate enrollment that are Native Hawaiian or Other Pacific Islander,Percent of undergraduate enrollment that are White,Percent of undergraduate enrollment that are two or more races,Percent of undergraduate enrollment that are Race/ethnicity unknown,Percent of undergraduate enrollment that are Nonresident Alien,Percent of undergraduate enrollment that are Asian/Native Hawaiian/Pacific Islander,Percent of undergraduate enrollment that are women,Percent of graduate enrollment that are American Indian or Alaska Native,Percent of graduate enrollment that are Asian,Percent of graduate enrollment that are Black or African American,Percent of graduate enrollment that are Hispanic/Latino,Percent of graduate enrollment that are Native Hawaiian or Other Pacific Islander,Percent of graduate enrollment that are White,Percent of graduate enrollment that are two or more races,Percent of graduate enrollment that are Race/ethnicity unknown,Percent of graduate enrollment that are Nonresident Alien,Percent of graduate enrollment that are Asian/Native Hawaiian/Pacific Islander,Percent of graduate enrollment that are women,Number of first-time undergraduates - in-state,Percent of first-time undergraduates - in-state,Number of first-time undergraduates - out-of-state,Percent of first-time undergraduates - out-of-state,Number of first-time undergraduates - foreign countries,Percent of first-time undergraduates - foreign countries,Number of first-time undergraduates - residence unknown,Percent of first-time undergraduates - residence unknown,"Graduation rate - Bachelor degree within 4 years, total","Graduation rate - Bachelor degree within 5 years, total","Graduation rate - Bachelor degree within 6 years, total",Percent of freshmen receiving any financial aid,"Percent of freshmen receiving federal, state, local or institutional grant aid",Percent of freshmen receiving federal grant aid,Percent of freshmen receiving Pell grants,Percent of freshmen receiving other federal grant aid,Percent of freshmen receiving state/local grant aid,Percent of freshmen receiving institutional grant aid,Percent of freshmen receiving student loan aid,Percent of freshmen receiving federal student loans,Percent of freshmen receiving other loan aid,Endowment assets (year end) per FTE enrollment (GASB),Endowment assets (year end) per FTE enrollment (FASB)
Alabama A & M University,6142,5521,1104,15,88,370,450,350,450,0,0,15,19,5024,4442,582,4055,3802,253,1104,1089,15,969,640,329,0,90,20,5800,6828,7182,7182,21849,27441,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Midsize,Master's Colleges and Universities (larger programs),5020,4439,581,4051,969,3799,252,0,1,92,1,0,5,0,1,0,1,55,0,0,95,1,0,3,0,1,0,0,51,0,2,81,1,0,15,0,1,0,2,69,0,0,0,0,0,0,0,0,10,23,29,97,89,81,81,7,1,32,89,89,1,0,0
University of Alabama at Birmingham,5689,4934,1773,6,93,520,640,520,650,0,0,22,28,18568,11961,6607,11502,8357,3145,1773,1732,41,7066,3604,3462,0,87,36,5806,6264,6798,7206,22495,31687,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),18568,11961,6607,11502,7066,8357,3145,0,5,21,3,0,64,3,1,3,5,61,0,5,26,3,0,60,3,1,2,5,58,0,4,14,3,0,70,2,1,6,4,64,1529,86,224,13,19,1,1,0,29,46,53,90,79,36,36,10,0,60,56,55,5,24136,0
Amridge University,0,0,0,0,0,0,0,0,0,0,0,0,0,626,326,300,313,202,111,6,3,3,313,124,189,5,0,0,8360,8720,6800,6870,0,0,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,631,323,308,322,309,202,120,0,0,40,1,0,30,0,28,0,0,58,0,0,42,1,0,29,0,27,0,1,61,0,0,37,1,0,32,0,29,0,0,55,0,0,0,0,0,0,0,0,0,0,67,100,90,90,90,0,40,90,100,100,0,0,302
University of Alabama in Huntsville,2054,1656,651,34,94,510,640,510,650,0,0,23,29,7376,4802,2574,5696,4237,1459,651,638,13,1680,565,1115,0,81,39,7492,8094,8794,9192,23466,35780,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),7376,4802,2574,5696,1680,4237,1459,1,4,12,3,0,69,1,3,6,4,44,1,4,13,3,0,70,2,3,4,4,44,1,4,7,2,0,69,1,3,14,4,43,514,79,92,14,27,4,18,3,16,37,48,87,77,31,31,4,1,63,46,46,3,11502,0
Alabama State University,10245,5251,1479,18,87,380,480,370,480,0,0,15,19,6076,5183,893,5357,4873,484,1542,1517,25,719,310,409,0,51,28,7164,8082,7932,8720,18286,25222,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Midsize,Master's Colleges and Universities (larger programs),6075,5182,893,5356,719,4872,484,0,0,91,1,0,3,1,1,2,0,61,0,0,93,1,0,2,1,1,2,0,59,1,1,77,1,0,17,1,1,1,1,71,903,58,571,37,67,4,4,0,9,19,25,93,87,76,76,13,11,34,81,81,0,13202,0
The University of Alabama,30975,17515,6454,23,76,490,620,500,640,480,600,22,30,34752,29498,5254,29440,26548,2892,6478,6452,26,5312,2950,2362,0,57,37,7900,8600,9200,9450,27000,41500,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),34752,29498,5254,29440,5312,26548,2892,0,1,11,3,0,77,2,0,4,1,55,0,1,11,3,0,78,2,0,4,1,54,0,1,12,3,0,72,1,1,9,2,58,2578,40,3704,57,162,3,10,0,43,62,67,75,60,20,18,4,3,50,42,41,8,19469,0
Athens State University,0,0,0,0,0,0,0,0,0,0,0,0,0,3175,1343,1832,3175,1343,1832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,3170,1350,1820,3170,0,1350,1820,2,1,11,2,0,75,1,7,1,1,65,2,1,11,2,0,75,1,7,1,1,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,0
Auburn University at Montgomery,1958,1639,579,0,54,0,0,0,0,0,0,18,23,5096,3223,1873,4334,2999,1335,579,519,60,762,224,538,0,84,35,6620,7580,8150,8750,17820,34020,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (larger programs),5084,3223,1861,4322,762,2999,1323,0,2,30,1,0,53,0,9,5,2,63,0,2,30,1,0,55,0,6,4,2,62,0,1,27,1,0,41,0,23,7,1,69,635,95,16,2,0,0,20,3,10,22,27,90,67,48,48,5,5,48,36,36,0,10736,0
Auburn University,15745,13027,3726,17,83,520,620,540,650,510,620,24,30,24864,21093,3771,19799,18011,1788,3726,3696,30,5065,3082,1983,0,83,29,7900,8698,9446,9852,25282,41794,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),24864,21093,3771,19799,5065,18011,1788,1,2,7,2,0,81,0,1,5,2,49,1,2,7,3,0,85,0,1,1,2,49,0,3,8,2,0,65,0,2,20,3,50,2334,63,1362,37,26,1,4,0,38,63,68,76,68,13,13,3,1,65,32,31,3,22092,0
Birmingham Southern College,1931,1240,356,32,82,520,630,520,640,0,0,23,29,1188,1167,21,1188,1167,21,356,356,0,0,0,0,0,64,29,27890,29290,30690,30690,45470,45470,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,1188,1167,21,1188,0,1167,21,1,4,9,3,0,81,1,1,0,4,46,1,4,9,3,0,81,1,1,0,4,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,60,62,98,97,21,21,9,26,96,80,80,7,0,37598
Concordia College Alabama,0,0,0,0,0,0,0,0,0,0,0,0,0,600,543,57,600,543,57,147,146,1,0,0,0,39,0,0,7370,8090,8090,8090,18330,18330,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,600,543,57,600,0,543,57,0,0,95,1,0,1,0,0,3,0,42,0,0,95,1,0,1,0,0,3,0,42,0,0,0,0,0,0,0,0,0,0,0,71,48,73,49,0,0,5,3,10,14,14,100,100,100,84,16,83,67,100,100,0,0,0
Faulkner University,0,0,0,0,0,0,0,0,0,0,0,0,0,3127,2273,854,2546,1749,797,295,287,8,581,524,57,10,0,0,14810,15880,17380,18230,31010,31010,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,3193,2321,872,2617,576,1803,814,1,1,46,2,0,46,1,2,1,1,62,1,1,48,2,0,44,1,2,2,1,63,1,1,37,1,0,57,1,2,0,1,58,200,67,89,30,9,3,0,0,11,21,23,99,99,57,57,34,64,91,79,79,3,0,5494
Huntingdon College,1470,923,261,16,93,420,500,420,540,0,0,19,24,1100,898,202,1100,898,202,261,261,0,0,0,0,0,63,28,20990,21990,22500,23500,33885,33885,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,1110,902,208,1110,0,902,208,1,1,19,2,0,58,3,16,0,1,50,1,1,19,2,0,58,3,16,0,1,50,0,0,0,0,0,0,0,0,0,0,0,189,72,71,27,1,0,0,0,30,40,43,100,100,48,48,16,53,99,78,77,10,0,41486
Jacksonville State University,3083,2567,1158,18,89,430,540,420,540,0,0,19,26,8693,5982,2711,7588,5779,1809,1158,1142,16,1105,203,902,0,83,45,5424,6120,6360,7092,21237,28029,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),8693,5982,2711,7588,1105,5779,1809,1,1,25,1,0,66,0,3,2,1,58,1,1,25,1,0,66,0,4,2,1,58,1,1,24,0,0,67,0,2,4,1,62,875,76,276,24,7,1,0,0,10,25,31,93,83,48,48,11,21,55,57,56,2,1488,0
Judson College,268,198,68,10,94,550,640,500,600,530,610,19,24,348,263,85,348,263,85,69,68,1,0,0,0,20,74,34,13900,14460,15100,15630,28840,28840,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Remote,Baccalaureate Colleges--Arts & Sciences,347,262,85,347,0,262,85,0,1,14,1,0,80,1,2,1,1,95,0,1,14,1,0,80,1,2,1,1,95,0,0,0,0,0,0,0,0,0,0,0,59,88,8,12,0,0,0,0,38,41,41,100,100,82,64,18,84,100,83,83,12,0,44004
University of West Alabama,462,460,380,0,100,0,0,0,0,0,0,18,22,3998,3490,508,1948,1670,278,380,371,9,2050,1820,230,53,100,83,6524,6918,7320,7660,18162,24672,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Remote,Master's Colleges and Universities (larger programs),4427,3890,537,1999,2428,1696,303,1,1,49,1,0,41,1,4,2,1,72,0,1,42,2,0,43,1,6,5,1,57,1,0,55,1,0,39,1,3,0,0,85,0,0,0,0,0,0,0,0,18,28,30,95,89,74,59,16,2,56,81,74,8,97,0
Miles College,0,0,0,0,0,0,0,0,0,0,0,0,0,1677,1592,85,1677,1592,85,418,416,2,0,0,0,0,0,0,9896,10490,11014,11454,22318,22318,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1666,1577,89,1666,0,1577,89,0,0,97,1,0,2,1,0,0,0,48,0,0,97,1,0,2,1,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,16,22,99,98,88,88,26,10,34,90,90,2,0,10086
University of Mobile,866,617,259,13,87,470,610,470,680,0,0,20,25,1610,1288,322,1481,1257,224,259,258,1,129,31,98,13,71,42,16120,17220,18080,18690,32570,32570,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,1610,1288,322,1481,129,1257,224,2,1,24,1,0,63,2,5,3,1,68,2,1,22,1,0,65,2,5,3,1,67,1,1,50,1,0,42,0,2,4,1,81,0,0,0,0,0,0,0,0,33,47,49,93,93,34,34,7,44,92,59,58,4,0,14086
University of Montevallo,1385,1209,531,3,96,495,613,465,550,440,580,20,26,3066,2526,540,2620,2350,270,531,519,12,446,176,270,0,87,44,7750,8520,9280,10000,23340,33030,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),3062,2526,536,2618,444,2350,268,1,1,15,2,0,73,2,5,1,1,67,1,1,14,2,0,74,2,6,1,1,66,0,0,20,1,0,73,1,4,0,1,75,497,94,27,5,0,0,7,1,24,39,45,88,80,38,38,5,1,63,55,55,3,5870,0
University of North Alabama,2542,2057,970,3,96,413,565,433,530,0,0,19,25,6931,5133,1798,5993,4852,1141,970,953,17,938,281,657,0,81,47,5426,6084,6528,7078,16933,22525,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),6931,5133,1798,5881,1050,4795,1086,1,1,13,2,0,72,2,4,5,1,58,1,0,13,2,0,72,2,4,5,1,57,1,7,11,1,0,72,1,1,6,7,61,822,85,135,14,0,0,13,1,12,27,32,82,68,54,53,19,2,40,70,70,2,4290,0
Oakwood University,2728,937,409,47,58,410,513,400,510,0,0,17,22,1905,1805,100,1855,1765,90,360,360,0,50,40,10,2,34,44,14250,14678,15414,16234,36295,36295,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,1903,1810,93,1861,42,1771,90,0,0,84,3,0,1,1,3,8,0,58,0,0,85,2,0,1,0,3,8,0,57,0,0,36,10,14,7,31,2,0,14,62,0,0,0,0,0,0,0,0,19,31,37,94,91,53,53,12,1,82,73,72,12,0,5665
Samford University,3447,2653,765,36,84,500,630,510,610,500,610,23,28,4833,4361,472,3013,2850,163,765,755,10,1820,1511,309,3,77,29,21942,23963,25150,26328,40900,40900,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),4833,4361,472,3013,1820,2850,163,0,2,7,5,0,81,1,1,4,2,62,0,1,7,7,0,81,1,0,3,1,65,0,3,8,2,0,81,1,2,4,3,57,0,0,0,0,0,0,0,0,49,64,69,98,98,14,14,10,23,97,40,39,4,0,60561
University of South Alabama,4814,4142,1878,8,92,440,550,435,565,420,520,20,26,15065,12028,3037,11307,8767,2540,1878,1834,44,3758,3261,497,0,86,45,5748,6204,6660,6948,19980,26628,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (high research activity),15065,12028,3037,11307,3758,8767,2540,1,3,20,2,0,66,2,2,3,4,61,1,3,22,2,0,64,2,2,3,4,57,1,3,13,2,0,74,1,2,3,4,76,1481,79,373,20,24,1,0,0,14,27,33,91,80,45,43,17,5,54,63,63,3,11350,0
Spring Hill College,6596,3052,431,20,92,480,600,480,600,480,610,21,27,1449,1231,218,1319,1226,93,431,431,0,130,5,125,0,46,14,26730,28060,29450,30924,46170,46170,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (smaller programs),1422,1210,212,1292,130,1205,87,1,1,16,8,0,68,2,3,1,1,60,1,1,16,9,0,67,2,4,1,1,60,0,1,19,2,1,77,0,0,0,2,67,0,0,0,0,0,0,0,0,47,55,56,100,100,34,33,32,27,100,64,63,3,0,15871
Stillman College,4121,1772,257,6,59,350,450,383,438,0,0,17,20,862,807,55,862,807,55,257,237,20,0,0,0,0,43,15,14464,15062,15665,15901,26877,26877,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Small,Baccalaureate Colleges--Arts & Sciences,863,808,55,863,0,808,55,0,0,92,1,0,6,0,0,0,0,49,0,0,92,1,0,6,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,23,26,100,100,74,74,41,34,87,78,78,2,0,19434
Talladega College,0,0,0,0,0,0,0,0,0,0,0,0,0,932,787,145,932,787,145,422,317,105,0,0,0,0,0,0,11111,11143,11492,11492,21296,21296,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,932,849,83,932,0,849,83,0,0,89,2,1,5,0,3,0,1,53,0,0,89,2,1,5,0,3,0,1,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,82,82,98,98,98,98,42,12,63,97,97,6,0,6100
Troy University,5946,4056,2087,7,38,0,0,0,0,0,0,18,24,21098,12292,8806,16755,10931,5824,2017,1780,237,4343,1361,2982,494,68,51,5860,6412,6844,7276,18228,24564,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Master's Colleges and Universities (larger programs),20573,10334,10239,16316,4257,9141,7175,1,1,38,3,0,47,2,5,3,1,64,1,1,37,3,0,49,2,5,3,1,62,1,1,44,4,0,41,2,3,4,1,70,1535,72,549,26,35,2,2,0,13,29,36,78,73,48,48,7,1,38,75,75,3,33,0
Tuskegee University,10022,3519,650,43,75,400,510,400,520,0,0,18,22,3065,2950,115,2575,2500,75,626,625,1,490,450,40,0,35,18,16750,17870,18900,18900,32853,32853,Alabama,Alabama,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,3118,2954,164,2584,534,2468,116,0,1,76,1,0,2,0,20,1,1,60,0,0,78,0,0,0,0,22,0,0,58,1,3,66,5,0,9,0,13,2,3,69,217,33,424,64,3,0,15,2,17,36,44,96,73,54,54,6,0,22,61,59,7,0,37366
University of Alaska Anchorage,0,0,0,0,0,0,0,0,0,0,0,0,0,17363,7904,9459,16380,7679,8701,1965,1411,554,983,225,758,838,0,0,5186,5396,5726,5147,18620,28679,Alaska,Alaska,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),17363,7904,9459,16380,983,7679,8701,6,6,3,7,1,59,9,6,2,7,59,6,7,4,7,1,58,9,6,2,8,59,5,3,2,5,0,72,4,3,3,4,67,1856,94,83,4,25,1,1,0,9,19,28,81,70,32,32,6,47,39,32,32,2,4018,0
University of Alaska Fairbanks,0,0,0,0,0,0,0,0,0,0,0,0,0,9166,4283,4883,7989,3654,4335,981,775,206,1177,629,548,278,0,0,5358,5568,5898,4984,16484,27060,Alaska,Alaska,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Research Universities (high research activity),9166,4283,4883,7989,1177,3654,4335,14,2,2,4,0,47,4,24,3,2,58,15,1,2,5,0,46,4,25,2,2,57,6,2,1,3,0,55,4,18,12,2,59,890,91,80,8,9,1,2,0,14,32,37,83,73,27,27,6,52,38,35,34,2,12346,0
University of Alaska Southeast,0,0,0,0,0,0,0,0,0,0,0,0,0,2996,889,2107,2645,821,1824,228,159,69,351,68,283,102,0,0,5130,5380,5740,5693,18657,29233,Alaska,Alaska,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (smaller programs),2996,889,2107,2645,351,821,1824,13,2,1,4,1,53,6,19,1,3,65,13,2,1,4,1,52,6,19,1,4,64,11,0,2,5,0,57,6,17,2,1,73,214,94,13,6,0,0,1,0,4,10,12,79,70,34,33,5,43,50,32,30,3,2108,0
Alaska Pacific University,494,185,33,74,26,465,575,450,510,435,568,20,24,603,392,211,367,245,122,33,31,2,236,147,89,6,37,18,26360,27110,29810,29810,43180,43180,Alaska,Alaska,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (smaller programs),669,323,346,387,282,245,142,13,1,2,3,0,53,8,20,0,2,65,16,2,3,3,1,56,11,10,0,2,66,8,1,1,2,0,50,4,33,1,1,63,0,0,0,0,0,0,0,0,25,33,40,100,100,42,42,15,15,100,58,58,4,0,192792
American Indian College of the Assemblies of God Inc,0,0,0,0,0,0,0,0,0,0,0,0,0,80,68,12,80,68,12,16,16,0,0,0,0,2,0,0,9750,10500,11700,12000,23342,23342,Arizona,Arizona,Southwest AZ NM OK TX,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,79,68,11,79,0,68,11,56,0,11,19,6,8,0,0,0,6,57,56,0,11,19,6,8,0,0,0,6,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,50,50,100,100,100,100,13,38,63,75,75,0,0,1665
Arizona State University-Tempe,21770,17465,7171,64,51,500,620,520,650,0,0,22,28,48702,42498,6204,38730,34989,3741,7171,7114,57,9972,7509,2463,0,80,41,8132,9720,9724,9861,23837,37630,Arizona,Arizona,Southwest AZ NM OK TX,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),48702,42498,6204,38730,9972,34989,3741,1,6,4,16,0,56,3,1,12,7,43,1,7,4,18,0,57,4,1,7,7,44,1,5,2,8,0,49,2,1,32,5,40,4165,58,2271,32,729,10,6,0,38,55,59,91,87,30,29,8,1,85,42,41,3,8058,0
University of Arizona,26329,20251,7401,66,52,483,600,500,630,480,590,21,27,40621,35497,5124,31670,28510,3160,6881,6381,500,8951,6987,1964,0,77,37,8237,10035,10035,10391,25179,42171,Arizona,Arizona,Southwest AZ NM OK TX,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),40621,35388,5233,31670,8951,28401,3269,1,6,3,21,0,54,4,3,8,6,52,1,6,3,24,0,55,4,1,6,6,52,2,6,2,11,0,51,2,9,17,6,51,4334,63,2351,34,0,0,196,3,40,58,61,83,75,30,30,0,0,72,37,36,3,15972,0
Embry-Riddle Aeronautical University-Prescott,1689,1334,448,71,53,500,630,540,650,490,600,23,29,1855,1720,135,1813,1687,126,448,443,5,42,33,9,0,79,34,29428,29552,30420,31034,46314,46314,Arizona,Arizona,Southwest AZ NM OK TX,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,1921,1786,135,1879,42,1753,126,1,8,2,7,1,58,7,8,8,9,21,1,8,2,7,1,58,7,8,8,9,21,0,2,2,14,0,36,2,24,19,2,24,71,16,345,77,27,6,5,1,37,56,59,91,90,20,20,0,0,90,61,60,16,0,11293
Northern Arizona University,33989,31057,4772,64,50,470,580,470,580,450,560,20,25,26606,20538,6068,22670,18769,3901,4772,4364,408,3936,1769,2167,0,91,15,7672,8826,9272,9738,22746,35101,Arizona,Arizona,Southwest AZ NM OK TX,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),26594,20533,6061,22160,4434,18577,3583,3,2,3,18,0,64,4,1,4,2,59,3,2,3,19,0,63,5,1,4,2,58,4,2,3,15,0,70,3,2,2,2,67,2782,59,1831,39,46,1,69,1,30,45,49,83,66,37,37,4,5,61,59,58,3,4163,0
Ottawa University-Phoenix,0,0,0,0,0,0,0,0,0,0,0,0,0,655,6,649,349,2,347,1,0,1,306,4,302,0,0,0,0,0,0,0,0,0,Arizona,Arizona,Southwest AZ NM OK TX,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),653,6,647,345,308,2,343,1,1,9,11,0,43,0,35,0,1,73,2,1,9,14,0,39,0,35,0,1,69,1,2,9,7,0,47,0,35,0,2,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4498
Prescott College,399,291,49,79,21,480,640,420,600,490,580,22,30,934,586,348,554,461,93,43,43,0,380,125,255,0,73,17,26235,27829,28820,29732,41336,41336,Arizona,Arizona,Southwest AZ NM OK TX,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (smaller programs),943,572,371,545,398,444,101,2,1,2,5,0,77,4,8,1,1,65,2,1,1,6,0,73,4,12,1,1,55,2,1,3,3,1,82,5,2,1,2,77,0,0,0,0,0,0,0,0,23,35,38,94,92,52,52,17,0,91,67,67,5,0,1166
Arizona Christian University,344,209,90,39,57,440,580,455,600,0,0,20,25,635,454,181,635,454,181,90,90,0,0,0,0,0,61,43,16174,18968,21040,21832,35382,35382,Arizona,Arizona,Southwest AZ NM OK TX,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,635,454,181,635,0,454,181,1,2,5,13,0,61,3,13,3,2,50,1,2,5,13,0,61,3,13,3,2,50,0,0,0,0,0,0,0,0,0,0,0,62,69,28,31,0,0,0,0,28,46,47,99,98,45,38,13,1,97,68,68,7,0,3657
University of Arkansas at Little Rock,1443,761,667,3,82,360,480,410,480,0,0,20,27,12377,6632,5745,9971,5552,4419,667,633,34,2406,1080,1326,220,53,88,6643,6937,6854,7094,23191,32968,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Doctoral/Research Universities,12377,6632,5745,9970,2407,5552,4418,0,3,23,6,0,58,6,1,4,3,59,0,3,23,6,0,57,7,0,3,3,59,0,2,18,4,0,61,2,3,9,2,63,585,88,49,7,33,5,0,0,7,16,21,94,92,53,53,5,71,46,46,46,1,7674,0
Arkansas Baptist College,0,0,0,0,0,0,0,0,0,0,0,0,0,1003,851,152,1003,851,152,225,197,28,0,0,0,59,0,0,7432,7800,7800,8040,21005,21005,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Midsize,Baccalaureate/Associate's Colleges,1027,867,160,1027,0,867,160,0,0,92,0,0,7,0,0,0,0,37,0,0,92,0,0,7,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,8,9,88,83,83,83,2,7,9,73,73,0,0,0
Lyon College,1309,772,174,9,95,470,600,540,610,460,600,22,28,592,562,30,592,562,30,174,174,0,0,0,0,0,59,23,21324,22906,23594,23594,34154,34154,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,592,562,30,592,0,562,30,2,1,4,5,0,77,0,8,3,1,54,2,1,4,5,0,77,0,8,3,1,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,45,50,100,100,42,42,18,71,100,71,71,4,0,79323
University of Arkansas,18908,11076,4339,27,91,500,600,520,630,0,0,23,28,25341,20376,4965,21009,18565,2444,4339,4300,39,4332,1811,2521,0,59,39,6768,7174,7554,7818,22212,33468,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),25341,20379,4962,21009,4332,18565,2444,1,2,5,6,0,76,3,0,5,2,50,1,2,5,6,0,78,3,0,3,2,51,2,2,6,4,0,67,2,1,16,2,48,2192,51,2090,48,57,1,0,0,37,55,60,81,66,22,22,5,50,35,41,41,3,36209,0
University of Arkansas at Pine Bluff,4094,1134,568,6,94,330,430,348,493,340,430,15,20,2615,2328,287,2521,2300,221,568,557,11,94,28,66,0,28,50,5033,5435,5724,5938,16882,22582,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Small,Baccalaureate Colleges--Diverse Fields,2615,2328,287,2521,94,2300,221,0,0,92,1,0,5,0,0,1,0,54,0,0,93,1,0,4,0,0,1,0,54,0,5,63,2,0,10,1,0,19,5,50,337,59,227,40,4,1,0,0,6,19,26,96,92,82,82,25,27,41,74,74,1,681,0
Arkansas State University-Main Campus,4838,3653,1619,1,95,410,515,458,548,413,478,21,26,13552,8384,5168,10098,7645,2453,1619,1575,44,3454,739,2715,521,76,44,6640,6934,7180,7510,20014,25624,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),13552,8384,5168,10098,3454,7645,2453,0,1,14,2,0,74,2,1,6,1,60,0,1,14,2,0,74,2,1,6,1,58,1,1,15,2,0,73,1,1,7,1,68,1410,87,155,10,54,3,0,0,19,31,36,95,93,48,48,7,74,63,50,50,1,3440,0
Arkansas Tech University,3847,3271,1755,1,84,370,490,410,520,370,490,18,25,11385,7283,4102,10498,7063,3435,1755,1678,77,887,220,667,347,85,54,4804,5070,5286,5598,16086,20862,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),11369,7283,4086,10482,887,7063,3419,1,1,7,6,0,79,3,0,3,1,56,1,1,7,6,0,79,3,0,3,1,54,1,1,10,3,0,73,2,0,10,1,70,1665,95,74,4,16,1,0,0,21,36,41,95,93,57,57,4,67,39,49,49,1,2252,0
University of Arkansas at Monticello,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,2545,1351,3742,2493,1249,683,624,59,154,52,102,126,0,0,4990,5290,5560,5793,16427,22224,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (smaller programs),3893,2546,1347,3706,187,2477,1229,0,0,29,3,0,64,2,1,0,1,59,0,0,29,3,0,63,2,1,0,1,58,1,1,11,3,0,78,3,3,1,1,67,620,91,58,9,1,0,0,0,10,20,22,98,96,76,75,6,43,44,60,60,0,824,0
University of Central Arkansas,3659,3292,2157,0,97,0,0,0,0,0,0,20,26,11534,9045,2489,9754,8285,1469,2202,2177,25,1780,760,1020,13,90,66,6908,7183,7333,7595,18596,24341,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),11534,9045,2489,9754,1780,8285,1469,1,1,17,3,0,68,2,3,4,2,61,1,1,18,3,0,66,3,3,4,2,58,1,1,11,2,0,80,2,1,3,1,75,1994,91,162,7,45,2,1,0,21,37,42,95,93,47,47,7,77,46,53,53,1,2317,0
Central Baptist College,540,292,129,3,85,430,590,470,670,430,620,18,23,827,650,177,827,650,177,129,119,10,0,0,0,16,54,44,10760,11610,12530,13350,23224,23224,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,827,650,177,827,0,650,177,1,0,21,2,0,72,1,0,3,0,49,1,0,21,2,0,72,1,0,3,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,38,38,99,97,58,43,15,60,95,68,66,2,0,3390
Harding University,2180,1663,1041,29,87,490,630,500,620,0,0,22,28,6238,4820,1418,4428,4105,323,1041,1030,11,1810,715,1095,0,76,63,14040,14610,15240,16170,26634,26634,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (larger programs),6238,4820,1418,4428,1810,4105,323,1,1,5,2,0,83,1,0,6,1,57,1,1,4,3,0,83,1,0,7,1,54,1,3,9,1,0,82,1,0,3,3,66,0,0,0,0,0,0,0,0,40,59,62,98,96,28,28,15,22,94,58,58,5,0,18798
Henderson State University,3350,2084,704,3,94,460,538,490,590,0,0,19,24,3548,2946,602,3185,2871,314,704,699,5,363,75,288,0,62,34,6740,7010,7280,7580,18934,25054,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (medium programs),3583,2953,630,3199,384,2878,321,0,1,23,3,0,67,5,0,1,1,57,0,1,24,4,0,66,5,0,1,1,56,0,0,17,2,0,76,2,0,2,0,68,597,85,99,14,8,1,0,0,14,25,29,98,95,60,57,12,70,54,58,57,2,4174,0
Hendrix College,1928,1550,436,45,82,530,680,540,650,0,0,26,32,1434,1423,11,1419,1410,9,450,450,0,15,13,2,0,80,28,32040,34230,36200,37816,52536,52536,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,1444,1434,10,1431,13,1422,9,2,5,5,5,0,71,2,7,4,5,55,2,5,4,5,0,71,2,7,4,5,55,0,0,23,0,0,69,0,8,0,0,38,0,0,0,0,0,0,0,0,63,68,70,100,100,20,20,14,41,100,46,46,4,0,118930
John Brown University,1143,798,305,30,82,500,640,505,640,490,610,22,28,2572,1710,862,2064,1582,482,305,305,0,508,128,380,2,70,38,19770,20766,21774,22734,34776,34776,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,2596,1698,898,2080,516,1571,509,2,1,3,5,0,74,3,9,5,1,58,1,1,2,5,0,72,3,10,6,1,56,3,1,6,5,0,80,3,1,1,1,65,0,0,0,0,0,0,0,0,55,65,65,99,95,42,31,39,30,95,54,54,12,0,38304
Ouachita Baptist University,1740,1220,394,19,91,440,550,460,580,0,0,21,27,1543,1507,36,1543,1507,36,394,394,0,0,0,0,0,70,32,19820,20630,21440,22370,32610,32610,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1543,1507,36,1543,0,1507,36,1,1,8,4,0,84,0,0,2,1,53,1,1,8,4,0,84,0,0,2,1,53,0,0,0,0,0,0,0,0,0,0,0,255,65,136,35,2,1,0,0,48,59,60,99,99,29,29,6,60,99,61,61,7,0,54781
University of the Ozarks,1061,651,159,16,85,420,550,450,550,0,0,20,26,585,571,14,585,571,14,159,159,0,0,0,0,0,61,24,20530,22050,23250,24350,36379,36379,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,585,571,14,585,0,571,14,1,0,5,9,0,69,4,1,11,1,52,1,0,5,9,0,69,4,1,11,1,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,47,48,98,92,44,43,19,55,90,64,50,53,0,154110
Philander Smith College,0,0,0,0,0,0,0,0,0,0,0,0,0,555,518,37,555,518,37,135,133,2,0,0,0,0,0,0,9450,11910,12464,12564,24986,24986,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,556,523,33,556,0,523,33,0,0,89,0,0,1,1,0,8,1,66,0,0,89,0,0,1,1,0,8,1,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,40,45,100,100,75,75,14,20,80,79,79,0,0,15423
Williams Baptist College,531,361,156,6,94,350,430,410,510,0,0,19,24,570,477,93,570,477,93,156,156,0,0,0,0,0,68,43,12020,12620,13150,13750,23886,23886,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate Colleges--Diverse Fields,574,486,88,574,0,486,88,1,0,6,2,0,89,0,0,2,0,62,1,0,6,2,0,89,0,0,2,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,36,39,100,100,52,52,28,76,100,65,65,2,0,20167
Southern Arkansas University Main Campus,2720,1654,663,6,94,410,520,430,590,0,0,18,24,3404,2561,843,2960,2497,463,663,658,5,444,64,380,119,61,40,6426,6786,7146,7466,19438,22588,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (medium programs),3404,2561,843,2960,444,2497,463,0,1,27,2,1,66,0,0,3,1,59,1,1,27,2,1,66,0,0,3,1,58,0,1,25,1,0,65,3,2,3,1,64,0,0,0,0,0,0,0,0,14,24,30,97,95,58,58,5,56,76,44,44,1,1061,0
University of Arkansas-Fort Smith,3905,2240,1343,2,82,350,540,430,620,390,550,19,25,7170,5116,2054,7170,5116,2054,1343,1265,78,0,0,0,377,57,60,4918,4250,4462,4528,16498,22042,Arkansas,Arkansas,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Baccalaureate/Associate's Colleges,7170,5116,2054,7170,0,5116,2054,3,4,4,8,0,74,5,0,1,4,56,3,4,4,8,0,74,5,0,1,4,56,0,0,0,0,0,0,0,0,0,0,0,1169,87,160,12,14,1,0,0,9,20,24,96,93,60,60,6,64,54,32,32,0,11489,0
Azusa Pacific University,5329,4255,1250,86,42,490,600,490,610,0,0,21,27,10092,7494,2598,6290,5531,759,1238,1215,23,3802,1963,1839,0,80,29,28800,29940,31076,32256,45996,45996,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,10755,7783,2972,6543,4212,5683,860,0,9,6,22,1,46,4,8,3,10,66,0,8,5,23,1,50,6,6,2,9,64,0,11,8,21,1,41,0,12,5,12,70,924,75,265,22,0,0,36,3,47,63,65,92,89,26,26,3,23,87,50,49,2,0,6604
Biola University,4816,3509,903,85,40,500,620,503,620,490,620,22,27,6323,5126,1197,4353,4203,150,903,900,3,1970,923,1047,0,73,26,28852,29908,31004,32142,46624,46624,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,6301,5107,1194,4331,1970,4184,147,0,19,3,14,0,52,5,3,4,19,53,0,16,2,17,0,55,6,2,2,16,62,0,26,4,7,0,46,2,6,9,26,34,670,74,223,25,1,0,9,1,49,64,68,96,93,28,28,10,26,93,85,85,14,0,17473
California Institute of Integral Studies,0,0,0,0,0,0,0,0,0,0,0,0,0,1278,915,363,75,68,7,0,0,0,1203,847,356,0,0,0,0,0,0,0,0,0,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,1271,988,283,75,1196,68,7,0,5,5,10,0,62,5,5,8,5,73,0,5,8,16,1,55,5,5,4,7,73,0,5,5,10,0,62,5,5,8,5,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1157
California Baptist University,3853,3036,993,82,44,430,550,420,560,420,540,18,24,7144,5864,1280,5797,5086,711,993,967,26,1347,778,569,0,79,33,24654,25808,26900,28122,42228,42228,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),7144,5864,1280,5797,1347,5086,711,1,5,9,30,1,45,3,5,2,6,66,1,5,8,30,1,45,3,5,2,6,64,1,5,12,27,0,45,1,6,2,5,74,911,92,62,6,18,2,2,0,41,54,58,95,93,46,46,15,39,93,76,76,12,0,2304
California Institute of Technology,5535,584,249,88,43,720,800,770,800,720,790,33,35,2213,2213,0,983,983,0,249,249,0,1230,1230,0,0,11,43,36282,37704,39588,41538,58755,58755,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Research Universities (very high research activity),2181,2181,0,977,1204,977,0,0,26,1,7,0,35,3,1,27,26,31,0,42,2,10,0,30,6,0,9,42,37,0,12,1,4,0,39,1,1,41,12,27,84,34,140,56,19,8,5,2,82,90,93,73,54,14,10,9,2,54,27,25,3,0,872856
California Lutheran University,6920,3323,540,84,42,500,590,510,613,0,0,22,26,4282,3740,542,2888,2717,171,540,540,0,1394,1023,371,0,48,16,31000,32860,34360,35720,52577,52577,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),4282,3740,542,2888,1394,2717,171,1,6,4,23,1,48,2,4,12,6,56,1,6,4,25,1,52,2,4,4,7,55,0,4,3,18,0,40,2,5,28,4,60,436,81,92,17,12,2,0,0,61,69,70,98,98,23,23,4,20,97,59,59,4,0,14701
California Polytechnic State University-San Luis Obispo,36941,11537,3635,88,62,550,650,590,690,0,0,25,30,19693,18758,935,18867,18169,698,5070,5061,9,826,589,237,0,31,32,6480,7911,8043,8724,24285,35445,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Master's Colleges and Universities (larger programs),19703,18775,928,18739,964,18058,681,0,11,1,15,0,60,7,5,2,11,45,0,11,1,15,0,59,7,5,2,12,45,0,8,1,13,0,62,4,9,3,8,47,4127,86,619,13,27,1,0,0,29,61,70,50,41,14,14,12,25,31,29,29,2,10629,0
Alliant International University,128,63,28,0,0,0,0,0,0,0,0,0,0,3502,2040,1462,260,172,88,28,26,2,3242,1868,1374,0,49,44,0,0,15190,15816,29986,29986,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,4201,2038,2163,917,3284,179,738,0,6,6,20,0,40,4,18,5,6,70,0,2,6,33,0,9,1,44,5,2,56,0,7,7,16,0,49,5,11,5,7,74,0,0,0,0,0,0,0,0,0,0,0,75,75,75,75,75,0,50,75,75,0,0,414
California State University-Bakersfield,6630,4393,1328,90,24,390,500,400,520,0,0,15,22,8371,7219,1152,7242,6473,769,1342,1323,19,1129,746,383,0,66,30,5314,6682,6709,6775,21186,32346,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),8371,7190,1181,7350,1021,6519,831,1,6,6,47,0,21,3,12,2,6,61,1,6,6,49,0,19,3,12,3,7,61,1,5,5,35,0,34,3,13,2,6,67,1314,98,10,1,18,1,0,0,15,32,39,81,74,64,64,6,47,60,35,35,1,2668,0
California State University-Stanislaus,5763,4158,1109,86,35,400,510,410,520,0,0,16,22,8529,6965,1564,7738,6544,1194,1227,1184,43,791,421,370,0,72,27,5302,6582,6582,6491,22433,33593,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Master's Colleges and Universities (larger programs),8917,7256,1661,7754,1163,6547,1207,0,11,3,44,1,29,4,7,2,11,65,0,11,3,45,1,28,4,6,2,12,64,0,6,3,37,0,36,3,12,2,6,72,1218,100,4,0,2,0,0,0,18,41,52,82,73,60,60,9,62,53,35,35,0,1455,0
California State University-San Bernardino,12239,7137,2448,95,37,390,490,400,510,0,0,16,20,18398,15156,3242,16630,14499,2131,2358,2319,39,1768,657,1111,0,58,34,5049,6518,6327,6550,20377,31537,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (larger programs),18398,15213,3185,16191,2207,14299,1892,0,6,7,52,0,19,3,6,6,6,62,0,6,7,55,0,17,3,5,6,7,61,0,4,7,34,0,29,2,14,9,5,66,2304,98,11,0,43,2,0,0,9,29,41,85,73,67,67,4,55,60,44,43,1,1353,0
California State Polytechnic University-Pomona,28143,14686,3120,95,27,460,570,490,620,0,0,20,26,22501,18996,3505,20943,18409,2534,3257,3169,88,1558,587,971,0,52,21,4807,6106,6125,6350,22571,33731,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),22501,18995,3506,20952,1549,18410,2542,0,24,3,36,0,22,4,5,5,25,44,0,25,3,37,0,22,4,5,4,25,43,0,17,3,28,1,29,2,11,9,18,53,3206,98,24,1,27,1,0,0,10,34,52,68,53,43,43,3,37,36,43,43,3,3819,0
California State University-Chico,17215,12327,2714,90,36,450,550,460,570,0,0,19,24,16360,14964,1396,15296,14213,1083,2342,2318,24,1064,751,313,0,72,22,5620,6890,6890,6972,22362,33522,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),16356,14960,1396,15290,1066,14207,1083,1,6,2,22,0,52,5,9,4,6,53,1,6,2,23,0,52,5,8,4,6,52,1,3,1,13,0,57,4,13,8,3,68,2271,97,24,1,45,2,0,0,17,47,56,63,46,37,36,7,34,33,45,44,2,2401,0
California State University-Dominguez Hills,14742,8472,1214,80,21,380,470,380,470,0,0,15,19,14670,9599,5071,12423,8565,3858,1556,1460,96,2247,1034,1213,0,57,14,4849,6095,6095,6100,21286,32446,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),14670,9599,5071,12481,2189,8574,3907,0,10,16,50,0,12,3,6,2,10,66,0,10,17,53,0,10,3,5,2,10,64,1,13,15,33,0,24,3,9,2,14,75,1551,100,5,0,0,0,0,0,4,16,29,88,78,74,74,6,35,67,37,37,0,1234,0
California State University-Fresno,16242,9444,3139,89,39,400,510,410,530,0,0,16,22,23060,19511,3549,20293,17569,2724,3266,3166,100,2767,1942,825,0,58,33,4879,6263,6228,6287,20682,31842,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),23060,19511,3549,20295,2765,17571,2724,0,15,4,41,0,26,3,7,4,15,58,0,16,4,42,0,25,3,6,3,16,57,0,11,4,32,0,35,2,9,7,11,66,3190,98,22,1,53,2,0,0,14,36,49,80,72,62,62,5,58,50,30,30,1,7161,0
California State University-Fullerton,38909,17817,4526,95,34,450,550,470,580,0,0,19,24,38325,29023,9302,33116,26682,6434,4667,4512,155,5209,2341,2868,0,46,25,4858,6120,6195,6186,23505,34665,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),38325,29023,9302,33116,5209,26682,6434,0,21,2,35,0,27,4,5,6,21,56,0,22,2,37,0,25,4,4,5,22,55,0,18,3,22,0,34,3,7,13,18,60,4482,96,46,1,139,3,0,0,14,40,53,66,51,41,41,2,42,33,35,35,2,1476,0
California State University-East Bay,12741,8756,1572,91,32,400,500,400,520,0,0,16,22,14546,11748,2798,12081,10503,1578,1501,1466,35,2465,1245,1220,0,69,18,5091,6414,6309,6550,22312,33472,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (larger programs),14526,11733,2793,12146,2380,10546,1600,0,23,10,23,1,20,5,8,9,24,61,0,24,11,25,1,18,6,8,7,25,61,0,16,8,12,1,28,3,13,19,17,62,1424,94,20,1,68,4,0,0,11,30,38,75,62,54,54,23,48,42,48,48,1,825,0
California State University-Long Beach,55019,16956,4276,95,33,440,550,460,590,0,0,18,24,35586,28459,7127,30474,25755,4719,4341,4117,224,5112,2704,2408,0,31,25,4810,6240,6052,6240,22106,33266,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),35586,28440,7146,30593,4993,25815,4778,1,22,4,35,0,22,4,5,6,22,57,1,23,4,37,0,21,4,4,6,23,57,1,17,5,25,1,29,3,9,10,18,61,4071,94,53,1,219,5,0,0,14,43,60,71,58,49,49,3,46,40,36,36,1,1788,0
California State University-Los Angeles,27321,18448,2908,95,32,380,480,390,510,0,0,15,20,23250,18129,5121,19577,16282,3295,3015,2885,130,3673,1847,1826,0,68,16,4848,6095,6101,6344,21705,32865,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),23258,18104,5154,19589,3669,16280,3309,0,16,5,56,0,10,2,5,6,16,59,0,16,5,60,0,8,2,4,5,17,59,0,14,5,36,1,20,3,9,12,15,62,2797,93,15,0,209,7,0,0,7,22,36,82,76,72,72,5,47,57,32,32,1,989,0
California State University-Northridge,29339,13566,4149,91,25,400,510,400,530,0,0,16,22,38310,30423,7887,33771,28200,5571,5818,5760,58,4539,2223,2316,0,46,31,5076,6488,6296,6525,21669,32829,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),38310,30423,7887,33771,4539,28200,5571,0,11,6,38,0,27,3,6,8,11,56,0,11,6,40,0,26,3,6,7,11,55,0,9,4,22,0,39,3,13,11,9,63,5555,95,39,1,224,4,0,0,13,35,46,74,64,59,58,12,43,53,36,36,1,2387,0
California State University-Sacramento,19702,13728,3151,92,34,410,520,430,540,0,0,17,22,28750,22744,6006,25957,21038,4919,3371,3193,178,2793,1706,1087,0,70,23,5195,6573,6620,6628,23209,34369,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),28811,22735,6076,26094,2717,21094,5000,0,20,6,25,1,33,6,7,2,21,57,0,21,6,26,1,32,6,6,2,22,57,1,11,4,17,0,44,4,12,7,12,65,3322,99,32,1,12,0,0,0,8,30,43,79,65,56,56,2,54,48,39,38,1,1303,0
University of California-Berkeley,61717,11108,4162,91,40,590,720,630,770,620,750,27,33,36103,34578,1525,25819,25044,775,4455,4415,40,10284,9534,750,0,18,37,10940,12834,12874,12864,33319,56197,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),36198,34675,1523,25951,10247,25220,731,0,30,2,12,0,31,4,5,15,30,50,0,35,2,13,0,29,5,3,13,35,52,1,16,3,8,0,38,2,11,21,16,45,0,0,0,0,0,0,0,0,72,89,91,69,60,27,27,15,25,58,30,29,1,36917,0
University of California-Davis,49820,22526,5208,93,45,510,640,560,680,530,650,23,29,32165,30870,1295,25515,24855,660,4900,4855,45,6650,6015,635,0,45,23,11958,13860,13877,13895,33066,55944,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Research Universities (very high research activity),33307,31986,1321,26533,6774,25826,707,0,31,2,16,0,34,5,3,9,32,55,0,35,2,17,0,31,5,2,6,36,56,1,15,2,9,0,47,3,7,18,15,51,0,0,0,0,0,0,0,0,51,77,81,77,68,37,37,0,38,67,45,44,2,7855,0
University of California-Irvine,56515,23956,5077,95,41,460,600,530,670,490,620,21,27,28895,27925,970,23530,23117,413,5460,5449,11,5365,4808,557,0,42,21,11232,13122,13122,13149,30504,53382,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),28895,28046,849,23530,5365,23127,403,0,39,2,19,0,21,4,3,11,39,52,0,44,2,22,0,17,4,2,9,44,54,0,17,2,10,0,37,3,9,22,17,43,0,0,0,0,0,0,0,0,68,84,86,77,71,48,48,26,49,65,46,46,7,8945,0
University of California-Los Angeles,72676,15981,5620,91,41,560,680,600,760,590,710,25,31,41200,40300,900,29000,28500,500,5710,5700,10,12200,11800,400,0,22,35,10781,12686,12692,12697,32416,55294,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),40795,39794,1001,28674,12121,28084,590,0,28,3,16,0,32,4,3,14,28,53,0,31,3,18,0,29,5,2,12,31,55,0,20,3,10,0,39,3,5,21,20,46,0,0,0,0,0,0,0,0,69,88,90,62,54,31,31,7,30,51,34,34,1,34375,0
University of California-Riverside,30391,18843,4034,96,40,470,580,500,630,480,590,20,25,21297,20849,448,18621,18205,416,4201,4185,16,2676,2644,32,0,62,21,11029,12924,12960,12960,32238,55116,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),21207,20653,554,18621,2586,18205,416,0,33,5,33,0,17,3,2,7,33,50,0,36,5,36,0,14,4,1,3,37,51,0,11,3,11,0,36,2,5,31,11,45,0,0,0,0,0,0,0,0,41,62,66,86,80,56,56,3,54,76,56,56,1,5387,0
University of California-San Diego,60832,22812,4575,93,39,550,660,620,730,580,690,25,31,28398,27480,918,23558,22855,703,5268,5262,6,4840,4625,215,0,38,20,11306,13200,13217,13271,30470,53348,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),29517,28606,911,23805,5712,23152,653,0,35,1,14,0,27,4,3,14,36,47,0,40,1,16,0,24,5,2,12,41,48,0,16,2,8,0,40,3,6,25,16,39,0,0,0,0,0,0,0,0,56,81,86,62,54,30,30,1,30,51,41,40,9,15714,0
University of California-Santa Barbara,55258,24556,4741,93,47,530,650,560,690,550,660,24,29,21956,21683,273,19111,18845,266,4610,4583,27,2845,2838,7,0,44,19,11686,13595,13671,13746,34051,56929,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Midsize,Research Universities (very high research activity),22225,21771,454,19362,2863,19076,286,0,16,2,23,0,41,7,4,6,16,51,0,18,2,25,0,40,8,3,4,18,52,0,8,1,8,0,50,1,10,21,8,44,0,0,0,0,0,0,0,0,68,79,81,70,63,41,41,0,41,62,47,46,2,5527,0
University of California-Santa Cruz,33137,19851,3827,92,43,470,610,490,620,470,610,20,26,17040,16580,460,15535,15135,400,3300,3290,10,1505,1445,60,0,60,19,11505,13416,13416,13397,33153,56031,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),17203,16755,448,15695,1508,15323,372,0,19,2,29,0,38,7,3,2,20,53,0,20,2,30,0,37,7,2,1,21,53,0,9,2,11,0,51,4,6,15,9,46,0,0,0,0,0,0,0,0,50,69,73,80,72,51,51,1,51,71,62,62,1,3473,0
California Maritime Academy,893,668,198,86,46,470,580,490,610,0,0,21,26,1043,999,44,1043,999,44,204,201,3,0,0,0,0,75,30,5294,6536,6536,6536,21102,32262,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,1045,1008,37,1045,0,1008,37,0,8,2,16,1,58,9,6,1,9,14,0,8,2,16,1,58,9,6,1,9,14,0,0,0,0,0,0,0,0,0,0,0,167,83,35,17,0,0,0,0,43,57,59,68,43,26,26,5,24,27,60,60,3,4413,0
Chapman University,11750,5253,1289,78,51,550,640,570,660,560,650,24,29,7892,7071,821,6005,5753,252,1289,1284,5,1887,1318,569,0,45,25,38524,40234,42084,43573,59459,59459,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),7892,7071,821,6005,1887,5753,252,0,11,2,14,0,57,5,5,6,11,59,0,10,2,14,0,59,6,5,4,10,59,0,13,2,14,0,48,4,6,13,14,58,822,64,398,31,67,5,2,0,59,73,76,87,81,19,18,6,14,81,75,75,5,0,29744
Concordia University-Irvine,2055,1874,373,83,38,453,550,450,560,450,550,20,25,4046,3345,701,1944,1746,198,373,373,0,2102,1599,503,0,91,20,26000,27300,28500,29630,43550,43550,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),4046,3345,701,1944,2102,1746,198,0,5,5,14,0,53,3,16,3,5,57,0,6,3,18,0,49,4,15,5,6,62,0,3,7,11,0,57,2,18,2,4,53,295,79,62,17,16,4,0,0,54,61,63,100,100,27,27,9,24,100,68,68,7,0,3240
San Diego Christian College,561,276,99,76,42,440,570,430,550,425,530,19,22,936,839,97,914,817,97,125,125,0,22,22,0,19,49,36,22692,23814,25108,25888,40252,40252,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,914,817,97,892,22,795,97,1,2,15,15,1,38,4,25,0,3,53,1,2,15,15,1,37,3,25,0,3,53,0,5,5,9,0,41,18,23,0,5,68,0,0,0,0,0,0,0,0,31,39,41,100,98,67,67,10,26,87,94,94,10,0,821
Claremont Graduate University,0,0,0,0,0,0,0,0,0,0,0,0,0,2205,1504,701,0,0,0,0,0,0,2205,1504,701,0,0,0,0,0,0,0,0,0,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Research Universities (high research activity),2204,1532,672,0,2204,0,0,0,9,6,13,0,42,3,8,17,10,53,0,0,0,0,0,0,0,0,0,0,0,0,9,6,13,0,42,3,8,17,10,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144214
Claremont McKenna College,5518,647,337,58,42,650,740,670,760,660,750,29,33,1323,1319,4,1311,1307,4,337,337,0,12,12,0,0,12,52,40230,42240,44085,45625,62010,62010,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1328,1324,4,1316,12,1312,4,0,11,4,11,0,44,8,8,15,11,48,0,11,4,11,0,44,8,8,15,11,48,0,0,8,0,0,33,0,17,42,0,33,127,38,143,42,67,20,0,0,84,91,93,53,49,11,11,0,7,49,16,9,11,0,456319
Coleman University,82,82,60,0,0,0,0,0,0,0,0,0,0,810,706,104,513,409,104,55,55,0,297,297,0,228,100,73,19600,19600,19600,20200,0,0,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate/Associate's Colleges,833,734,99,532,301,433,99,0,9,6,12,1,34,0,5,33,10,17,0,13,9,18,1,51,1,7,1,14,8,0,2,1,1,0,4,0,1,90,3,34,0,0,0,0,0,0,0,0,100,100,100,90,45,45,45,36,0,0,55,55,0,0,0
Dominican University of California,2322,1800,305,87,38,480,570,480,590,480,580,20,25,2158,1605,553,1603,1298,305,306,306,0,555,307,248,0,78,17,35550,37350,39050,40600,58860,58860,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (medium programs),2147,1603,544,1603,544,1298,305,1,14,4,19,1,38,3,18,2,15,75,1,17,4,22,1,32,3,18,2,18,74,1,6,3,12,1,56,1,16,5,7,77,264,86,37,12,0,0,5,2,36,51,53,98,98,31,31,16,28,98,92,92,9,0,14139
Fielding Graduate University,0,0,0,0,0,0,0,0,0,0,0,0,0,1289,1027,262,0,0,0,0,0,0,1289,1027,262,0,0,0,0,0,0,0,0,0,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Doctoral/Research Universities,1190,963,227,0,1190,0,0,2,4,13,9,0,55,3,14,0,4,72,0,0,0,0,0,0,0,0,0,0,0,2,4,13,9,0,55,3,14,0,4,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4399
Fresno Pacific University,705,553,212,98,39,440,550,440,550,428,550,18,22,3440,2499,941,2463,2126,337,241,230,11,977,373,604,0,78,38,23904,24790,25336,25716,36991,36991,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),3393,2423,970,2586,807,2137,449,1,4,5,37,1,42,2,7,2,5,69,1,4,5,40,0,39,2,7,2,4,68,2,4,6,30,1,50,1,6,1,5,71,0,0,0,0,0,0,0,0,43,53,54,99,99,55,55,2,55,97,68,68,2,0,3713
Golden Gate University-San Francisco,0,0,0,0,0,0,0,0,0,0,0,0,0,3307,1170,2137,479,122,357,0,0,0,2828,1048,1780,0,0,0,0,0,14160,14400,0,0,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),3227,1130,2097,475,2752,104,371,0,18,6,10,1,31,2,18,14,20,56,0,19,11,17,3,28,4,17,1,21,54,0,18,5,9,1,31,1,18,16,19,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24825
Harvey Mudd College,3539,643,217,89,41,680,760,720,800,670,760,32,35,803,801,2,803,801,2,217,217,0,0,0,0,0,18,34,40390,42410,44442,46509,63860,63860,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,807,805,2,807,0,805,2,0,22,1,9,0,47,4,5,11,22,46,0,22,1,9,0,47,4,5,11,22,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,89,91,75,71,16,16,14,9,71,41,40,2,0,306579
Holy Names University,561,318,87,97,40,410,500,410,500,0,0,17,21,1343,828,515,888,678,210,87,85,2,455,150,305,0,57,27,28690,30390,31640,33020,49041,49041,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),1343,827,516,888,455,677,211,0,16,22,24,3,23,3,6,2,18,72,1,19,20,28,4,18,4,5,2,23,69,0,9,27,17,0,33,1,9,4,9,78,0,0,0,0,0,0,0,0,25,32,35,100,100,48,48,9,36,100,89,89,8,0,10735
Humboldt State University,9978,8000,1237,93,37,450,580,440,560,0,0,18,24,8293,7629,664,7753,7255,498,1368,1344,24,540,374,166,0,80,15,5750,7062,7135,7144,22556,33716,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (medium programs),8293,7631,662,7767,526,7256,511,1,3,4,26,0,51,6,9,1,3,54,1,3,4,27,0,50,6,8,1,4,53,2,2,2,11,0,60,5,16,1,2,63,1250,91,113,8,5,0,0,0,11,29,40,74,61,46,46,2,44,48,61,61,3,3387,0
Humphreys College-Stockton and Modesto Campuses,0,0,0,0,0,0,0,0,0,0,0,0,0,1085,670,415,860,530,330,106,92,14,225,140,85,86,0,0,10134,10620,11160,11277,0,0,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,990,517,473,757,233,402,355,1,8,15,41,0,29,0,6,0,8,77,1,7,14,45,1,26,0,6,0,8,79,2,8,18,30,0,37,0,5,0,8,73,0,0,0,0,0,0,0,0,52,57,71,73,63,63,63,11,18,4,68,68,0,0,129
John F Kennedy University,0,0,0,0,0,0,0,0,0,0,0,0,0,1090,516,574,251,113,138,0,0,0,839,403,436,0,0,0,0,0,0,0,0,0,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),1356,580,776,279,1077,75,204,2,10,11,6,1,54,4,12,0,11,75,4,9,15,6,1,47,6,12,0,10,70,2,10,10,6,1,55,4,12,0,11,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3087
American Jewish University,100,59,23,0,0,0,0,0,0,0,0,0,0,219,191,28,108,106,2,7,7,0,111,85,26,0,59,39,24542,25788,27080,27900,46869,46869,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,229,188,41,112,117,108,4,0,0,1,2,0,23,0,73,0,0,48,1,0,2,4,0,36,1,57,0,0,50,0,0,0,1,0,11,0,88,0,0,46,0,0,0,0,0,0,0,0,69,81,81,92,92,25,25,25,0,92,50,42,8,0,86488
University of La Verne,6989,2722,623,91,31,460,550,470,580,460,560,20,25,8798,5672,3126,5255,3749,1506,578,576,2,3543,1923,1620,0,39,23,29800,31300,33350,35000,51997,51997,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,8796,5550,3246,5216,3580,3641,1575,0,5,6,40,0,25,3,10,10,6,59,0,5,6,48,0,26,3,8,2,6,58,0,5,6,28,0,24,2,12,22,6,61,0,0,0,0,0,0,0,0,39,56,59,97,96,47,47,7,45,96,73,73,14,0,6673
Lincoln University,0,0,0,0,0,0,0,0,0,0,0,0,0,474,424,50,109,64,45,38,27,11,365,360,5,11,0,0,9210,9220,10105,10105,0,0,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (smaller programs),492,436,56,116,376,64,52,0,5,2,1,0,10,0,0,82,5,50,0,15,8,3,0,39,0,0,36,15,65,0,2,1,0,0,1,0,0,97,2,46,0,0,0,0,0,0,0,0,0,76,76,22,22,22,22,0,0,3,22,22,0,0,0
La Sierra University,3479,1627,477,87,29,400,510,410,530,410,520,17,22,2440,2112,328,2105,1912,193,477,466,11,335,200,135,0,47,29,25881,27231,28314,29103,41490,41490,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),2440,2112,328,2105,335,1912,193,0,14,8,38,2,17,4,0,16,16,58,0,15,7,41,2,16,4,0,13,18,58,0,7,11,18,1,25,3,0,36,7,58,0,0,0,0,0,0,0,0,30,53,59,100,100,55,55,16,47,99,75,75,4,0,7322
The Master's College and Seminary,849,521,209,79,35,490,620,470,610,0,0,22,27,1456,1168,288,1072,953,119,191,191,0,384,215,169,0,61,40,25640,26650,27700,28800,42147,42147,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1499,1105,394,1112,387,981,131,0,9,4,10,1,62,5,4,5,9,37,0,6,4,11,1,63,6,5,4,7,47,0,16,5,7,1,60,2,1,9,16,9,0,0,0,0,0,0,0,0,48,53,54,99,95,33,33,9,24,93,62,62,6,0,9560
Loyola Marymount University,11472,6209,1341,79,44,540,640,550,650,550,650,25,29,9661,8707,954,6205,5935,270,1341,1340,1,3456,2772,684,0,54,22,36622,37825,39125,40265,57379,57379,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),9661,8710,951,6205,3456,5935,270,0,11,6,23,0,47,6,1,5,11,58,0,10,6,22,0,49,7,0,5,11,57,0,13,6,25,0,45,4,2,5,13,61,0,0,0,0,0,0,0,0,67,74,76,90,84,20,20,13,18,84,49,47,29,0,48767
Menlo College,4100,1519,139,87,31,432,532,450,565,425,513,19,25,746,715,31,746,715,31,139,139,0,0,0,0,0,37,9,33550,35076,36110,37100,53834,53834,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,745,712,33,745,0,712,33,0,7,6,21,2,36,8,7,13,9,38,0,7,6,21,2,36,8,7,13,9,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,39,41,98,98,33,33,15,24,98,64,63,5,0,38268
Mills College,1827,1242,217,86,36,540,640,500,610,520,620,23,28,1595,1424,171,985,922,63,217,217,0,610,502,108,0,68,17,37485,39264,40080,41494,56812,56812,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),1595,1424,171,985,610,922,63,1,10,8,18,1,48,8,4,2,11,92,1,12,6,22,1,47,9,2,1,12,100,0,9,12,12,0,51,6,8,2,9,79,163,75,53,24,0,0,1,0,53,61,62,100,99,42,42,25,37,99,76,76,12,0,111600
Monterey Institute of International Studies,0,0,0,0,0,0,0,0,0,0,0,0,0,756,651,105,22,20,2,0,0,0,734,631,103,0,0,0,0,0,0,0,0,0,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Master's Colleges and Universities (larger programs),731,651,80,22,709,20,2,0,6,1,8,0,45,3,10,26,6,65,0,9,5,18,0,50,0,18,0,9,18,0,6,1,7,0,45,4,10,27,6,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86534
Mount St Mary's College,2316,1716,559,91,35,420,510,420,520,0,0,16,22,3274,2509,765,2616,2091,525,559,554,5,658,418,240,159,74,33,30132,31339,32894,33852,51100,51100,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (smaller programs),3274,2508,766,2625,649,2092,533,0,15,8,53,1,14,2,6,1,16,91,0,16,7,58,1,10,2,5,1,17,94,0,9,10,35,1,30,2,11,1,10,78,547,98,11,2,0,0,1,0,52,64,66,100,100,70,70,6,66,100,97,97,15,0,42905
National University,0,0,0,0,0,0,0,0,0,0,0,0,0,18221,9158,9063,10082,5237,4845,1363,628,735,8139,3921,4218,112,0,0,11088,11376,11736,12096,0,0,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),18207,8877,9330,10074,8133,3724,6350,1,9,11,24,1,43,4,5,3,10,60,1,10,11,25,2,40,4,5,2,12,57,0,8,10,22,1,46,3,6,3,9,65,0,0,0,0,0,0,0,0,15,31,38,41,25,25,24,1,0,0,40,39,13,0,19810
Notre Dame de Namur University,1922,1676,172,77,45,430,550,430,560,430,510,18,22,2030,1071,959,1213,826,387,172,172,0,817,245,572,0,87,10,28500,29890,30522,31126,49038,49038,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),2030,1071,959,1213,817,826,387,1,12,5,27,2,34,4,10,5,14,70,1,12,6,34,3,26,4,11,4,15,67,1,11,4,17,1,46,4,10,6,13,75,149,87,21,12,0,0,2,1,36,47,48,100,97,49,49,13,34,97,76,76,1,0,10368
Occidental College,6072,2574,548,80,46,600,700,610,700,610,700,27,31,2128,2113,15,2128,2113,15,548,548,0,0,0,0,0,42,21,40939,42871,44570,46652,63363,63363,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,2128,2113,15,2128,0,2113,15,0,13,4,16,0,51,9,2,5,13,56,0,13,4,16,0,51,9,2,5,13,56,0,0,0,0,0,0,0,0,0,0,0,223,41,273,50,51,9,1,0,83,86,88,69,65,21,21,16,12,65,45,40,24,0,156752
Hope International University,408,191,78,91,37,433,538,420,528,423,530,17,22,1365,931,434,931,674,257,85,76,9,434,257,177,20,47,41,23250,24064,25264,26050,39537,39537,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1356,935,421,925,431,678,247,0,5,8,16,1,45,13,11,1,6,57,0,3,8,17,1,44,14,11,1,5,55,0,10,9,15,1,45,10,10,0,10,60,0,0,0,0,0,0,0,0,27,38,44,98,98,51,51,16,48,96,86,86,2,0,4625
Pacific Union College,2103,1063,335,79,30,450,570,440,580,440,560,18,25,1604,1457,147,1601,1454,147,335,334,1,3,3,0,130,51,32,25221,25965,26640,27480,39852,39852,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Arts & Sciences,1647,1456,191,1645,2,1454,191,0,18,8,27,2,27,7,10,2,20,56,0,18,8,27,2,27,7,10,2,20,56,0,0,0,0,0,50,0,50,0,0,50,285,85,47,14,2,1,1,0,24,34,37,100,100,50,50,32,35,100,83,79,49,0,15273
University of the Pacific,14222,10332,958,89,39,500,640,530,680,500,640,22,29,6421,5749,672,3877,3780,97,958,958,0,2544,1969,575,0,73,9,34100,36290,38320,39810,57033,57033,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,6421,5749,672,3877,2544,3780,97,1,32,3,15,0,36,4,4,5,33,54,1,32,3,19,0,32,4,4,5,32,52,1,34,3,10,0,42,2,3,6,34,57,829,87,75,8,49,5,5,1,40,58,63,91,90,29,29,25,30,90,56,56,0,0,44622
Pepperdine University,9721,3630,784,76,0,560,660,570,680,570,670,0,0,7315,5414,1901,3538,3172,366,784,783,1,3777,2242,1535,0,37,22,39080,40752,42772,44902,61192,61192,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,7315,5414,1901,3538,3777,3172,366,1,11,7,12,0,43,4,12,10,12,60,0,14,7,15,0,42,6,6,9,14,59,1,9,8,9,1,43,1,18,11,9,61,408,52,323,41,37,5,16,2,70,79,80,72,68,22,22,9,15,66,50,48,6,0,96659
Pitzer College,4115,597,261,0,0,0,0,0,0,0,0,0,0,1081,1044,37,1081,1044,37,266,266,0,0,0,0,0,15,44,41130,42550,43402,45018,61416,61416,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1081,1044,37,1081,0,1044,37,0,6,5,15,0,49,8,11,5,6,60,0,6,5,15,0,49,8,11,5,6,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,82,82,41,33,14,14,8,5,33,28,24,4,0,114135
Point Loma Nazarene University,3138,2088,647,86,48,520,630,520,630,0,0,23,28,3370,2630,740,2556,2483,73,647,645,2,814,147,667,0,67,31,27100,28310,29510,30356,44593,44593,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),3359,2669,690,2556,803,2483,73,1,6,3,20,1,62,4,2,0,7,65,1,6,3,19,1,64,5,1,0,6,63,1,7,6,22,1,56,2,5,0,8,72,500,77,144,22,3,0,0,0,62,70,72,93,86,27,27,6,25,82,64,64,9,0,12396
Pomona College,7153,996,397,78,51,690,760,690,780,690,780,31,34,1612,1596,16,1612,1596,16,397,396,1,0,0,0,0,14,40,38394,39883,41438,43580,59730,59730,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1610,1596,14,1610,0,1596,14,0,12,6,15,0,44,7,9,8,12,52,0,12,6,15,0,44,7,9,8,12,52,0,0,0,0,0,0,0,0,0,0,0,102,26,224,56,71,18,0,0,93,95,96,68,57,20,19,17,10,57,28,17,17,0,1146818
University of Redlands,4668,3137,673,71,37,510,610,520,620,0,0,23,27,5147,3907,1240,3607,2702,905,663,662,1,1540,1205,335,0,67,21,35540,37302,39338,41290,58559,58559,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),5147,3907,1240,3607,1540,2702,905,1,6,7,27,1,46,3,9,1,7,54,1,5,5,25,1,49,4,10,1,6,55,1,9,12,29,1,39,2,7,2,9,53,469,71,184,28,10,2,0,0,63,71,73,94,93,26,26,26,38,93,66,66,5,0,22824
San Diego State University,51163,15970,4139,92,42,480,590,500,610,0,0,21,26,31899,26840,5059,27087,24021,3066,4671,4432,239,4812,2819,1993,0,31,26,5206,6578,6578,6766,25068,36228,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (high research activity),31899,26859,5040,27099,4800,24037,3062,0,13,4,28,0,38,6,6,6,14,56,0,14,4,29,0,37,6,5,5,14,55,0,10,3,19,0,43,4,8,13,10,60,3990,85,498,11,183,4,0,0,33,59,66,62,48,34,34,0,41,29,35,35,2,5770,0
University of San Diego,14693,7178,1238,73,53,540,650,570,670,0,0,25,30,8321,7066,1255,5665,5486,179,1238,1238,0,2656,1580,1076,0,49,17,37372,38582,39970,41392,58189,58189,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,8321,7066,1255,5665,2656,5486,179,1,7,3,17,0,54,5,6,7,8,57,0,6,3,19,0,55,6,5,7,6,55,1,11,4,15,0,51,3,9,7,11,61,669,54,511,41,44,4,14,1,65,74,75,76,72,17,17,16,12,72,46,45,16,0,46387
San Francisco State University,31462,20070,3807,93,23,430,550,450,560,0,0,19,24,29905,24422,5483,26157,22111,4046,3612,3550,62,3748,2311,1437,0,64,19,5014,6276,6440,6450,23828,34988,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),29905,24422,5483,26156,3749,22111,4045,0,27,5,23,1,26,5,5,8,28,58,0,29,5,24,1,23,6,4,8,29,57,0,15,4,14,0,43,5,9,10,16,64,3501,97,20,1,91,3,0,0,13,35,45,70,53,47,47,22,38,40,46,45,2,1675,0
University of San Francisco,14808,9076,1148,75,43,530,630,540,640,530,630,23,27,10028,9218,810,6308,6074,234,1148,1146,2,3720,3144,576,0,61,13,36380,37424,38884,40294,58384,58384,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,10112,9255,857,6392,3720,6111,281,0,18,4,17,0,34,6,5,15,18,63,0,19,3,19,0,31,7,2,18,20,62,0,15,6,15,0,38,4,11,10,15,65,661,58,253,22,234,20,0,0,57,67,69,71,66,24,24,7,20,65,52,51,7,0,24298
San Jose State University,25155,15967,3384,94,24,440,550,470,600,0,0,19,25,30768,23777,6991,25859,20821,5038,512,389,123,4909,2956,1953,0,63,21,5370,6828,6852,7343,23629,34789,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),31278,24196,7082,25862,5416,20852,5010,0,32,3,22,1,24,5,4,9,33,51,0,35,3,24,1,22,5,4,5,36,49,0,17,2,13,0,31,3,6,27,18,59,3599,96,61,2,76,2,0,0,8,33,48,60,45,40,40,12,30,30,40,40,0,4276,0
Santa Clara University,14339,7344,1278,79,48,590,680,610,700,0,0,27,31,8770,7226,1544,5435,5338,97,1291,1291,0,3335,1888,1447,0,51,17,37368,39048,40572,42156,59589,59589,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),8770,7225,1545,5435,3335,5338,97,0,16,2,14,0,42,5,9,11,17,49,0,14,3,17,0,48,7,8,3,15,50,0,20,2,9,0,34,2,11,23,20,47,788,61,459,36,0,0,44,3,77,83,84,84,82,12,12,3,11,82,41,40,3,0,69357
Scripps College,2378,849,272,73,43,640,733,640,720,660,750,29,32,1009,996,13,990,979,11,272,272,0,19,17,2,0,36,32,40450,41950,43620,45564,61370,61370,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1009,996,13,990,19,979,11,0,17,3,8,0,50,7,10,4,17,99,0,17,3,8,0,50,7,10,4,17,100,0,21,0,5,0,58,0,16,0,21,58,104,38,131,48,6,2,31,11,80,84,84,61,52,12,12,3,8,52,42,37,18,0,289527
Simpson University,573,318,150,85,33,460,570,450,580,450,560,21,23,1253,1088,165,1024,993,31,150,150,0,229,95,134,0,55,47,21000,21600,22400,23300,35324,35324,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,1255,1088,167,1024,231,993,31,3,7,3,12,0,64,0,11,0,7,66,4,6,3,14,0,62,0,11,0,6,66,1,10,3,3,0,72,0,10,0,11,64,0,0,0,0,0,0,0,0,38,45,47,100,99,48,48,10,43,99,98,98,3,0,4355
Saint Mary's College of California,4864,3379,622,80,43,500,600,510,610,510,610,22,27,4185,3427,758,3025,2813,212,622,622,0,1160,614,546,1,69,18,35430,37150,38450,39890,58365,58365,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Master's Colleges and Universities (larger programs),4257,3490,767,3055,1202,2823,232,0,11,5,22,1,46,5,9,2,11,61,0,11,4,25,1,46,6,6,2,11,59,0,11,8,16,0,46,2,15,1,11,66,537,86,72,12,10,2,3,0,50,58,60,91,89,25,25,17,25,89,67,65,13,0,35761
Sonoma State University,13142,10758,1749,93,38,450,550,450,560,0,0,19,24,9120,8058,1062,8351,7652,699,1807,1767,40,769,406,363,0,82,16,5508,6862,7162,7234,23295,34455,California,California,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),9120,8052,1068,8391,729,7679,712,1,4,2,23,0,55,6,7,2,4,62,1,4,2,24,0,54,6,7,2,4,61,0,6,2,11,0,64,4,13,1,6,72,1786,99,16,1,4,0,1,0,26,48,54,62,41,29,29,7,28,30,46,46,2,4095,0
Vanguard University of Southern California,1495,1043,392,82,29,430,550,400,520,0,0,18,28,2418,1683,735,2137,1577,560,392,390,2,281,106,175,2,70,38,26342,27400,28500,29250,43076,43076,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,2415,1678,737,2135,280,1576,559,0,5,4,33,1,48,5,3,1,6,68,1,4,4,34,1,46,5,4,1,5,68,0,8,5,20,1,61,3,2,0,8,73,0,0,0,0,0,0,0,0,47,52,52,99,98,39,39,31,36,97,73,73,8,0,1856
University of Southern California,47358,9395,2922,79,41,620,720,660,760,640,750,29,33,41368,35895,5473,18445,17729,716,2922,2920,2,22923,18166,4757,0,20,31,41022,42818,44463,46298,62180,62180,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (very high research activity),41368,35895,5473,18445,22923,17729,716,0,19,5,12,0,34,3,5,21,19,52,0,23,4,13,0,37,5,5,13,23,50,0,15,6,12,0,32,2,5,28,16,53,1416,48,1031,35,463,16,12,0,78,90,91,67,59,18,18,17,12,59,34,34,2,0,107715
Thomas Aquinas College,178,141,88,84,31,590,700,570,640,570,690,23,31,366,366,0,366,366,0,88,88,0,0,0,0,0,79,62,22400,22850,23600,24500,35716,35716,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate Colleges--Arts & Sciences,366,366,0,366,0,366,0,0,1,0,15,0,73,4,2,3,1,49,0,1,0,15,0,73,4,2,3,1,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,76,80,82,75,35,35,0,12,73,77,73,5,0,33310
Westmont College,2145,1505,298,79,50,520,650,540,660,520,650,24,29,1328,1315,13,1315,1302,13,298,298,0,13,13,0,0,70,20,34460,35650,37020,38510,53670,53670,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Baccalaureate Colleges--Arts & Sciences,1321,1311,10,1308,13,1298,10,0,6,1,13,0,66,7,4,2,7,62,0,6,1,13,0,66,7,4,2,7,61,0,8,0,15,0,69,8,0,0,8,100,205,73,68,24,5,2,1,0,72,76,76,99,99,21,21,14,15,99,59,57,21,0,52202
Whittier College,4381,2771,446,85,34,460,570,470,580,470,580,20,25,2363,2072,291,1695,1667,28,446,446,0,668,405,263,0,63,16,35582,36992,38640,40296,53700,53700,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,2339,2065,274,1656,683,1623,33,1,10,4,38,0,38,4,1,3,10,55,1,9,5,42,0,35,4,0,4,9,56,0,13,4,29,1,45,5,3,1,14,54,0,0,0,0,0,0,0,0,63,66,67,94,93,35,35,6,30,92,69,67,24,0,38487
Woodbury University,879,490,118,82,23,420,540,440,550,0,0,19,25,1598,1364,234,1347,1148,199,118,111,7,251,216,35,0,56,24,29132,29994,31444,33150,48512,48512,California,California,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),1607,1393,214,1357,250,1175,182,0,9,4,27,0,39,2,0,18,9,52,0,9,4,29,1,37,2,0,18,10,51,0,5,4,18,0,52,1,0,20,5,54,0,0,0,0,0,0,0,0,19,35,45,79,77,49,49,3,31,75,73,73,3,0,10517
Adams State University,2658,1398,519,16,90,440,533,450,550,440,530,17,22,3275,2187,1088,2341,1875,466,533,514,19,934,312,622,101,53,37,4971,5627,6448,7449,19691,30323,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (medium programs),3211,2185,1026,2284,927,1873,411,1,1,7,26,0,56,3,5,0,2,56,1,1,7,31,1,51,4,4,0,2,50,0,2,5,13,0,69,2,8,0,2,71,388,74,136,26,2,0,1,0,12,21,25,92,88,51,51,5,43,68,66,65,2,233,0
University of Colorado Denver,3075,2333,991,18,86,490,600,480,605,0,0,20,26,19590,11570,8020,10678,7650,3028,1153,1055,98,8912,3920,4992,0,76,42,7214,7394,7494,7933,24555,38679,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (high research activity),22206,11800,10406,13010,9196,7782,5228,1,8,4,13,0,57,3,9,7,8,57,0,9,5,17,0,52,3,6,8,9,53,1,6,3,7,0,63,1,13,6,7,61,1034,88,103,9,42,4,1,0,16,32,41,71,59,37,37,2,23,50,40,39,1,0,0
University of Colorado Colorado Springs,7034,6401,1616,20,90,470,580,470,600,0,0,21,25,11018,7418,3600,9051,6940,2111,1616,1508,108,1967,478,1489,0,91,25,6029,6512,6688,7024,20424,31837,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),11321,7450,3871,9220,2101,6962,2258,1,3,4,13,0,68,5,4,2,4,53,1,3,4,14,0,68,6,3,1,4,53,0,3,3,8,0,69,2,7,7,3,55,1399,86,195,12,15,1,9,1,26,42,46,76,55,29,29,6,16,37,50,49,4,0,0
University of Colorado Boulder,22473,19710,5846,45,75,520,630,540,650,0,0,24,29,31702,26148,5554,25981,23853,2128,5846,5782,64,5721,2295,3426,0,88,30,8511,9152,9482,10347,28887,50655,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),32017,26242,5775,26096,5921,23948,2148,0,5,2,9,0,72,3,3,6,5,45,0,5,2,10,0,74,4,2,4,5,45,1,4,1,7,0,63,2,8,16,4,43,3248,56,2298,39,290,5,4,0,44,66,70,59,40,17,17,3,8,39,38,36,5,0,0
Colorado Christian University,1186,1158,447,0,0,0,0,0,0,0,0,0,0,5380,1587,3793,4983,1476,3507,549,362,187,397,111,286,49,98,39,22040,22960,23870,25046,38130,38130,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (medium programs),5368,1583,3785,4973,395,1472,3501,1,1,6,9,0,52,2,29,0,1,66,1,1,6,9,0,50,2,30,0,1,66,0,2,6,8,0,75,3,5,1,2,66,0,0,0,0,0,0,0,0,24,34,36,98,97,31,30,19,16,95,58,58,8,0,1145
Colorado College,5780,1288,522,49,47,610,710,610,720,620,700,27,32,2061,2044,17,2041,2025,16,522,522,0,20,19,1,0,22,41,38898,40050,41892,44222,57400,57400,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,2061,2044,17,2041,20,2025,16,0,4,2,9,0,69,8,1,7,4,55,0,4,2,9,0,69,8,1,7,4,55,0,5,5,10,0,65,5,5,5,5,65,90,17,380,73,47,9,5,1,79,86,87,53,44,10,10,4,4,44,37,36,1,0,317840
Colorado School of Mines,11682,4373,949,42,88,570,670,630,720,550,650,27,31,5660,5183,477,4294,4082,212,954,954,0,1366,1101,265,0,37,22,13425,14453,15654,16485,30603,46533,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (high research activity),5790,5188,602,4291,1499,4080,211,0,4,1,7,0,71,3,3,11,4,29,0,5,1,8,0,74,4,2,5,5,27,0,2,1,5,0,60,1,3,26,2,33,535,56,377,40,40,4,2,0,41,66,70,87,72,16,16,1,15,72,50,49,7,41918,0
Colorado State University-Fort Collins,17970,13914,4443,28,92,510,620,510,630,0,0,22,27,30640,23741,6899,23798,21283,2515,4443,4418,25,6842,2458,4384,0,77,32,6895,7952,8649,9313,23203,39056,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),31186,23371,7815,23548,7638,20400,3148,0,2,2,8,0,73,3,6,5,2,51,0,2,2,9,0,75,3,5,3,2,51,0,4,2,6,0,67,2,7,12,4,51,3423,77,1003,23,9,0,0,0,37,59,64,73,46,24,24,10,20,45,46,45,4,10399,0
College America-Denver,0,0,0,0,0,0,0,0,0,0,0,0,0,465,465,0,465,465,0,247,247,0,0,0,0,115,0,0,15024,15790,16154,17211,0,0,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate/Associate's Colleges,497,497,0,497,0,497,0,1,3,20,33,0,42,1,0,0,3,78,1,3,20,33,0,42,1,0,0,3,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,32,32,95,89,89,89,76,0,76,93,88,61,0,0
University of Denver,13735,10539,1413,44,70,540,660,560,660,520,630,25,30,11843,8575,3268,5561,5227,334,1413,1413,0,6282,3348,2934,0,77,13,36501,37833,39177,40707,56077,56077,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (high research activity),11778,8411,3367,5517,6261,5129,388,0,3,3,8,0,68,3,3,10,3,56,1,4,3,9,0,68,3,3,9,4,55,0,2,4,8,0,68,2,4,11,2,58,474,34,824,59,100,7,9,1,67,76,78,85,83,17,17,2,5,83,41,40,5,0,38352
Fort Lewis College,2560,2240,876,23,87,470,570,475,580,0,0,20,25,4065,3698,367,4028,3698,330,876,864,12,37,0,37,3,88,39,4924,5592,6462,6923,22393,33233,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,4021,3670,351,3984,37,3670,314,22,0,1,9,0,57,6,3,2,1,49,22,1,1,9,0,57,6,3,2,1,49,0,0,0,5,0,89,0,5,0,0,81,464,53,408,47,1,0,0,0,17,33,37,91,81,32,31,2,36,72,51,51,2,1710,0
Colorado Mesa University,6459,5304,2214,12,87,430,540,450,550,0,0,18,23,9541,7288,2253,9440,7271,2169,2214,2091,123,101,17,84,200,82,42,6248,6548,6870,6725,19729,29752,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,9676,7284,2392,9576,100,7267,2309,1,1,2,14,0,73,4,4,0,2,55,1,1,2,14,1,73,4,4,0,2,55,2,1,0,6,0,87,0,3,1,1,62,1907,86,293,13,6,0,2,0,13,29,33,90,71,43,43,1,36,27,65,65,4,2499,0
Metropolitan State University of Denver,5867,4175,1991,3,86,460,590,470,610,0,0,18,23,22775,13526,9249,22316,13224,9092,2111,1651,460,459,302,157,0,71,48,4093,4834,5341,5744,0,0,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,22752,13508,9244,22289,463,13202,9087,1,3,6,20,0,61,3,4,0,4,54,1,3,6,21,0,61,3,4,0,4,54,0,3,4,12,0,76,3,2,0,3,76,2195,98,37,2,1,0,1,0,6,17,26,68,50,40,40,1,42,13,46,46,1,73,0
Naropa University,79,63,38,0,0,0,0,0,0,0,0,0,0,992,800,192,383,359,24,38,38,0,609,441,168,0,80,60,25100,26360,27670,28790,43620,43620,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),992,799,193,383,609,358,25,1,2,1,7,0,68,6,10,5,2,67,0,1,1,8,0,65,9,12,3,1,64,1,2,1,7,0,70,4,9,6,2,69,0,0,0,0,0,0,0,0,20,39,41,63,63,42,42,21,8,54,46,46,0,0,6936
University of Northern Colorado,7602,5289,1939,13,91,450,570,450,570,0,0,20,24,12084,9708,2376,9710,8723,987,1976,1962,14,2374,985,1389,0,70,37,5997,6623,6514,6968,20264,31803,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Doctoral/Research Universities,12710,9735,2975,9947,2763,8733,1214,0,2,3,14,0,61,3,13,3,2,65,0,2,4,16,0,58,3,15,2,2,63,0,2,2,6,0,74,2,6,7,2,72,1715,87,254,13,13,1,0,0,27,43,46,90,80,36,36,3,23,76,60,59,5,6428,0
Regis University,3006,2100,531,30,67,490,600,470,600,0,0,21,26,9620,5272,4348,5197,2541,2656,411,392,19,4423,2731,1692,0,70,25,30598,31188,31800,32424,46326,46326,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),9722,5251,4471,5172,4550,2508,2664,1,4,6,14,0,63,2,9,1,5,64,1,4,5,17,0,61,2,9,1,4,63,1,5,7,10,0,65,2,8,1,5,65,228,58,160,41,1,0,1,0,42,56,58,98,98,28,28,9,25,98,54,53,3,0,5991
Colorado State University-Pueblo,3147,2969,916,12,89,420,510,420,540,0,0,18,23,4669,3787,882,4387,3667,720,790,763,27,282,120,162,0,94,31,5615,6270,7327,7327,20938,31260,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (smaller programs),7089,4051,3038,5207,1882,3742,1465,1,2,6,23,0,55,2,10,2,2,62,1,2,7,29,0,50,3,6,1,2,56,0,1,2,4,0,69,0,21,3,1,80,694,88,93,12,6,1,0,0,18,28,33,94,73,50,50,26,43,41,80,80,3,2072,0
Western State Colorado University,1514,1411,473,23,86,430,560,430,550,0,0,19,24,2260,1982,278,2084,1858,226,472,469,3,176,124,52,0,93,34,4775,5473,6449,7343,20045,29986,Colorado,Colorado,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,2404,1993,411,2193,211,1869,324,0,1,2,8,0,64,2,21,1,1,45,0,1,2,9,0,68,2,17,1,1,42,0,0,0,1,0,29,0,68,0,0,71,335,71,134,29,0,0,0,0,23,40,42,91,85,31,31,12,24,66,33,33,5,0,0
Albertus Magnus College,689,470,132,95,0,380,480,320,480,410,470,0,0,1582,1469,113,1278,1199,79,151,145,6,304,270,34,82,68,28,24374,26294,28358,28378,47302,47302,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),1582,1469,113,1278,304,1199,79,0,1,27,12,0,45,1,13,0,1,67,0,1,28,14,0,45,1,11,0,1,65,1,0,23,6,0,48,0,23,0,0,75,122,85,21,15,0,0,0,0,0,15,43,83,83,43,43,27,54,83,78,78,19,0,2997
University of Bridgeport,5248,3351,542,91,9,410,500,420,510,410,500,18,22,4842,3159,1683,2835,2035,800,542,538,4,2007,1124,883,78,64,16,26370,27330,28140,29090,50043,50043,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),4842,3159,1683,2835,2007,2035,800,1,3,24,13,0,35,2,0,22,4,62,1,3,35,18,0,27,2,0,14,3,66,0,4,9,5,0,47,2,0,33,4,57,205,38,284,52,52,10,1,0,19,25,27,93,93,60,60,32,33,93,81,81,7,0,6939
Central Connecticut State University,5551,3560,1293,97,3,450,540,460,560,450,550,19,25,11865,8208,3657,9771,7624,2147,1293,1278,15,2094,584,1510,0,64,36,7861,8055,8321,8706,23197,34702,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),11865,8208,3657,9771,2094,7624,2147,0,3,10,10,0,69,2,3,1,4,51,0,3,11,11,0,68,2,3,1,4,48,0,3,8,5,0,75,1,4,3,3,66,1201,93,76,6,16,1,0,0,20,45,52,84,69,34,34,21,37,60,67,66,6,4351,0
Charter Oak State College,0,0,0,0,0,0,0,0,0,0,0,0,0,1397,280,1117,1397,280,1117,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1580,301,1279,1580,0,301,1279,0,2,16,11,0,60,1,9,1,2,66,0,2,16,11,0,60,1,9,1,2,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1591,0
Connecticut College,4837,1734,503,0,0,0,0,0,0,0,0,0,0,1922,1881,41,1915,1877,38,489,489,0,7,4,3,0,36,29,43990,43990,44890,46085,60780,60780,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,1922,1881,41,1915,7,1877,38,0,3,4,9,0,70,3,6,5,3,61,0,3,4,9,0,70,3,6,5,3,61,0,0,14,0,0,71,0,14,0,0,43,75,15,376,77,38,8,0,0,79,83,84,53,44,12,12,12,10,44,37,36,3,0,114620
University of Connecticut,27479,14745,3755,91,27,550,650,580,680,0,0,25,30,25369,21942,3427,18032,17219,813,3755,3741,14,7337,4723,2614,24,54,25,10416,10670,11242,12022,27244,46192,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (very high research activity),25911,22482,3429,18032,7879,17219,813,0,8,5,7,0,61,2,8,9,8,50,0,9,5,8,0,63,3,8,4,9,49,0,6,5,5,0,55,1,8,20,7,52,2614,70,1055,28,86,2,0,0,68,81,83,77,63,18,18,2,17,62,49,48,5,13387,0
Eastern Connecticut State University,5112,3299,985,94,13,460,550,470,550,470,560,20,24,5368,4462,906,5179,4395,784,985,963,22,189,67,122,8,65,30,8350,8555,8911,9376,24394,35899,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Town: Fringe,Master's Colleges and Universities (smaller programs),5368,4462,906,5179,189,4395,784,0,2,6,8,0,71,2,8,1,3,54,0,3,6,9,0,70,2,8,1,3,54,1,1,2,5,1,84,2,4,1,2,75,912,93,65,7,8,1,0,0,32,48,51,82,57,26,26,10,31,48,72,72,10,2472,0
Fairfield University,9254,6585,990,0,0,0,0,0,0,0,0,0,0,4919,3930,989,3873,3546,327,963,963,0,1046,384,662,3,71,15,39040,40580,41690,42920,58730,58730,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),4919,3930,989,3873,1046,3546,327,0,2,2,7,0,62,1,23,4,2,61,0,2,3,8,0,70,1,15,2,2,60,0,1,1,3,0,31,0,53,10,1,68,231,24,715,74,16,2,1,0,79,81,82,89,85,13,13,5,8,85,56,55,10,0,57869
Rensselaer Hartford Graduate Center Inc,0,0,0,0,0,0,0,0,0,0,0,0,0,300,12,288,0,0,0,0,0,0,300,12,288,0,0,0,0,0,0,0,0,0,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),281,11,270,0,281,0,0,0,10,3,2,0,76,0,10,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,10,3,2,0,76,0,10,0,10,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32321
University of Hartford,15127,9338,1267,74,15,470,570,480,580,0,0,20,26,6820,5213,1607,5187,4495,692,1267,1267,0,1633,718,915,131,62,14,29852,30754,32172,33358,48170,48170,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),6820,5213,1607,5187,1633,4495,692,0,3,13,8,0,60,2,8,6,3,53,1,3,15,9,0,58,2,7,5,3,50,0,4,6,6,0,65,1,10,8,4,61,487,38,743,59,37,3,0,0,51,59,61,98,98,32,32,13,9,98,75,74,18,0,19519
Mitchell College,1162,670,178,0,0,0,0,0,0,0,0,0,0,866,747,119,866,747,119,178,176,2,0,0,0,19,58,27,26907,27714,28494,29458,46750,46750,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,866,747,119,866,0,747,119,1,2,13,7,0,68,5,3,1,2,46,1,2,13,7,0,68,5,3,1,2,46,0,0,0,0,0,0,0,0,0,0,0,92,52,82,46,4,2,0,0,31,38,39,100,97,35,35,19,20,97,90,89,13,0,8945
University of New Haven,10169,7567,1174,90,24,460,550,470,580,460,560,20,25,6555,5342,1213,4864,4407,457,1174,1159,15,1691,935,756,50,74,16,30750,31750,32750,33740,50210,50210,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),6555,5342,1213,4864,1691,4407,457,0,2,8,7,0,51,1,17,13,2,50,0,2,8,8,0,52,1,20,7,2,49,0,3,8,4,0,47,1,7,29,3,50,348,30,768,65,57,5,1,0,44,53,55,95,95,28,28,1,11,95,79,79,26,0,4809
Quinnipiac University,20699,13914,1803,90,29,490,580,510,610,500,590,22,27,8829,7612,1217,6547,6316,231,1803,1800,3,2282,1296,986,0,67,13,34250,36130,38000,39330,55780,55780,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),8803,7602,1201,6542,2261,6307,235,0,3,5,7,0,77,2,5,2,3,63,0,2,4,8,0,78,2,3,2,2,62,0,4,5,5,0,72,1,9,4,4,66,436,24,1316,73,48,3,0,0,72,76,76,89,86,16,15,5,5,86,66,65,15,0,36852
Sacred Heart University,7781,5932,865,0,0,0,0,0,0,0,0,0,0,6890,4530,2360,4500,3802,698,1274,1274,0,2390,728,1662,8,76,15,31440,32724,34030,35050,53569,53569,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),6983,4542,2441,4489,2494,3773,716,0,2,4,6,0,68,1,17,2,2,68,0,2,3,6,0,66,0,21,1,2,64,0,2,6,5,0,71,1,11,3,2,74,353,28,898,71,15,1,1,0,63,69,70,95,94,17,16,12,16,94,68,67,12,0,20869
University of Saint Joseph,860,737,153,95,17,430,520,430,520,0,0,18,22,2640,1220,1420,1049,794,255,153,153,0,1591,426,1165,0,86,21,28530,30310,31826,33417,49923,49923,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),2640,1220,1420,1049,1591,794,255,0,5,8,7,0,55,1,24,1,5,90,0,3,12,12,0,53,2,18,0,3,98,0,6,5,4,0,55,1,28,1,6,84,137,90,14,9,2,1,0,0,37,50,52,100,99,39,38,38,55,98,90,90,13,0,11878
Southern Connecticut State University,4870,3673,1380,97,8,410,510,410,510,420,530,17,22,10804,7892,2912,8257,7016,1241,1380,1361,19,2547,876,1671,0,75,38,8050,8248,8570,9020,22945,34411,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (larger programs),10804,7892,2912,8257,2547,7016,1241,0,2,14,10,0,64,2,7,0,2,64,0,2,15,11,0,60,2,7,0,2,61,0,2,9,6,0,74,1,7,1,2,75,1277,93,95,7,4,0,4,0,18,42,49,81,57,33,33,3,11,24,69,68,5,1343,0
Trinity College,7652,2432,604,48,30,570,680,580,670,590,673,25,29,2387,2199,188,2299,2194,105,604,604,0,88,5,83,0,32,25,42420,44070,45730,47510,62310,62310,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,2390,2188,202,2301,89,2184,117,0,4,6,7,0,65,3,6,8,4,49,0,4,6,7,0,64,3,6,8,4,49,0,3,3,9,0,78,1,1,4,3,54,83,14,453,75,66,11,2,0,81,85,86,41,38,10,10,9,6,38,32,27,7,0,206497
Wesleyan University,10046,2102,752,80,41,640,740,660,740,650,750,29,33,3205,3093,112,2907,2901,6,742,742,0,298,192,106,0,21,36,42384,43974,45928,47244,62849,62849,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,3205,3091,114,2906,299,2899,7,0,8,7,9,0,53,5,8,10,8,52,0,8,7,10,0,53,6,8,9,8,52,1,4,3,3,0,52,1,9,28,4,54,50,7,597,81,94,13,0,0,86,91,92,51,45,18,18,15,3,44,35,33,4,0,208049
Western Connecticut State University,3613,2366,797,0,0,0,0,0,0,0,0,0,0,6025,4465,1560,5492,4394,1098,797,784,13,533,71,462,23,65,34,7909,8104,8440,8893,23426,34931,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (medium programs),6025,4465,1560,5492,533,4394,1098,0,3,10,14,0,69,1,2,0,3,54,0,3,11,14,0,68,1,2,0,3,53,0,3,4,7,0,81,1,3,0,3,65,735,92,62,8,0,0,0,0,21,40,45,81,58,30,30,2,47,3,77,69,8,0,0
Yale University,28977,2043,1356,84,35,700,800,710,790,710,800,32,35,11960,11800,160,5310,5300,10,1300,1300,0,6650,6500,150,0,7,66,38300,40500,42300,44000,61620,61620,Connecticut,Connecticut,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Research Universities (very high research activity),12109,11927,182,5430,6679,5424,6,0,13,5,7,0,48,4,3,18,13,49,1,16,7,10,0,47,6,2,11,16,49,0,10,4,5,0,49,3,3,25,10,49,82,6,1113,82,162,12,1,0,90,96,98,61,51,13,13,7,1,50,6,6,0,0,1528324
Delaware State University,8884,3703,1036,95,12,410,480,410,490,390,470,16,19,4338,3926,412,3894,3579,315,922,907,15,444,347,97,0,42,28,6731,7056,7336,7336,21581,29937,Delaware,Delaware,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Small,Master's Colleges and Universities (medium programs),4336,3926,410,3892,444,3579,313,0,1,69,5,0,12,4,2,6,1,63,0,1,72,5,0,11,4,2,5,1,62,0,4,47,5,0,23,2,2,18,4,65,351,38,558,61,10,1,3,0,18,33,37,97,90,58,58,4,40,56,81,80,7,4724,0
University of Delaware,25458,16467,4224,99,27,520,630,540,650,520,630,24,29,22166,19685,2481,18487,16852,1635,4224,4210,14,3679,2833,846,256,65,26,10208,11192,11682,12112,25612,43432,Delaware,Delaware,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (very high research activity),22166,19685,2481,18487,3679,16852,1635,0,5,5,6,0,71,2,1,9,5,56,0,4,5,7,0,75,3,1,4,5,57,0,5,4,3,0,53,1,1,33,5,50,1746,41,2421,57,0,0,57,1,68,79,82,82,70,14,14,3,22,51,53,53,8,0,55964
Wesley College,2933,1833,556,89,9,360,470,360,475,360,455,16,23,1679,1448,231,1622,1403,219,694,694,0,57,45,12,30,62,30,20580,21565,22392,23590,38230,38230,Delaware,Delaware,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,1655,1463,192,1600,55,1416,184,0,2,38,5,0,43,3,8,0,2,53,0,1,39,5,0,43,3,8,0,2,52,0,11,18,0,0,55,4,7,5,11,71,0,0,0,0,0,0,0,0,11,20,22,97,96,50,50,30,7,93,78,78,15,0,4470
Wilmington University,0,0,0,0,0,0,0,0,0,0,0,0,0,13886,5156,8730,8797,3898,4899,1071,464,607,5089,1258,3831,57,0,0,9290,9470,9710,9950,0,0,Delaware,Delaware,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,13621,4698,8923,8611,5010,3509,5102,1,2,23,3,0,48,0,18,5,2,66,1,2,23,3,0,48,0,20,3,2,65,1,2,24,2,0,49,0,14,7,2,68,0,0,0,0,0,0,0,0,31,36,38,87,73,45,45,3,25,14,71,67,12,0,4066
American University,17545,7566,1627,67,35,590,690,570,660,580,680,26,30,12820,10235,2585,7342,6987,355,1627,1624,3,5478,3248,2230,0,43,22,36697,38071,39499,40649,56808,56808,District of Columbia,District of Columbia,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,12818,10233,2585,7340,5478,6985,355,0,6,7,9,0,49,3,15,10,6,61,0,6,6,10,0,55,5,9,8,6,61,0,5,9,8,0,41,1,22,12,6,61,0,0,0,0,0,0,0,0,76,79,80,80,72,19,19,2,6,71,56,56,7,0,45966
Catholic University of America,6298,3783,837,88,29,500,610,510,610,0,0,22,27,6725,4756,1969,3713,3456,257,837,836,1,3012,1300,1712,13,60,22,33780,35460,36820,38526,56842,56842,District of Columbia,District of Columbia,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (high research activity),6725,4756,1969,3713,3012,3456,257,0,3,8,8,0,56,3,14,8,3,53,0,3,6,10,0,62,3,11,5,3,54,0,4,10,6,0,48,3,17,12,4,51,0,0,0,0,0,0,0,0,62,68,69,95,93,11,11,10,5,93,63,62,11,0,45507
University of the District of Columbia,0,0,0,0,0,0,0,0,0,0,0,0,0,5011,2199,2812,4712,1986,2726,562,241,321,299,213,86,300,0,0,5010,5010,5138,5138,0,0,District of Columbia,District of Columbia,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Large,Master's Colleges and Universities (smaller programs),5011,2199,2812,4712,299,1986,2726,0,2,60,7,0,6,1,21,3,2,63,0,2,61,8,0,5,1,21,3,2,63,0,4,47,5,0,20,4,15,5,4,57,0,0,0,0,0,0,0,0,6,11,16,86,76,71,70,24,9,6,56,55,0,9456,0
Gallaudet University,520,341,201,12,95,348,435,345,495,0,0,15,20,1561,1367,194,1077,1006,71,201,200,1,484,361,123,0,66,59,11226,11986,12806,13800,31988,31988,District of Columbia,District of Columbia,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (smaller programs),1561,1367,194,1077,484,1006,71,0,3,10,12,0,60,2,4,7,4,60,0,4,11,14,0,60,3,0,7,4,54,0,2,9,7,0,60,2,13,7,3,75,5,2,185,92,11,5,0,0,16,42,48,88,87,48,48,31,63,75,40,40,1,0,121176
George Washington University,21756,7197,2387,75,37,600,690,600,700,610,700,27,31,25264,17109,8155,10357,9609,748,2356,2348,8,14907,7500,7407,192,33,33,42905,44148,45780,47343,61446,61446,District of Columbia,District of Columbia,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (very high research activity),25264,17109,8155,10357,14907,9609,748,0,8,9,6,0,54,2,6,14,9,56,0,9,7,7,0,60,3,4,9,9,55,0,8,10,5,0,50,1,8,17,8,56,16,1,2054,87,229,10,57,2,76,80,81,68,65,14,12,13,3,65,41,40,2,0,63277
Georgetown University,20115,3413,1570,87,35,650,750,660,750,0,0,29,33,17849,14574,3275,7636,7300,336,1597,1596,1,10213,7274,2939,0,17,46,40203,41393,42870,44805,62179,62179,District of Columbia,District of Columbia,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (very high research activity),17849,14407,3442,7636,10213,7300,336,0,8,6,6,0,53,3,8,15,8,54,0,9,6,8,0,57,4,4,13,9,55,0,7,6,5,0,50,2,12,17,7,53,20,1,1418,89,156,10,0,0,88,91,92,53,42,14,14,5,1,41,26,25,3,0,83669
Howard University,11687,5762,1394,76,48,490,590,480,590,480,580,21,26,10297,9123,1174,6974,6495,479,1594,1576,18,3323,2628,695,0,49,24,18120,20171,22683,22683,41643,41643,District of Columbia,District of Columbia,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Large,Research Universities (high research activity),10297,9123,1174,6974,3323,6495,479,2,3,86,1,0,3,0,0,5,4,65,2,1,91,0,0,1,0,0,3,2,67,1,7,75,2,0,6,0,0,9,7,61,27,2,1495,94,72,5,0,0,40,56,61,93,76,47,47,4,2,63,66,66,6,0,55408
Trinity Washington University,1493,781,276,0,0,0,0,0,0,0,0,0,0,2506,1301,1205,1853,1199,654,276,266,10,653,102,551,9,52,35,20575,20975,21125,21630,34470,34470,District of Columbia,District of Columbia,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),2506,1301,1205,1853,653,1199,654,0,1,70,11,0,4,1,11,1,1,92,0,1,71,14,0,2,1,10,1,1,95,0,1,67,5,0,11,1,13,2,1,83,0,0,0,0,0,0,0,0,15,31,34,99,99,84,84,15,44,99,80,80,1,0,12127
Barry University,7845,3670,576,77,40,420,520,420,520,410,490,17,21,9009,5939,3070,4325,3672,653,570,568,2,4684,2267,2417,0,47,16,27200,28160,28160,28160,45100,45100,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,9030,5887,3143,4341,4689,3619,722,0,2,27,25,0,24,1,14,6,3,66,0,1,32,29,0,20,1,8,8,1,62,0,3,22,22,0,28,1,20,4,4,70,257,46,253,45,47,8,7,1,22,35,37,97,96,66,63,39,42,96,76,76,7,0,3670
Bethune-Cookman University,7429,4948,1022,49,64,370,460,360,450,0,0,15,18,3786,3670,116,3724,3611,113,1022,1016,6,62,59,3,0,67,21,13452,13990,14410,14410,27058,27058,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Small,Baccalaureate Colleges--Diverse Fields,3787,3671,116,3724,63,3611,113,0,0,89,3,0,2,2,2,2,1,59,0,0,89,3,0,2,2,1,2,0,59,2,2,65,3,3,6,0,16,3,5,49,729,71,284,28,8,1,2,0,23,43,49,99,96,81,80,79,63,79,95,95,3,0,12507
Lynn University,2697,2093,456,70,32,410,520,410,530,410,510,18,22,2117,1737,380,1619,1506,113,456,447,9,498,231,267,0,78,22,30900,31700,32600,33600,49535,49535,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Doctoral/Research Universities,2297,1945,352,1785,512,1634,151,1,1,9,10,0,34,0,21,24,1,49,1,2,10,12,0,38,0,14,23,2,47,0,0,7,5,0,20,0,44,25,0,55,117,26,212,46,112,25,15,3,33,39,41,79,79,19,19,12,21,77,31,31,12,0,10304
Carlos Albizu University-Miami,58,21,16,0,0,0,0,0,0,0,0,0,0,961,570,391,262,138,124,16,9,7,699,432,267,0,36,76,12048,12048,12048,12048,0,0,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),991,591,400,294,697,175,119,0,2,6,78,0,8,0,1,4,2,80,0,1,2,81,0,2,0,4,10,1,74,0,2,8,76,0,11,0,0,2,2,82,0,0,0,0,0,0,0,0,13,17,17,100,100,100,100,50,100,0,100,100,0,0,0
University of Central Florida,31820,15572,6068,64,36,540,630,550,640,510,610,23,28,59740,40376,19364,51269,36160,15109,6068,5817,251,8471,4216,4255,439,49,39,5021,5584,6247,6317,20839,36938,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (very high research activity),59589,39966,19623,51333,8256,36229,15104,0,5,10,20,0,57,3,2,2,6,55,0,6,11,22,0,57,3,1,1,6,55,0,5,9,12,0,55,2,8,10,5,57,5461,90,347,6,211,3,28,0,36,61,67,96,93,31,31,6,89,45,41,40,2,2587,0
Clearwater Christian College,468,328,126,52,67,460,580,450,550,0,0,19,25,519,494,25,509,489,20,127,126,1,10,5,5,0,70,38,15440,16315,16715,17125,30125,30125,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,505,479,26,495,10,475,20,0,2,4,12,0,79,2,0,1,2,48,0,2,4,12,0,79,1,0,1,2,48,0,10,0,0,0,60,10,20,0,10,50,73,58,53,42,0,0,0,0,44,53,53,100,100,51,51,30,42,99,62,61,5,0,1742
Eckerd College,3912,2779,534,71,49,510,620,500,610,0,0,23,28,2190,1975,215,2190,1975,215,457,452,5,0,0,0,0,71,19,33228,34546,35926,37362,51796,51796,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,2173,1947,226,2173,0,1947,226,1,1,6,8,0,76,3,1,4,2,61,1,1,6,8,0,76,3,1,4,2,61,0,0,0,0,0,0,0,0,0,0,0,70,15,355,78,27,6,3,1,59,65,66,97,96,19,19,14,21,95,81,81,6,0,20145
Edward Waters College,1907,521,208,24,69,350,440,360,440,340,430,15,18,862,847,15,862,847,15,208,207,1,0,0,0,0,27,40,10470,10994,11358,11525,23833,23833,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Large,Baccalaureate Colleges--Diverse Fields,862,845,17,862,0,845,17,0,0,92,2,0,3,2,1,0,0,47,0,0,92,2,0,3,2,1,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,19,20,97,96,82,82,20,70,66,70,70,0,0,1851
Embry-Riddle Aeronautical University-Daytona Beach,4074,3017,944,76,49,470,590,510,640,460,580,21,27,5279,4831,448,4679,4359,320,944,941,3,600,472,128,26,74,31,29728,29852,30720,31334,46614,46614,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (medium programs),5279,4831,448,4679,600,4359,320,0,5,6,7,0,51,4,8,19,5,18,0,5,6,7,0,53,4,8,16,5,17,0,4,4,5,0,35,3,7,42,4,27,244,26,596,63,0,0,104,11,34,53,56,92,90,30,30,4,24,88,68,67,18,0,10039
Florida Agricultural and Mechanical University,5029,2263,1145,27,73,430,520,420,510,410,490,18,22,10743,9581,1162,8930,8024,906,1277,1257,20,1813,1557,256,102,45,51,4635,5187,5785,5785,19545,31485,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Midsize,Doctoral/Research Universities,10743,9597,1146,8930,1813,8040,890,0,1,91,2,0,5,0,0,1,1,62,0,1,94,1,0,3,0,0,1,1,61,1,3,75,6,0,12,0,0,3,3,63,1071,84,175,14,27,2,4,0,12,29,41,95,86,68,68,18,48,54,72,72,2,6827,0
Florida Atlantic University,24889,11880,3479,62,38,480,560,480,570,470,560,20,24,30611,17529,13082,25523,15840,9683,3487,3324,163,5088,1689,3399,297,48,29,3835,4264,4789,4790,21583,34027,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),30759,17779,12980,25790,4969,15891,9899,0,4,18,23,0,48,3,1,2,4,57,0,4,18,25,0,47,3,1,2,4,56,0,4,16,16,0,56,2,1,6,4,62,3024,87,249,7,180,5,5,0,15,33,41,87,81,39,39,1,66,37,42,42,3,7678,0
Flagler College-St Augustine,5396,2691,708,72,51,540,580,530,580,520,570,21,25,2839,2755,84,2839,2755,84,708,708,0,0,0,0,0,50,26,13860,14510,15340,16180,29560,29560,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Small,Baccalaureate Colleges--Diverse Fields,2839,2746,93,2839,0,2746,93,0,1,4,8,0,76,3,5,3,1,59,0,1,4,8,0,76,3,5,3,1,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,63,85,81,32,31,9,54,64,69,63,7,0,21644
Florida College,383,225,196,47,69,470,590,460,570,0,0,20,26,558,533,25,558,533,25,196,194,2,0,0,0,110,59,87,12350,13180,13820,14490,26750,26750,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate/Associate's Colleges,558,533,25,558,0,533,25,2,1,6,6,0,80,5,0,1,1,50,2,1,6,6,0,80,5,0,1,1,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,94,85,35,35,7,21,79,67,65,3,0,20266
Florida Institute of Technology,7820,4727,783,53,38,500,610,530,650,0,0,23,28,5597,4133,1464,3224,3063,161,783,781,2,2373,1070,1303,0,60,17,32294,34990,36020,36020,52690,52690,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Doctoral/Research Universities,5644,4138,1506,3257,2387,3068,189,0,2,9,5,0,41,2,10,30,2,33,0,2,5,6,0,42,2,12,31,2,27,1,3,14,4,0,39,2,9,29,3,41,0,0,0,0,0,0,0,0,39,52,54,95,95,22,21,20,34,95,57,51,6,0,11992
Florida International University,16549,7122,2990,70,30,540,620,530,610,520,600,24,27,46545,31539,15006,38225,25653,12572,4529,4307,222,8320,5886,2434,89,43,42,5102,5678,6417,6496,22968,35367,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (high research activity),47663,31932,15731,39142,8521,25954,13188,0,3,12,62,0,12,2,1,7,3,56,0,3,12,67,0,10,2,1,5,3,55,0,4,12,42,0,21,1,2,18,4,57,3689,82,197,4,611,14,27,1,20,41,52,91,87,53,53,12,70,49,45,45,1,5533,0
Florida Memorial University,4960,2063,432,0,0,0,0,0,0,0,0,0,0,1611,1453,158,1568,1437,131,432,416,16,43,16,27,0,42,21,14024,14604,15000,14776,26588,26588,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,Suburb: Large,Master's Colleges and Universities (smaller programs),1560,1430,130,1517,43,1414,103,0,0,74,5,0,0,1,10,10,0,61,0,0,74,4,0,0,1,10,10,0,61,0,0,67,21,0,0,0,5,7,0,60,0,0,0,0,0,0,0,0,23,35,37,90,75,71,70,8,68,15,78,77,2,0,5871
Florida Southern College,4963,2476,635,82,60,490,590,500,590,480,580,22,27,2619,2283,336,2416,2126,290,635,633,2,203,157,46,0,50,26,24662,26112,27200,28580,40700,40700,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,2619,2283,336,2416,203,2126,290,0,2,6,9,0,72,4,1,5,2,61,0,2,6,9,0,72,4,1,5,2,61,0,5,14,6,0,65,1,3,5,5,67,356,56,251,40,27,4,1,0,47,57,58,99,99,33,33,17,59,97,77,77,6,0,32743
Florida State University,29579,16803,6048,44,56,560,640,550,640,560,640,25,29,40909,34882,6027,32528,28910,3618,6032,5980,52,8381,5972,2409,133,57,36,5238,5826,6402,6507,21543,36709,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),40909,34882,6027,32528,8381,28910,3618,0,3,9,15,0,65,2,2,4,3,55,0,3,9,17,0,66,2,1,1,3,55,0,3,9,8,0,62,1,3,15,3,55,5371,89,529,9,115,2,17,0,57,74,77,95,93,27,27,6,87,38,38,37,2,13906,0
University of Florida,27107,12618,6373,63,37,580,670,590,690,570,680,26,31,49878,42490,7388,33168,30314,2854,6370,6348,22,16710,12176,4534,840,47,51,5044,5657,6143,6263,19103,41381,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),49878,42490,7388,33168,16710,30314,2854,0,7,7,16,1,56,2,3,9,7,54,0,7,7,19,1,58,3,3,2,8,55,0,6,5,9,0,51,1,4,23,6,52,5659,89,432,7,264,4,15,0,65,83,87,96,95,29,29,11,91,32,30,30,1,28599,0
Jacksonville University,3498,1657,528,60,41,450,550,460,560,0,0,19,24,4083,2382,1701,3361,2195,1166,539,532,7,722,187,535,0,47,32,26600,27900,29100,29900,44670,44670,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),4157,2388,1769,3425,732,2201,1224,1,3,15,7,0,48,0,22,3,3,64,1,3,16,7,0,49,0,20,3,4,62,1,2,11,4,0,45,0,30,6,3,72,0,0,0,0,0,0,0,0,24,37,38,99,99,37,37,11,54,98,60,59,4,0,11979
Jones College-Jacksonville,0,0,0,0,0,0,0,0,0,0,0,0,0,450,65,385,450,65,385,17,4,13,0,0,0,67,0,0,7410,7410,7410,7410,0,0,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,449,64,385,449,0,64,385,0,0,72,4,0,18,3,2,0,0,81,0,0,72,4,0,18,3,2,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,50,50,50,50,50,50,50,50,50,0,0,0
Keiser University-Ft Lauderdale,4620,4311,3658,0,0,0,0,0,0,0,0,0,0,16900,11500,5400,15700,11300,4400,3600,2700,900,1200,200,1000,3840,93,85,14176,15064,15664,16284,0,0,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate/Associate's Colleges,17129,12264,4865,16039,1090,12007,4032,0,2,21,30,0,40,4,3,0,2,68,0,2,20,31,0,41,4,3,0,2,68,0,8,36,21,0,26,4,3,2,9,66,0,0,0,0,0,0,0,0,59,67,68,92,90,73,73,46,36,67,80,79,15,0,0
Trinity International University-Florida,0,0,0,0,0,0,0,0,0,0,0,0,0,352,130,222,268,106,162,0,0,0,84,24,60,0,0,0,0,0,0,0,0,0,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,347,113,234,258,89,106,152,0,1,37,44,0,15,0,3,0,1,67,0,1,35,47,0,14,0,2,0,1,68,0,1,42,34,0,18,0,6,0,1,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1158
University of Miami,28907,11691,2140,49,41,600,700,630,720,590,690,28,32,16935,15614,1321,11380,10637,743,2140,2114,26,5555,4977,578,0,40,18,37836,39654,41220,42852,60906,60906,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Research Universities (very high research activity),16935,15597,1338,11380,5555,10637,743,0,5,7,21,0,42,2,6,15,6,51,0,5,7,21,0,43,3,6,14,5,51,0,6,6,19,0,42,2,7,18,6,51,643,30,1171,54,291,14,46,2,71,81,82,75,74,18,18,14,37,70,38,37,3,0,48576
Remington College-Tampa Campus,67,54,41,0,0,0,0,0,0,0,0,0,0,190,190,0,190,190,0,41,41,0,0,0,0,16,81,76,14745,15478,14695,15995,0,0,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate/Associate's Colleges,189,189,0,189,0,189,0,0,1,29,31,1,34,3,0,0,2,64,0,1,29,31,1,34,3,0,0,2,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,44,44,95,93,90,90,69,7,5,93,93,33,0,0
University of North Florida,10635,5682,1615,52,48,540,620,540,610,500,590,23,26,16083,10829,5254,14263,10088,4175,1609,1573,36,1820,741,1079,318,53,28,4909,5627,6235,6353,20575,34978,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),16083,10829,5254,14263,1820,10088,4175,0,4,10,9,0,70,4,0,2,4,56,0,4,10,9,0,70,5,0,2,4,55,0,3,11,7,0,71,2,1,5,3,62,1493,93,65,4,46,3,5,0,21,43,50,94,91,31,31,5,85,50,45,45,2,6018,0
Nova Southeastern University,4328,2487,673,73,50,470,590,480,600,0,0,21,27,26808,13699,13109,5739,3592,2147,673,619,54,21069,10107,10962,1,57,27,22150,23214,24414,25430,43580,43580,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Research Universities (high research activity),25670,13390,12280,5156,20514,3452,1704,0,6,24,24,0,34,2,7,4,6,69,0,6,21,32,0,31,2,3,5,7,71,0,5,24,22,0,35,2,8,3,6,69,0,0,0,0,0,0,0,0,25,37,41,98,97,42,42,19,60,90,54,53,8,0,2645
Palm Beach Atlantic University,1618,1361,587,75,64,470,590,455,590,0,0,20,26,3764,2989,775,2887,2358,529,578,578,0,877,631,246,0,84,43,23400,24100,24800,25532,39302,39302,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (medium programs),3764,2989,775,2887,877,2358,529,0,3,14,13,0,59,2,4,4,3,64,0,1,13,13,0,63,2,4,3,2,63,0,7,20,16,0,46,3,4,4,7,67,337,58,222,38,19,3,0,0,40,46,48,100,100,35,35,12,52,100,62,62,8,0,23183
Rollins College,4729,2785,477,68,53,550,640,550,650,540,650,24,29,3140,2589,551,2608,2366,242,477,477,0,532,223,309,0,59,17,37640,38400,39900,41460,59438,59438,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),3153,2589,564,2608,545,2366,242,0,3,6,15,0,64,3,2,6,3,59,0,3,6,16,0,63,3,3,6,3,60,0,5,6,10,0,72,1,1,5,5,57,207,43,225,47,2,0,43,9,61,67,67,86,85,17,17,7,26,81,43,42,5,0,113393
Saint Leo University,3178,2435,645,0,0,0,0,0,0,0,0,0,0,16275,12206,4069,12657,8678,3979,639,639,0,3618,3528,90,962,77,26,18150,18870,19370,19920,33200,33200,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Small,Master's Colleges and Universities (larger programs),16275,12228,4047,12640,3635,8663,3977,0,1,33,10,0,39,1,13,2,1,58,1,1,35,10,0,39,1,10,2,1,58,0,1,28,7,0,38,1,23,1,1,61,0,0,0,0,0,0,0,0,31,44,46,94,94,47,47,24,60,93,68,68,6,0,2998
St Petersburg College,0,0,0,0,0,0,0,0,0,0,0,0,0,31820,9118,22702,31820,9118,22702,4586,2032,2554,0,0,0,3966,0,0,2822,2988,3172,3232,0,0,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Baccalaureate/Associate's Colleges,31820,9118,22702,31820,0,9118,22702,0,3,14,10,0,66,2,3,1,4,60,0,3,14,10,0,66,2,3,1,4,60,0,0,0,0,0,0,0,0,0,0,0,4138,98,32,1,0,0,32,1,0,0,0,81,75,58,58,5,31,21,32,32,0,1241,0
University of South Florida-Main Campus,28512,12900,3904,56,44,530,620,550,640,510,610,23,28,42551,29963,12588,32202,24700,7502,3904,3860,44,10349,5263,5086,153,45,30,5198,5800,6334,6410,20760,31674,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),41428,29437,11991,31100,10328,23734,7366,0,6,10,17,0,55,3,2,6,6,57,0,6,11,19,0,55,3,2,4,6,55,0,6,9,11,0,55,2,3,14,6,60,3190,85,253,7,262,7,31,1,36,57,63,98,96,42,42,8,86,70,45,44,1,9188,0
St Thomas University,727,332,210,56,42,410,510,408,500,400,490,16,21,2283,1811,472,1033,969,64,197,196,1,1250,842,408,0,46,63,22770,23910,25110,26370,41649,41649,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),2315,1817,498,1035,1280,963,72,0,1,23,43,0,15,1,3,14,1,56,0,0,24,43,0,8,1,5,19,0,55,0,1,23,43,0,20,1,2,10,1,57,0,0,0,0,0,0,0,0,28,36,38,100,100,60,60,16,68,98,61,61,1,0,6553
Stetson University,10509,6227,852,50,36,540,640,530,630,510,610,23,28,4044,3828,216,2729,2692,37,852,852,0,1315,1136,179,0,59,14,33424,35078,36644,38330,53712,53712,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Master's Colleges and Universities (larger programs),4044,3828,216,2729,1315,2692,37,0,2,7,13,0,67,4,2,4,2,56,0,2,8,14,0,65,4,1,5,2,57,0,2,4,12,0,72,2,4,3,2,54,0,0,0,0,0,0,0,0,56,63,64,100,100,35,34,20,66,100,70,69,7,0,41755
Southeastern University,2124,1260,865,59,49,430,550,410,530,420,530,17,23,3434,2634,800,3083,2473,610,865,842,23,351,161,190,0,59,69,16430,17718,18596,19986,32234,32234,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,3434,2634,800,3083,351,2473,610,0,1,13,15,0,62,1,6,1,2,56,0,1,13,16,0,61,1,6,1,2,55,0,1,11,12,0,72,1,1,1,1,64,0,0,0,0,0,0,0,0,24,35,38,97,96,46,46,5,56,93,72,72,5,0,2830
The University of Tampa,15345,8011,1592,75,47,480,570,500,580,480,560,21,26,7260,6450,810,6499,6188,311,1592,1590,2,761,262,499,2,52,20,23218,23976,25222,25772,39375,39375,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),7260,6450,810,6499,761,6188,311,0,2,6,12,0,58,2,9,11,2,55,0,1,6,12,0,59,2,9,10,1,55,0,3,4,11,0,48,1,11,20,3,52,366,23,1091,69,135,8,0,0,51,60,61,95,93,21,21,9,22,92,73,73,6,0,4130
Warner University,1264,427,179,39,53,410,490,410,500,0,0,17,21,1155,981,174,1036,892,144,179,173,6,119,89,30,49,34,42,15980,16660,17480,18430,29879,29879,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Master's Colleges and Universities (smaller programs),1162,975,187,1043,119,888,155,0,1,40,12,0,43,1,1,2,1,54,0,1,40,12,0,43,1,1,2,1,52,0,0,39,7,0,46,1,3,4,0,68,164,92,10,6,3,2,2,1,26,40,40,99,98,73,72,14,88,86,87,87,2,0,4235
Webber International University,944,602,207,63,64,330,530,342,547,0,0,17,24,715,671,44,667,633,34,207,207,0,48,38,10,3,64,34,18742,19670,20418,21050,37173,37173,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,715,671,44,667,48,633,34,0,3,21,15,0,50,3,2,8,3,33,0,2,22,15,0,48,3,2,8,2,31,0,13,10,2,0,75,0,0,0,13,56,0,0,0,0,0,0,0,0,2,31,33,100,99,49,49,10,74,95,75,75,3,0,6633
The University of West Florida,12347,5937,1333,59,78,460,570,460,560,440,540,21,26,12588,8183,4405,10158,7581,2577,1333,1316,17,2430,602,1828,141,48,22,4154,4701,6238,6357,19737,32618,Florida,Florida,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Doctoral/Research Universities,12588,8183,4405,10158,2430,7581,2577,1,3,12,8,0,68,4,1,3,3,59,1,3,13,9,0,67,4,1,2,3,57,1,3,12,6,0,73,2,0,3,4,64,1175,88,101,8,42,3,15,1,20,36,42,91,83,49,45,9,61,40,54,53,3,4664,0
Agnes Scott College,1340,896,254,0,0,0,0,0,0,0,0,0,0,915,897,18,915,897,18,254,254,0,0,0,0,0,67,28,31283,32195,33461,34788,47323,47323,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,915,897,18,915,0,897,18,0,4,33,9,0,31,6,4,12,4,99,0,4,33,9,0,31,6,4,12,4,99,0,0,0,0,0,0,0,0,0,0,0,121,48,92,37,39,15,0,0,66,70,72,100,100,54,54,4,51,100,76,76,17,0,281391
Albany State University,8250,1643,501,70,56,420,480,400,470,0,0,17,20,4262,3244,1018,3662,3022,640,536,516,20,600,222,378,0,20,30,4592,5802,5912,6024,19590,31792,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Small,Master's Colleges and Universities (medium programs),4260,3241,1019,3660,600,3019,641,0,0,89,1,0,7,0,3,0,0,68,0,0,90,1,0,5,0,3,0,0,66,0,0,79,0,0,17,0,2,2,0,79,503,97,17,3,0,0,0,0,16,35,42,99,91,82,81,12,32,16,93,93,15,485,0
Armstrong Atlantic State University,3118,2182,1128,80,36,460,550,450,540,0,0,19,23,7112,5015,2097,6387,4712,1675,929,846,83,725,303,422,64,70,52,4510,4854,4942,5085,21373,31135,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (larger programs),7101,4987,2114,6377,724,4684,1693,0,3,24,6,0,61,4,0,2,3,68,0,4,24,7,0,60,4,0,2,4,67,0,1,22,2,0,71,1,1,1,1,78,910,95,37,4,11,1,0,0,10,26,34,91,76,46,46,5,56,3,61,61,5,1417,0
Point University,934,500,238,63,63,420,535,420,510,0,0,18,22,1439,1292,147,1439,1292,147,238,237,1,0,0,0,161,54,48,15880,16226,17400,17400,27400,27400,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1439,1291,148,1439,0,1291,148,0,0,39,3,0,39,3,14,0,1,56,0,0,39,3,0,39,3,14,0,1,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,47,48,95,89,56,56,11,64,78,89,89,6,0,2402
Clark Atlanta University,5873,3336,781,60,50,390,470,380,470,0,0,17,21,3458,3044,414,2629,2514,115,781,767,14,829,530,299,0,57,23,17954,18912,19830,21100,35471,35471,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Large,Doctoral/Research Universities,3458,3044,414,2629,829,2514,115,0,0,87,1,0,0,0,9,2,0,75,0,0,87,1,0,0,0,10,1,0,75,0,1,86,0,0,1,0,6,6,1,73,215,28,563,72,0,0,3,0,21,35,39,98,83,69,69,13,18,44,89,88,13,0,18051
Berry College,3901,2353,672,47,53,530,640,530,630,520,610,24,29,2223,2122,101,2141,2107,34,672,672,0,82,15,67,0,60,29,24620,26090,27650,29090,43834,43834,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Small,Baccalaureate Colleges--Arts & Sciences,2223,2122,101,2141,82,2107,34,0,1,4,6,0,84,3,2,1,1,63,0,1,4,6,0,84,3,1,1,1,62,0,0,7,1,0,85,1,4,1,0,73,448,67,223,33,1,0,0,0,50,58,60,100,100,31,31,10,71,100,61,61,12,0,409661
Brenau University,2160,1691,206,84,44,440,550,430,500,0,0,19,21,2854,1528,1326,1700,1074,626,206,202,4,1154,454,700,9,78,12,20130,21124,22168,23350,38528,38528,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),2854,1528,1326,1700,1154,1074,626,0,2,32,6,0,51,2,3,3,3,85,0,2,31,6,0,51,3,4,3,2,89,0,3,34,5,0,50,2,2,3,4,79,0,0,0,0,0,0,0,0,30,40,45,97,97,57,57,20,85,96,80,80,11,0,13894
Brewton-Parker College,475,244,150,75,51,400,490,410,500,370,480,17,20,700,500,200,700,500,200,152,150,2,0,0,0,9,51,61,17130,13790,12670,13560,24786,24786,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate Colleges--Diverse Fields,693,503,190,693,0,503,190,0,1,24,3,0,53,1,16,2,1,46,0,1,24,3,0,53,1,16,2,1,46,0,0,0,0,0,0,0,0,0,0,0,120,81,27,18,1,1,0,0,10,13,15,100,100,57,57,55,99,93,81,81,4,0,27945
Clayton State University,2046,976,545,71,44,440,520,420,510,420,500,18,21,7261,4071,3190,6894,3918,2976,565,477,88,367,153,214,43,48,56,4566,4926,5014,5153,18830,28592,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,7261,4092,3169,6893,368,3939,2954,0,5,62,1,0,23,3,4,1,5,70,0,5,62,1,0,23,3,4,1,5,70,0,4,57,1,0,26,3,0,9,4,65,552,96,10,2,16,3,0,0,9,22,29,94,82,70,70,1,38,8,76,76,3,686,0
Columbus State University,3170,1757,1045,69,44,440,550,430,540,420,530,19,23,8160,5381,2779,7014,4977,2037,1056,969,87,1146,404,742,41,55,59,4996,5457,5357,5514,19620,29662,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (larger programs),8156,5382,2774,7013,1143,4979,2034,0,2,35,5,0,53,3,0,1,2,59,1,2,36,5,0,52,3,0,1,2,59,0,2,30,3,0,59,2,0,4,2,56,947,85,153,14,17,2,0,0,12,24,31,93,82,52,52,1,51,13,65,64,4,6514,0
Covenant College,1129,644,268,72,58,530,670,530,630,530,650,23,28,1173,1102,71,1104,1050,54,295,295,0,69,52,17,0,57,42,26226,27220,28270,29100,40330,40330,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1173,1102,71,1104,69,1050,54,1,2,3,2,0,89,1,0,2,2,57,1,2,3,2,0,89,2,0,2,2,56,0,0,0,1,0,93,0,0,6,0,75,0,0,0,0,0,0,0,0,48,57,58,100,98,32,32,9,26,96,62,62,3,0,24117
Dalton State College,0,0,0,0,0,0,0,0,0,0,0,0,0,5015,3048,1967,5015,3048,1967,1321,994,327,0,0,0,338,0,0,2522,3622,3732,3910,13970,21828,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Baccalaureate/Associate's Colleges,5015,3044,1971,5015,0,3044,1971,0,1,5,18,0,67,1,5,2,1,61,0,1,5,18,0,67,1,5,2,1,61,0,0,0,0,0,0,0,0,0,0,0,883,92,15,2,67,7,0,0,8,17,21,93,88,65,65,2,64,2,26,26,0,2488,0
Emmanuel College,876,419,156,93,11,410,510,420,530,0,0,0,0,806,702,104,806,702,104,156,153,3,0,0,0,46,48,37,13520,14550,15700,16800,26400,26400,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,806,702,104,806,0,702,104,0,1,17,4,0,71,2,0,4,1,51,0,1,17,4,0,71,2,0,4,1,51,0,0,0,0,0,0,0,0,0,0,0,107,64,55,33,5,3,0,0,31,41,45,100,100,51,51,2,67,94,70,70,1,0,4764
Emory University,17475,4602,1363,76,45,620,710,650,750,640,730,29,32,12660,11328,1332,5852,5754,98,1853,1853,0,6808,5574,1234,427,26,30,39158,41164,42980,44008,59908,59908,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Research Universities (very high research activity),14513,13181,1332,7836,6677,7676,160,0,16,10,6,0,45,2,6,15,16,56,0,22,9,6,0,40,3,4,16,22,57,0,9,11,5,0,51,1,8,15,9,56,336,18,1216,66,300,16,1,0,84,89,91,53,47,19,19,6,18,45,35,35,6,0,382343
Fort Valley State University,4076,1334,624,63,50,380,460,370,450,0,0,0,0,3144,2826,318,2833,2545,288,515,502,13,311,281,30,0,33,47,5562,6030,6180,6438,20725,32927,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,3180,2695,485,2858,322,2570,288,0,0,96,0,0,3,0,1,0,0,60,0,0,97,0,0,2,0,0,0,0,57,0,2,87,1,0,8,0,2,0,2,82,520,97,17,3,1,0,0,0,8,22,30,97,88,83,83,13,25,7,88,88,1,1782,0
Georgia Institute of Technology-Main Campus,14645,8045,3044,88,53,600,700,660,760,610,700,28,32,21474,18746,2728,14559,13292,1267,2672,2668,4,6915,5454,1461,0,55,38,8716,9652,10098,10650,23384,42688,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),21471,18743,2728,14558,6913,13291,1267,0,15,6,6,0,50,3,0,21,15,31,0,18,6,6,0,55,3,1,11,18,33,0,8,4,4,0,40,2,0,41,8,26,1424,53,894,33,324,12,31,1,41,76,82,72,67,14,14,1,50,28,31,30,6,77288,0
Georgia Southwestern State University,1245,847,376,68,31,440,520,420,520,0,0,18,22,2806,1946,860,2667,1870,797,376,351,25,139,76,63,0,68,44,4454,4786,4914,5035,19063,28825,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (smaller programs),2806,1946,860,2667,139,1870,797,0,1,29,3,0,61,1,0,3,2,64,0,1,29,3,0,62,1,0,2,1,64,0,4,18,1,0,59,1,0,17,4,71,341,91,7,2,28,7,0,0,15,30,36,91,82,50,50,18,60,27,60,59,4,4532,0
Georgia College and State University,4051,2754,1392,65,59,530,610,520,620,510,600,22,26,6577,5596,981,5749,5263,486,1392,1391,1,828,333,495,0,68,51,7852,8344,8618,8790,23752,41652,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (larger programs),6551,5600,951,5729,822,5264,465,0,1,7,5,0,82,2,0,2,1,61,0,1,5,5,0,85,2,0,1,1,60,0,1,23,2,0,67,1,0,4,1,66,1382,99,4,0,9,1,0,0,39,58,61,95,91,19,19,1,88,6,45,44,4,5101,0
Georgia Southern University,10525,5473,3604,75,52,520,590,510,600,490,570,21,25,20502,16768,3734,17891,15763,2128,3583,3546,37,2611,1005,1606,0,52,66,5340,5659,5754,6071,22269,32335,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Doctoral/Research Universities,20517,16767,3750,17904,2613,15762,2142,0,1,26,4,0,63,2,2,2,1,52,0,1,26,4,0,63,2,2,1,1,50,0,1,23,3,0,65,2,2,4,1,65,3404,95,134,4,42,1,3,0,26,45,50,89,77,36,36,9,61,8,63,63,7,2244,0
Georgia State University,13890,7592,3460,86,45,480,580,480,590,0,0,20,25,32168,23696,8472,24865,18429,6436,3460,3379,81,7303,5267,2036,0,55,46,8698,9410,8157,8368,24448,39016,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),32165,23677,8488,24868,7297,18410,6458,0,10,35,8,0,36,4,3,4,10,58,0,11,40,9,0,32,4,2,2,11,58,0,6,21,4,0,50,2,3,13,6,59,3283,95,135,4,50,1,1,0,21,44,53,91,84,56,56,10,69,3,57,57,3,5272,0
University of Georgia,18458,10352,4936,86,60,560,660,580,670,570,670,26,30,34536,31364,3172,26278,24746,1532,5238,5220,18,8258,6618,1640,0,56,48,8736,9472,9842,10262,22064,40274,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),34536,31364,3172,26278,8258,24746,1532,0,8,8,5,0,70,3,2,5,8,57,0,9,7,5,0,73,3,1,1,9,57,0,5,9,3,0,62,2,4,15,5,58,4594,88,543,10,98,2,2,0,57,80,82,94,92,21,21,2,86,18,40,40,3,2069,0
Kennesaw State University,9471,5355,3194,67,45,500,590,490,580,470,570,21,24,24629,17689,6940,22667,16871,5796,3433,3344,89,1962,818,1144,0,57,60,5042,5340,5522,5818,24659,34739,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),24629,17690,6939,22621,2008,16869,5752,0,3,18,7,0,63,4,3,2,3,59,0,3,18,7,0,63,4,3,2,3,58,0,2,19,4,0,63,1,6,3,2,62,2851,88,254,8,124,4,0,0,15,35,43,90,81,36,36,2,68,4,51,51,3,1180,0
LaGrange College,1648,962,271,65,56,460,550,450,540,0,0,19,23,940,858,82,856,786,70,271,267,4,84,72,12,0,58,28,22208,23272,24462,25690,40288,40288,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,940,858,82,856,84,786,70,1,1,22,2,0,71,2,1,1,1,56,1,1,23,2,0,70,2,0,1,1,54,0,0,12,1,0,80,0,6,1,0,80,192,71,77,28,2,1,0,0,31,37,38,99,99,46,46,15,77,99,79,79,13,0,55914
Life University,809,603,212,0,0,0,0,0,0,0,0,0,0,2676,2211,465,826,586,240,50,50,0,1850,1625,225,5,75,35,8580,8815,9057,7947,28077,28077,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,2730,2342,388,765,1965,556,209,1,3,19,9,0,50,0,14,3,3,47,1,2,25,8,0,33,0,27,4,2,49,1,3,17,10,0,57,0,9,3,3,46,0,0,0,0,0,0,0,0,22,22,22,92,79,63,63,58,26,29,74,74,0,0,0
Mercer University,3864,2666,728,61,38,540,630,540,640,0,0,23,28,8305,6488,1817,4381,3655,726,728,727,1,3924,2833,1091,0,69,27,30560,31548,32466,33120,48212,48212,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),8351,6435,1916,4419,3932,3659,760,0,6,31,3,0,48,2,5,4,6,64,0,5,33,4,0,47,2,5,4,5,63,0,7,28,3,0,50,1,6,3,7,64,0,0,0,0,0,0,0,0,44,58,59,100,99,33,33,9,79,99,61,61,8,0,24270
Morehouse College,2690,1798,488,67,52,450,550,450,560,430,550,18,23,2185,2014,171,2185,2014,171,488,486,2,0,0,0,0,67,27,22444,23792,24744,25468,47345,47345,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Large,Baccalaureate Colleges--Arts & Sciences,2170,2006,164,2170,0,2006,164,0,0,96,0,0,0,0,1,2,0,0,0,0,96,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,51,54,94,84,52,51,22,29,65,75,75,6,0,52890
University of North Georgia,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Fringe,Master's Colleges and Universities (larger programs),0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Oglethorpe University,4403,2455,282,76,52,520,630,510,610,490,610,22,27,1082,996,86,1073,992,81,282,281,1,9,4,5,0,56,11,27950,29150,30150,31280,46430,46430,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1100,996,104,1091,9,992,99,0,4,17,10,0,34,2,28,5,4,58,0,4,18,10,0,34,2,28,5,4,57,0,0,11,11,0,44,0,22,11,0,100,0,0,0,0,0,0,0,0,55,61,62,97,97,38,38,6,52,97,81,81,8,0,18477
Paine College,2771,1213,268,52,56,340,430,340,440,330,410,14,18,924,838,86,924,838,86,268,252,16,0,0,0,0,44,22,11794,12502,12502,13332,23850,23850,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,924,838,86,924,0,838,86,0,0,91,2,0,2,1,2,1,0,49,0,0,91,2,0,2,1,2,1,0,49,0,0,0,0,0,0,0,0,0,0,0,176,66,89,33,3,1,0,0,4,16,21,99,97,84,84,37,64,41,90,90,1,0,0
Piedmont College,850,520,255,77,45,450,560,440,540,0,0,19,24,2368,1501,867,1281,1131,150,255,253,2,1087,370,717,0,61,49,18000,19000,19930,20730,34090,34090,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (larger programs),2368,1501,867,1281,1087,1131,150,0,1,10,3,0,78,2,5,0,2,72,1,1,10,4,0,77,2,5,0,1,67,0,2,11,2,0,80,1,4,0,2,78,0,0,0,0,0,0,0,0,40,46,46,99,99,43,43,5,82,98,65,65,4,0,23346
Reinhardt University,1111,571,396,66,34,437,590,415,586,0,0,18,25,1400,1311,89,1301,1223,78,396,376,20,99,88,11,6,51,69,17166,17670,18070,18670,32794,32794,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,1309,1225,84,1217,92,1141,76,0,1,16,5,0,69,0,8,0,1,51,0,1,17,5,0,68,0,8,0,1,50,0,1,14,2,0,82,0,1,0,1,60,0,0,0,0,0,0,0,0,21,27,28,92,89,43,43,10,89,89,59,59,9,0,31428
Savannah State University,2922,2425,1301,70,57,390,460,380,460,370,450,16,19,4772,4221,551,4602,4098,504,1266,1236,30,170,123,47,0,83,54,5624,6032,5290,5415,16174,25935,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,4772,4221,551,4602,170,4098,504,0,0,87,2,0,6,3,1,1,0,56,0,0,87,2,0,5,3,1,1,0,55,1,1,62,3,0,19,1,6,6,1,74,1206,93,76,6,17,1,0,0,8,23,29,99,88,82,80,12,23,10,92,92,3,1037,0
Shorter University,1597,1087,309,67,61,410,530,410,530,410,500,18,23,1605,1426,179,1520,1382,138,309,307,2,85,44,41,24,68,28,17070,17870,18770,19670,33230,33230,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,1629,1428,201,1544,85,1384,160,0,1,16,4,0,51,2,24,3,1,59,0,1,17,4,0,53,2,21,3,1,57,0,1,6,1,0,18,0,74,0,1,78,0,0,0,0,0,0,0,0,33,46,46,99,98,45,45,8,80,96,66,66,4,0,8711
Spelman College,6081,2312,523,74,55,470,570,460,540,0,0,20,24,2129,2061,68,2129,2061,68,559,557,2,0,0,0,0,38,23,22010,23254,23794,24634,42879,42879,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Large,Baccalaureate Colleges--Arts & Sciences,2129,2061,68,2129,0,2061,68,0,0,85,0,0,0,3,11,1,0,100,0,0,85,0,0,0,3,11,1,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,66,68,90,70,47,46,12,24,48,70,68,11,0,137294
Southern Polytechnic State University,1689,1317,797,80,46,500,600,530,630,0,0,22,26,6550,4361,2189,5729,4142,1587,759,723,36,821,219,602,2,78,61,5180,5500,5627,5732,18862,29890,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (medium programs),6549,4362,2187,5732,817,4142,1590,0,7,23,8,0,52,3,2,5,7,21,0,7,21,8,0,54,4,2,4,7,19,0,8,33,4,0,36,1,7,9,8,39,783,97,9,1,13,2,0,0,10,29,38,91,83,39,39,1,70,1,57,57,3,1213,0
Thomas University,153,105,66,0,0,0,0,0,0,0,0,0,0,1090,587,503,896,509,387,79,70,9,194,78,116,45,69,63,12510,13320,14080,14740,24860,24860,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1090,588,502,886,204,506,380,0,1,27,4,0,46,0,17,4,2,58,0,1,25,4,0,52,0,12,4,2,54,0,0,36,1,0,21,0,36,5,1,76,0,0,0,0,0,0,0,0,14,19,27,56,56,56,56,14,56,34,52,52,4,0,4792
Toccoa Falls College,1253,619,178,66,39,450,590,450,570,0,0,17,23,868,782,86,868,782,86,174,171,3,0,0,0,8,49,29,15885,16910,18210,19000,31792,31792,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,870,777,93,870,0,777,93,1,8,6,2,0,81,0,0,1,8,53,1,8,6,2,0,81,0,0,1,8,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,43,46,100,100,61,61,2,63,98,75,75,10,0,2811
Truett-McConnell College,470,379,204,81,51,430,530,410,520,400,520,17,22,1584,702,882,1584,702,882,204,203,1,0,0,0,3,81,54,14540,15010,15650,16610,28410,28410,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate/Associate's Colleges,1606,691,915,1606,0,691,915,0,1,6,3,0,71,0,15,2,1,57,0,1,6,3,0,71,0,15,2,1,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,14,16,100,100,47,45,2,89,99,68,67,13,0,3613
Valdosta State University,5701,3148,1734,68,30,480,570,470,550,450,540,20,24,11884,9112,2772,9717,8399,1318,1723,1693,30,2167,713,1454,55,55,55,5406,5697,5792,5889,20746,31671,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),11885,8964,2921,9718,2167,8277,1441,0,1,33,4,0,56,3,0,2,1,61,0,1,36,4,0,53,3,0,2,1,59,0,1,22,2,0,70,3,0,2,1,70,1651,96,48,3,22,1,1,0,16,34,40,92,80,47,47,7,58,4,67,67,6,2747,0
Wesleyan College,779,338,117,81,35,450,570,430,560,420,540,17,22,697,518,179,648,469,179,117,117,0,49,49,0,0,43,35,18000,18500,19000,19775,32375,32375,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,700,517,183,651,49,468,183,0,1,33,4,0,38,3,2,19,1,95,0,1,29,4,0,40,3,2,21,1,96,0,0,80,4,0,14,0,2,0,0,88,0,0,0,0,0,0,0,0,58,64,64,100,100,52,49,30,63,100,58,57,8,0,101523
University of West Georgia,7266,3913,2214,76,52,440,520,430,510,420,510,18,22,11952,9082,2870,9976,8382,1594,2214,2176,38,1976,700,1276,0,54,57,5282,5645,5740,5837,21299,31365,Georgia,Georgia,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Fringe,Master's Colleges and Universities (larger programs),11929,9067,2862,9959,1970,8369,1590,0,1,33,4,0,56,3,1,1,1,64,0,1,34,4,0,55,3,1,1,1,63,0,1,28,3,0,62,1,2,2,1,72,0,0,0,0,0,0,0,0,17,36,43,94,81,51,51,6,57,8,69,68,3,2122,0
Chaminade University of Honolulu,914,764,267,72,29,430,520,440,540,0,0,19,23,2746,2127,619,2045,1661,384,304,266,38,701,466,235,112,84,35,17740,18440,19330,20090,35309,35309,Hawaii,Hawaii,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),2752,2124,628,2036,716,1644,392,1,27,5,6,14,16,11,19,1,41,66,1,30,6,6,14,18,13,11,1,44,66,0,19,3,4,16,11,5,41,1,34,69,0,0,0,0,0,0,0,0,27,36,38,100,99,42,40,37,0,98,84,84,5,0,5157
University of Hawaii at Hilo,1633,1228,461,89,8,410,540,430,550,400,510,19,23,4043,3220,823,3457,2766,691,496,489,7,586,454,132,0,75,38,5416,5944,6184,6536,17326,29086,Hawaii,Hawaii,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,4043,3220,823,3457,586,2766,691,0,21,1,10,10,24,28,0,4,32,60,0,18,1,11,11,24,29,0,5,29,60,0,41,2,6,5,23,21,1,1,46,60,312,63,167,34,13,3,4,1,8,30,36,85,70,45,45,1,13,52,49,48,5,63,0
University of Hawaii at Manoa,6901,5527,1981,77,11,480,580,500,610,470,570,21,27,20006,14803,5203,14499,12064,2435,2005,1957,48,5507,2739,2768,0,80,36,8095,9100,9404,9904,22996,40564,Hawaii,Hawaii,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),20006,14803,5203,14499,5507,12064,2435,0,36,1,8,5,22,22,0,6,41,56,0,40,1,9,4,19,24,0,3,44,55,0,26,1,5,5,29,17,1,14,32,58,1287,64,664,33,40,2,14,1,19,44,57,79,67,28,28,6,7,61,38,37,4,1992,0
Hawaii Pacific University,4207,2697,591,58,36,430,550,440,560,0,0,19,25,6736,4359,2377,5582,3719,1863,591,509,82,1154,640,514,146,64,22,15820,16610,18600,20180,36590,36590,Hawaii,Hawaii,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),6736,4359,2377,5582,1154,3719,1863,0,16,5,12,2,29,17,4,14,18,55,0,17,5,13,2,28,18,4,12,19,56,0,11,4,7,2,30,16,2,26,13,55,0,0,0,0,0,0,0,0,19,35,40,95,91,38,38,15,0,63,46,46,3,0,11735
University of Hawaii-West Oahu,908,694,301,76,4,400,480,400,500,380,470,16,22,2361,1043,1318,2361,1043,1318,291,214,77,0,0,0,0,76,43,4666,5146,5602,6336,0,0,Hawaii,Hawaii,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,2361,1043,1318,2361,0,1043,1318,0,40,1,10,8,11,28,0,0,48,66,0,40,1,10,8,11,28,0,0,48,66,0,0,0,0,0,0,0,0,0,0,0,286,98,5,2,0,0,0,0,6,25,25,64,51,32,32,1,1,38,32,32,0,125,0
Boise State University,7832,6082,2205,76,56,460,570,460,580,0,0,20,26,19340,13186,6154,16901,12392,4509,2153,2037,116,2439,794,1645,165,78,36,5300,5566,5884,6292,20944,33544,Idaho,Idaho,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (larger programs),21981,13264,8717,19026,2955,12452,6574,1,2,2,8,0,76,3,4,3,3,55,1,2,1,9,0,76,3,3,3,3,54,1,2,2,3,0,77,1,11,4,2,62,0,0,0,0,0,0,0,0,11,30,38,80,71,35,35,3,51,35,50,49,3,4948,0
Idaho State University,0,0,0,0,0,0,0,0,0,0,0,0,0,13334,8239,5095,11418,7016,4402,1467,1265,202,1916,1223,693,349,0,0,5416,5796,6070,6344,21068,33400,Idaho,Idaho,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),13326,8231,5095,11418,1908,7016,4402,1,1,1,8,0,74,2,5,7,2,54,1,1,1,9,0,74,2,5,7,2,53,0,3,1,4,0,76,2,6,8,3,54,1239,80,86,6,217,14,9,1,11,12,31,87,82,49,49,10,52,39,55,55,1,3835,0
University of Idaho,7455,4894,1643,51,71,480,590,480,590,460,570,20,26,11691,9095,2596,9374,7838,1536,1614,1584,30,2317,1257,1060,0,66,34,5402,5856,6212,6524,19598,32674,Idaho,Idaho,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Research Universities (high research activity),12024,9387,2637,9540,2484,8011,1529,1,2,1,7,0,78,3,4,5,2,47,1,1,1,8,0,79,3,3,3,2,47,1,2,1,4,0,75,2,4,11,2,44,1145,70,398,24,46,3,41,3,25,48,54,91,87,38,38,20,62,65,53,53,0,19308,0
The College of Idaho,1116,1010,292,86,68,460,570,465,590,455,570,21,27,1122,1070,52,1095,1055,40,292,291,1,27,15,12,0,91,29,21380,22695,23355,24055,35456,35456,Idaho,Idaho,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Baccalaureate Colleges--Arts & Sciences,1122,1070,52,1095,27,1055,40,1,3,1,15,0,62,1,9,8,3,56,1,3,1,15,0,62,1,8,8,3,55,0,0,0,4,0,41,0,56,0,0,81,225,77,51,17,16,5,0,0,54,63,67,99,99,42,42,36,70,98,61,61,5,0,92003
Lewis-Clark State College,861,859,475,63,45,400,510,420,520,0,0,18,22,4304,2443,1861,4304,2443,1861,475,446,29,0,0,0,186,100,55,4998,5348,5562,5786,17426,27736,Idaho,Idaho,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,4304,2443,1861,4304,0,2443,1861,2,1,1,5,0,84,3,2,2,1,61,2,1,1,5,0,84,3,2,2,1,61,0,0,0,0,0,0,0,0,0,0,0,365,77,98,21,12,3,0,0,9,22,24,97,88,54,54,5,41,63,65,65,3,1610,0
Northwest Nazarene University,1227,757,261,78,66,460,590,460,570,460,570,21,28,2037,1692,345,1277,1136,141,263,260,3,760,556,204,0,62,34,23100,24030,25190,26550,36550,36550,Idaho,Idaho,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Master's Colleges and Universities (larger programs),2246,1692,554,1488,758,1136,352,0,1,2,7,0,76,1,10,2,1,58,0,1,2,7,0,75,2,10,2,2,56,0,1,1,7,0,77,1,10,2,1,60,131,52,117,46,4,2,0,0,32,44,49,100,100,40,40,31,42,100,74,73,8,0,12430
Brigham Young University-Idaho,6690,6665,3448,37,84,450,560,440,560,0,0,20,25,20117,14369,5748,20117,14369,5748,2423,2234,189,0,0,0,1939,100,52,3660,3811,3770,3850,11398,11398,Idaho,Idaho,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,27692,14376,13316,27692,0,14376,13316,0,1,1,5,1,77,6,1,7,2,57,0,1,1,5,1,77,6,1,7,2,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,41,54,71,64,26,26,0,13,51,27,27,1,0,2580
Augustana College,5831,3421,627,0,0,0,0,0,0,0,0,0,0,2524,2509,15,2524,2509,15,627,627,0,0,0,0,0,59,18,32235,33363,34614,35835,47137,47137,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,2524,2509,15,2524,0,2509,15,0,2,4,6,0,77,6,2,2,2,57,0,2,4,6,0,77,6,2,2,2,57,0,0,0,0,0,0,0,0,0,0,0,510,81,95,15,20,3,2,0,74,78,78,99,98,24,24,20,27,98,66,65,8,0,50005
Aurora University,2536,1926,646,7,93,460,560,460,560,0,0,19,24,4870,3351,1519,3223,2862,361,646,646,0,1647,489,1158,0,76,34,18700,19450,20100,20720,33228,33228,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),4946,3342,1604,3246,1700,2852,394,0,2,8,16,0,66,2,5,0,2,67,0,2,9,20,0,61,3,4,0,2,63,0,1,8,8,0,74,0,8,0,1,76,554,79,145,21,2,0,0,0,44,56,58,100,100,43,43,11,44,100,77,77,6,0,9032
Blackburn College,528,359,116,4,94,520,570,500,620,0,0,19,25,539,522,17,539,522,17,116,115,1,0,0,0,0,68,32,14996,16296,17502,18506,26616,26616,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,543,523,20,543,0,523,20,1,0,9,1,0,87,1,0,0,0,58,1,0,9,1,0,87,1,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,100,86,16,14,0,0,0,0,34,45,45,99,97,59,59,20,56,96,87,87,4,0,27143
Bradley University,8969,6004,1085,7,97,500,640,510,630,490,620,23,28,5430,4912,518,4825,4618,207,1085,1082,3,605,294,311,0,67,18,25424,26704,28284,29664,42090,42090,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),5430,4912,518,4825,605,4618,207,0,3,6,5,0,77,4,1,4,3,52,0,3,6,6,0,79,4,1,1,4,52,0,2,3,1,0,60,2,3,29,2,48,656,60,165,15,2,0,262,24,55,73,76,99,98,23,23,3,30,97,74,74,7,0,49328
Chicago State University,5219,1495,276,3,99,430,510,450,530,0,0,17,20,5701,3590,2111,4340,2852,1488,276,225,51,1361,738,623,0,29,18,8752,9062,8558,9032,23202,29594,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),5701,3590,2111,4340,1361,2852,1488,0,4,74,6,0,6,0,11,0,4,71,0,1,78,6,0,2,0,13,0,1,71,0,12,61,5,0,17,0,4,0,12,68,257,93,13,5,6,2,0,0,4,15,21,97,91,86,85,5,65,12,84,84,0,746,0
University of Chicago,30304,2670,1426,70,51,720,800,720,790,700,780,32,35,15056,12842,2214,5703,5629,74,1426,1426,0,9353,7213,2140,0,9,53,42041,43780,45609,47514,64988,64988,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (very high research activity),15048,12848,2200,5703,9345,5630,73,0,13,4,6,0,44,2,11,21,13,42,0,18,5,9,0,45,4,10,9,18,47,0,10,4,4,0,43,1,11,27,10,39,264,19,997,70,164,12,1,0,88,91,93,67,63,12,12,7,3,63,26,25,2,0,429800
Columbia College-Chicago,8005,7247,2161,0,0,0,0,0,0,0,0,0,0,10142,9066,1076,9671,8720,951,2161,2125,36,471,346,125,0,91,30,19610,20644,21730,22792,40677,40677,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),10142,9066,1076,9671,471,8720,951,0,3,16,10,0,56,4,8,2,3,56,0,3,17,11,0,56,4,8,2,3,55,0,2,15,7,0,59,4,6,7,2,66,1084,50,1013,47,57,3,7,0,32,39,41,79,65,39,39,1,24,48,70,69,7,0,13111
Concordia University-Chicago,3692,2009,376,14,93,440,590,450,580,0,0,20,24,5286,1684,3602,1604,1489,115,376,376,0,3682,195,3487,0,54,19,24396,25456,26476,27598,38862,38862,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),5286,1684,3602,1604,3682,1489,115,0,2,17,14,0,63,2,1,1,2,69,0,2,14,22,0,55,3,2,1,2,60,0,2,18,10,0,66,1,1,1,2,73,263,70,113,30,0,0,0,0,45,50,53,100,100,52,52,8,47,100,81,81,7,0,4808
DePaul University,19957,11948,2425,20,86,530,630,520,630,0,0,23,28,24414,18706,5708,16420,13594,2826,2425,2422,3,7994,5112,2882,0,60,20,28858,30618,32295,33990,49367,49367,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,24414,18706,5708,16420,7994,13594,2826,0,7,9,14,0,55,3,6,6,7,53,0,7,8,17,0,56,4,5,3,7,54,0,6,11,8,0,53,2,8,12,7,53,1552,64,866,36,0,0,7,0,54,68,70,95,94,29,28,3,28,94,58,57,5,0,17773
East-West University,0,0,0,0,0,0,0,0,0,0,0,0,0,815,803,12,815,803,12,251,247,4,0,0,0,38,0,0,15750,16650,17595,18795,31236,31236,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,684,669,15,684,0,669,15,0,10,68,17,0,2,0,3,0,10,58,0,10,68,17,0,2,0,3,0,10,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,9,11,100,100,98,98,10,54,100,84,84,0,0,0
Eastern Illinois University,7881,4879,1333,0,99,0,0,0,0,0,0,19,24,9775,8013,1762,8347,7327,1020,1333,1329,4,1428,686,742,0,62,27,9987,10534,10930,11144,25138,42118,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),9775,8013,1762,8347,1428,7327,1020,0,1,16,4,0,72,2,3,2,1,60,0,1,18,5,0,70,2,3,1,1,60,0,1,7,2,0,78,1,1,10,1,61,1252,94,67,5,10,1,4,0,34,56,60,93,85,42,41,3,43,57,73,73,7,4361,0
Elmhurst College,2702,1940,506,8,94,450,550,450,580,0,0,21,26,3210,2782,428,2900,2736,164,506,506,0,310,46,264,0,72,26,28660,30054,31650,32920,46000,46000,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),3210,2782,428,2900,310,2736,164,0,5,5,12,0,72,3,3,1,5,61,0,5,5,13,0,72,3,2,0,5,60,0,6,9,4,1,70,0,7,2,6,67,411,81,94,19,1,0,0,0,59,72,74,89,88,35,35,35,36,88,64,64,4,0,26608
Eureka College,960,651,138,8,92,565,665,530,650,565,585,19,26,692,641,51,692,641,51,138,138,0,0,0,0,0,68,21,18045,18750,19480,20060,30900,30900,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,692,644,48,692,0,644,48,0,1,5,3,0,84,2,4,0,1,59,0,1,5,3,0,84,2,4,0,1,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,61,100,100,43,43,21,53,100,87,87,19,0,22303
Governors State University,0,0,0,0,0,0,0,0,0,0,0,0,0,5549,1973,3576,3211,1293,1918,0,0,0,2338,680,1658,0,0,0,0,0,0,0,0,0,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Master's Colleges and Universities (larger programs),5568,2009,3559,3218,2350,1315,1903,0,2,37,8,0,43,1,7,1,2,71,0,2,35,10,0,43,1,9,1,2,68,0,2,41,5,0,43,1,5,2,3,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,367,0
Greenville College,1723,1132,277,19,81,432,550,515,595,400,570,19,25,1373,1132,241,1135,1091,44,277,277,0,238,41,197,0,66,24,20924,22198,22920,23612,34641,34641,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1368,1129,239,1129,239,1090,39,0,1,8,4,0,75,2,6,4,1,53,0,1,8,4,0,75,2,5,5,1,48,0,0,7,2,0,77,0,13,0,0,72,151,55,113,41,13,5,0,0,41,50,50,98,98,38,38,23,27,97,77,77,10,0,10621
University of Illinois at Chicago,14603,10427,3104,6,99,490,600,510,640,0,0,21,26,27589,23010,4579,16660,15402,1258,3104,3079,25,10929,7608,3321,0,71,30,12056,12656,13122,13410,29320,41710,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),28038,23239,4799,16671,11367,15402,1269,0,19,8,18,0,42,2,2,8,19,54,0,22,8,25,0,38,2,2,2,23,50,0,13,8,9,0,47,2,3,18,13,60,2928,94,103,3,72,2,1,0,30,51,57,82,67,54,54,2,54,65,44,42,4,7841,0
Benedictine University,2108,1465,635,0,91,0,0,0,0,0,0,19,25,6318,3588,2730,3830,3056,774,635,624,11,2488,532,1956,51,69,43,23240,23184,24137,25516,37636,37636,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,6318,3588,2730,3828,2490,3056,772,0,11,11,6,0,45,0,24,2,11,65,0,14,10,8,0,44,0,21,2,14,61,1,6,14,3,0,46,0,28,2,6,71,529,83,95,15,7,1,4,1,38,50,52,96,95,44,44,20,43,94,70,70,3,0,2168
University of Illinois at Urbana-Champaign,33203,20716,7329,28,79,560,670,700,780,580,670,26,31,44942,41118,3824,32695,31516,1179,7329,7321,8,12247,9602,2645,0,62,35,13096,13838,14522,14750,29086,43468,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),44942,41118,3824,32695,12247,31516,1179,0,13,5,7,0,50,2,1,21,13,45,0,15,5,8,0,53,2,1,15,15,44,0,6,4,4,0,44,1,3,37,6,48,5330,73,760,10,1171,16,68,1,68,82,84,65,46,21,21,9,25,42,42,41,10,21391,0
Illinois Wesleyan University,3556,2076,529,15,89,510,620,570,740,0,0,25,30,2009,2002,7,2009,2002,7,528,528,0,0,0,0,0,58,25,35256,36572,37954,39316,50352,50352,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,2009,2001,8,2009,0,2001,8,0,5,5,6,0,74,1,4,5,5,56,0,5,5,6,0,74,1,4,5,5,56,0,0,0,0,0,0,0,0,0,0,0,412,78,71,13,42,8,2,0,72,77,78,99,98,22,22,21,25,98,67,67,21,0,116710
Illinois College,2560,1569,270,10,85,410,540,410,580,420,510,19,25,1028,981,47,1010,981,29,270,270,0,18,0,18,0,61,17,22800,24550,26500,27800,39040,39040,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1028,981,47,1010,18,981,29,0,1,12,7,0,73,3,1,3,1,51,0,1,12,7,0,73,3,1,3,1,50,0,0,0,6,0,94,0,0,0,0,100,218,81,44,16,8,3,0,0,56,63,64,100,100,36,36,16,39,100,78,77,7,0,135452
Illinois Institute of Technology,2840,1618,465,27,74,520,640,640,740,520,640,25,30,7850,6539,1311,2926,2712,214,464,464,0,4924,3827,1097,0,57,29,32443,35125,37969,40117,54677,54677,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (high research activity),7850,6539,1311,2926,4924,2712,214,0,6,4,7,0,26,1,10,46,6,36,0,11,7,14,0,37,0,6,24,11,30,0,3,2,3,0,20,1,12,59,3,40,0,0,0,0,0,0,0,0,32,57,63,100,100,36,34,15,31,100,50,50,5,0,28531
Illinois State University,15354,10582,2981,0,99,0,0,0,0,0,0,22,26,20190,17813,2377,17667,16632,1035,2981,2978,3,2523,1181,1342,0,69,28,11417,11832,12726,13010,26259,33699,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Midsize,Doctoral/Research Universities,20272,17864,2408,17749,2523,16683,1066,0,2,7,7,0,79,2,1,2,2,56,0,2,7,8,0,79,2,1,1,2,55,0,2,5,4,0,76,1,1,11,2,65,2843,95,43,1,0,0,95,3,46,68,72,79,46,27,27,8,29,34,64,64,8,4015,0
Judson University,737,521,201,11,88,460,540,500,590,0,0,18,27,1162,872,290,1058,799,259,203,189,14,104,73,31,0,71,39,24780,26110,27000,27530,40020,40020,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,1170,856,314,1066,104,783,283,0,2,7,10,0,59,2,16,4,2,56,0,2,6,10,0,59,2,17,4,2,56,0,2,17,9,0,59,0,9,5,2,62,0,0,0,0,0,0,0,0,32,46,50,100,99,24,24,24,23,99,85,75,15,0,11061
Knox College,2660,1994,380,0,0,0,0,0,0,0,0,0,0,1424,1399,25,1424,1399,25,379,379,0,0,0,0,0,75,19,33024,34464,36492,38952,49252,49252,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,1424,1400,24,1424,0,1400,24,0,5,7,10,0,58,4,4,11,5,57,0,5,7,10,0,58,4,4,11,5,57,0,0,0,0,0,0,0,0,0,0,0,193,51,142,37,42,11,3,1,71,79,79,98,98,27,27,27,18,94,59,59,4,0,70137
Lake Forest College,3684,2110,403,23,78,510,620,510,620,510,610,23,28,1618,1585,33,1590,1574,16,403,403,0,28,11,17,0,57,19,35525,36920,38300,39842,52000,52000,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1618,1582,36,1590,28,1571,19,0,5,6,14,0,58,3,3,10,5,58,0,5,6,14,0,58,3,3,10,5,58,0,0,7,4,0,86,4,0,0,0,64,221,55,126,32,52,13,0,0,58,63,64,99,99,35,35,35,26,99,67,66,3,0,48680
Lewis University,5432,3035,694,3,96,440,550,480,590,440,540,21,26,6525,4124,2401,4613,3724,889,694,694,0,1912,400,1512,13,56,23,23780,24770,25770,26780,39335,39335,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),6525,4123,2402,4613,1912,3723,890,0,3,10,15,0,63,2,5,1,3,59,0,3,8,17,0,64,2,4,1,4,56,0,3,16,9,0,61,1,7,3,3,68,638,92,50,7,5,1,1,0,45,59,63,99,99,35,35,6,42,99,77,76,12,0,8364
Lincoln College,1101,963,371,0,90,0,0,0,0,0,0,16,19,1101,763,338,1101,763,338,371,353,18,0,0,0,150,87,39,21000,23000,17500,17500,30014,30014,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate/Associate's Colleges,1240,798,442,1240,0,798,442,0,0,35,5,0,53,2,3,0,0,57,0,0,35,5,0,53,2,3,0,0,57,0,0,0,0,0,0,0,0,0,0,0,365,92,28,7,0,0,3,1,0,0,0,89,89,78,78,40,57,89,89,89,2,0,35491
Loyola University Chicago,14355,13121,2512,23,86,520,630,530,630,520,630,24,29,15957,13463,2494,10168,9339,829,2512,2497,15,5789,4124,1665,0,91,19,32114,33294,34578,35573,51273,51273,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (high research activity),15957,13463,2494,10168,5789,9339,829,0,9,6,11,0,62,4,3,5,9,64,0,11,4,13,0,61,6,2,3,11,64,0,6,9,8,0,63,2,5,7,6,64,1493,59,943,38,76,3,0,0,60,70,71,96,95,29,28,14,26,95,69,68,9,0,31599
MacMurray College,1027,769,120,8,98,360,470,390,540,0,0,19,22,451,399,52,451,399,52,120,120,0,0,0,0,0,75,16,19310,20400,21400,22400,32550,32550,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,571,517,54,571,0,517,54,0,1,13,4,0,73,2,7,0,1,56,0,1,13,4,0,73,2,7,0,1,56,0,0,0,0,0,0,0,0,0,0,0,99,83,21,18,0,0,0,0,28,37,38,100,100,66,66,66,51,100,92,92,19,0,15519
McKendree University,1617,1017,387,7,93,450,520,490,530,430,520,20,25,3027,1935,1092,2358,1776,582,387,387,0,669,159,510,6,63,38,23130,24190,25340,26050,38290,38290,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),3027,1935,1092,2358,669,1776,582,1,1,13,4,0,73,1,5,1,1,59,1,1,15,4,0,70,1,6,1,2,56,0,1,9,2,0,84,0,2,1,1,71,294,76,83,21,10,3,0,0,32,47,48,100,100,34,34,24,34,100,70,66,5,0,12043
Millikin University,3906,2153,451,6,96,490,570,440,580,450,590,21,26,2264,2126,138,2154,2044,110,451,450,1,110,82,28,0,55,21,27525,28612,28612,28644,40694,40694,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,2261,2126,135,2153,108,2044,109,0,1,12,5,0,76,3,0,2,1,59,0,1,12,6,0,76,4,0,2,1,59,1,1,5,3,0,89,0,0,2,1,51,369,82,77,17,3,1,2,0,48,59,60,100,100,39,39,5,43,100,82,81,10,0,47043
Monmouth College,2973,1912,392,1,95,490,540,470,510,480,570,20,25,1252,1241,11,1252,1241,11,392,392,0,0,0,0,0,64,21,26900,28650,30450,31500,42050,42050,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,1255,1244,11,1255,0,1244,11,1,1,13,11,0,66,1,5,2,1,55,1,1,13,11,0,66,1,5,2,1,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,58,58,100,100,52,52,52,57,100,84,83,6,0,69676
National Louis University,84,83,25,0,0,0,0,0,0,0,0,0,0,4498,1046,3452,1433,803,630,32,31,1,3065,243,2822,0,99,30,18355,18895,18930,15915,0,0,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,4814,2209,2605,1427,3387,784,643,0,3,27,14,1,48,1,6,0,3,80,0,2,40,25,1,24,1,6,1,3,77,0,3,21,10,0,58,1,7,0,3,82,0,0,0,0,0,0,0,0,29,29,43,86,86,24,24,0,24,86,19,19,0,0,7292
North Central College,4082,2598,529,6,96,0,0,0,0,0,0,22,27,3048,2682,366,2797,2592,205,529,529,0,251,90,161,0,64,20,28224,29733,31071,32613,44769,44769,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (medium programs),3048,2682,366,2797,251,2592,205,0,2,4,8,0,77,3,5,2,2,55,0,2,3,8,0,77,3,5,2,2,55,0,2,7,5,0,77,0,4,4,2,47,460,87,58,11,11,2,0,0,51,62,64,99,99,23,23,10,32,99,75,74,24,0,33860
North Park University,3961,2073,373,19,86,0,0,465,580,470,588,19,25,3142,1970,1172,2205,1861,344,373,371,2,937,109,828,0,52,18,19960,21050,22150,23350,35050,35050,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),3136,1970,1166,2204,932,1861,343,0,6,10,15,0,51,2,11,4,7,64,0,5,9,18,0,52,3,7,4,6,63,0,8,11,8,1,48,1,21,2,8,67,238,64,124,33,11,3,0,0,39,55,56,99,98,41,41,36,37,98,78,77,2,0,26877
Northern Illinois University,25914,14545,2679,3,96,450,550,450,580,430,530,19,24,21138,16053,5085,15814,13821,1993,2679,2630,49,5324,2232,3092,0,56,18,11676,12422,13066,12976,28342,37438,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Research Universities (high research activity),21138,16053,5085,15814,5324,13821,1993,0,5,14,11,0,61,3,2,4,5,51,0,5,17,13,0,59,3,2,1,5,50,0,5,6,6,0,68,2,1,12,5,56,2536,95,123,5,20,1,0,0,26,45,51,96,92,50,50,5,46,74,75,74,8,3355,0
Northwestern University,32060,4912,2037,64,60,690,760,700,790,690,770,31,34,21637,17041,4596,9358,8447,911,2040,2040,0,12279,8594,3685,0,15,41,40223,41983,43779,45527,63193,63193,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Research Universities (very high research activity),21592,17190,4402,9283,12309,8489,794,0,13,5,7,0,50,3,7,14,13,47,0,17,6,10,0,54,5,3,7,17,51,0,11,4,5,0,47,2,10,20,11,43,0,0,0,0,0,0,0,0,86,93,94,63,54,14,14,14,6,54,35,35,2,0,330031
Northeastern Illinois University,5350,3200,808,0,95,0,0,0,0,0,0,16,21,10821,5415,5406,8950,5068,3882,808,764,44,1871,347,1524,0,60,25,7492,7879,8089,8460,0,0,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),10821,5415,5406,8950,1871,5068,3882,0,9,10,31,0,40,2,3,4,9,57,0,9,10,35,0,37,2,2,4,10,55,0,6,10,14,0,56,1,8,5,6,62,806,100,1,0,1,0,0,0,4,12,20,77,67,63,63,18,59,12,16,16,0,788,0
Olivet Nazarene University,3719,3048,753,0,96,0,0,0,0,0,0,21,27,4600,3185,1415,3349,2905,444,753,753,0,1251,280,971,13,82,25,25590,27590,28090,29890,41490,41490,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Small,Master's Colleges and Universities (larger programs),4579,3185,1394,3335,1244,2905,430,0,3,12,5,0,78,1,0,1,3,68,0,2,10,6,0,80,1,0,1,2,63,1,5,15,5,0,73,0,1,0,5,79,426,57,318,42,9,1,0,0,49,56,57,100,100,37,36,18,26,100,75,74,11,0,4882
Quincy University,1078,955,275,3,97,410,500,500,570,0,0,20,25,1450,1160,290,1180,1080,100,275,275,0,270,80,190,0,89,29,23000,24140,25180,25834,39114,39114,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Master's Colleges and Universities (smaller programs),1455,1162,293,1196,259,1082,114,1,1,11,4,0,66,1,16,0,2,58,1,1,10,4,0,71,2,11,0,2,56,1,2,12,5,0,42,0,39,0,2,68,184,67,90,33,1,0,0,0,39,47,50,100,100,66,50,17,45,100,79,79,9,0,11632
Robert Morris University Illinois,4080,857,719,0,0,0,0,0,0,0,0,0,0,3231,2672,559,2780,2649,131,702,700,2,451,23,428,689,21,84,20100,21600,22200,22800,39114,39114,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),3233,2672,561,2781,452,2649,132,0,3,29,25,0,38,1,1,2,3,52,0,3,28,27,0,38,1,1,1,3,51,0,5,34,15,0,38,1,1,6,6,58,638,91,56,8,5,1,0,0,76,78,80,97,94,64,64,21,43,80,81,81,3,0,13240
Rockford University,1074,440,113,6,92,363,553,453,665,410,528,19,25,1230,876,354,972,838,134,110,103,7,258,38,220,0,41,26,24750,25570,26310,26710,38853,38853,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),1230,876,354,972,258,838,134,0,2,7,6,0,66,7,11,1,2,63,0,2,7,6,0,67,9,9,1,2,63,0,2,5,7,0,63,3,18,1,2,63,0,0,0,0,0,0,0,0,25,39,39,100,100,49,49,22,35,100,96,96,13,0,10037
Roosevelt University,3370,2655,444,13,87,480,630,440,590,480,580,19,25,6145,3834,2311,3658,2731,927,444,429,15,2487,1103,1384,0,79,17,23000,25000,25950,26500,44632,44632,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),6130,3832,2298,3658,2472,2731,927,0,6,21,15,0,48,3,2,5,7,65,0,5,20,19,0,46,3,2,3,5,62,0,8,22,8,0,49,2,3,7,8,70,0,0,0,0,0,0,0,0,27,38,41,96,94,47,47,23,33,91,78,78,6,0,16852
Dominican University,3502,2100,497,3,99,490,540,480,620,490,570,20,24,3470,2457,1013,2069,1907,162,497,497,0,1401,550,851,0,60,24,25710,26610,27730,28810,39918,39918,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),3470,2457,1013,2069,1401,1907,162,0,4,8,29,0,51,1,5,2,4,70,0,3,7,40,0,44,1,1,3,4,66,0,4,10,13,0,60,0,10,2,4,75,454,91,32,6,0,0,11,2,50,61,63,100,100,60,59,15,65,100,77,73,4,0,8035
University of St Francis,1706,877,237,4,96,480,610,440,620,460,600,21,25,3764,1589,2175,1780,1403,377,237,237,0,1984,186,1798,0,51,27,24742,25932,26924,27970,40290,40290,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),3764,1589,2175,1780,1984,1403,377,0,2,8,10,0,72,2,3,1,3,75,0,3,7,13,0,72,2,1,1,3,68,0,2,9,8,0,72,1,5,1,3,82,214,90,23,10,0,0,0,0,32,54,57,100,100,41,41,13,41,100,77,77,7,0,5868
Saint Xavier University,10513,5313,594,4,99,455,570,440,545,455,540,19,24,4228,2640,1588,2932,2462,470,594,591,3,1296,178,1118,0,51,11,25520,27060,28110,28970,41772,41772,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),4252,2635,1617,2920,1332,2452,468,0,3,18,19,0,53,2,6,0,3,70,0,3,16,23,0,50,2,6,0,3,67,1,2,20,8,0,60,2,6,1,3,76,541,91,48,8,1,0,4,1,30,45,47,100,100,58,57,18,62,100,83,83,4,0,2896
University of Illinois at Springfield,1469,878,316,3,97,465,623,440,665,0,0,20,27,5137,2587,2550,3039,1969,1070,316,312,4,2098,618,1480,0,60,36,8101,8581,8952,9178,22378,29698,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (larger programs),5137,2587,2550,3039,2098,1969,1070,0,4,12,5,0,66,2,3,7,4,51,0,4,13,6,0,68,2,4,3,4,51,0,4,10,3,0,64,2,3,13,4,51,302,96,7,2,7,2,0,0,28,40,43,96,90,43,43,27,48,86,65,65,2,3068,0
Shimer College,28,8,8,0,0,0,0,0,0,0,0,0,0,114,97,17,114,97,17,8,8,0,0,0,0,0,29,100,29100,30150,30780,31527,0,0,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,97,79,18,97,0,79,18,0,5,7,10,0,68,3,6,0,5,41,0,5,7,10,0,68,3,6,0,5,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,50,60,86,86,14,14,14,14,86,43,43,0,0,8109
Southern Illinois University-Carbondale,11634,9176,2612,6,94,450,590,470,620,0,0,19,25,17336,13852,3484,13351,11844,1507,2637,2597,40,3985,2008,1977,89,79,28,10468,11038,11528,12093,25409,38032,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),17964,14478,3486,13306,4658,11803,1503,0,2,17,6,0,63,3,0,8,2,46,0,2,20,7,0,64,3,0,4,2,45,0,3,9,3,0,61,2,0,21,3,49,2232,85,358,14,37,1,4,0,23,39,44,88,70,53,52,8,47,44,71,71,7,6447,0
Southern Illinois University-Edwardsville,7646,6437,1966,2,98,470,580,480,590,460,560,20,25,13850,10759,3091,11229,9556,1673,1966,1930,36,2621,1203,1418,0,84,31,8401,8865,9251,9666,23069,34013,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),13850,10759,3091,11229,2621,9556,1673,0,2,13,3,0,74,3,2,2,2,54,0,2,14,4,0,75,3,2,1,2,53,0,3,7,2,0,73,2,4,8,3,60,1835,93,121,6,9,0,1,0,28,46,50,86,61,37,36,3,29,32,65,64,4,1512,0
Trinity Christian College,583,526,205,6,94,450,640,460,630,430,610,20,25,1380,1125,255,1333,1106,227,205,204,1,47,19,28,0,90,39,21733,22572,23513,24435,36820,36820,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1380,1125,255,1333,47,1106,227,1,2,10,10,0,72,2,2,2,2,65,1,2,9,10,0,72,2,2,2,2,65,0,2,21,11,0,60,0,6,0,2,77,0,0,0,0,0,0,0,0,49,56,58,96,96,35,32,15,26,96,72,72,9,0,7214
Trinity International University-Illinois,446,418,182,24,83,460,600,470,560,0,0,20,25,2227,1174,1053,923,744,179,182,182,0,1304,430,874,0,94,44,23370,24610,25840,26830,39680,39680,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,2125,1234,891,906,1219,744,162,0,7,11,5,0,58,1,12,6,7,36,0,3,15,8,0,60,3,10,1,3,49,0,10,8,2,0,55,0,14,10,10,27,79,43,103,57,0,0,0,0,35,42,45,100,100,45,45,43,21,100,94,94,8,0,27947
Western Illinois University,10554,6260,1652,0,98,0,0,0,0,0,0,18,23,11707,9605,2102,9873,8805,1068,1652,1608,44,1834,800,1034,0,59,26,10149,10719,11182,11767,25074,29276,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),11707,9605,2102,9873,1834,8805,1068,0,1,15,7,0,68,2,4,3,1,50,0,1,17,8,0,67,2,4,2,1,49,0,1,6,3,0,74,1,3,12,1,59,1543,93,98,6,10,1,1,0,29,51,56,82,65,44,43,10,40,49,69,69,7,2988,0
Wheaton College,1959,1346,598,58,62,600,720,610,700,600,710,27,32,2993,2665,328,2444,2378,66,597,597,0,549,287,262,0,69,44,27580,28960,30120,30880,42390,42390,Illinois,Illinois,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,2993,2665,328,2444,549,2378,66,0,8,2,4,0,75,4,4,3,8,53,0,8,2,5,0,78,4,1,2,8,51,0,5,4,1,0,61,0,20,8,5,60,128,21,421,71,48,8,0,0,74,86,87,81,73,22,22,22,6,73,51,51,5,0,115766
Anderson University,2734,1516,444,76,62,470,570,470,570,0,0,21,25,2442,1797,645,2016,1737,279,442,434,8,426,60,366,6,55,29,24000,24610,25560,26280,39390,39390,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),2442,1797,645,2016,426,1737,279,0,1,9,2,0,77,0,6,3,1,57,0,1,9,2,0,79,0,5,3,1,60,0,3,12,2,0,71,0,10,1,3,40,0,0,0,0,0,0,0,0,45,56,57,100,100,33,33,14,24,96,72,72,8,0,10714
Ball State University,17118,10364,3616,58,41,490,590,490,570,480,570,20,24,20503,16598,3905,16300,15128,1172,3616,3605,11,4203,1470,2733,49,61,35,8214,8558,8980,9160,22250,37214,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),20503,16588,3915,16300,4203,15128,1172,0,1,6,3,0,80,2,4,4,1,60,0,1,7,3,0,82,2,2,3,1,58,0,1,4,2,0,69,0,15,8,1,68,0,0,0,0,0,0,0,0,35,56,60,87,64,35,35,11,27,46,67,66,5,8466,0
Bethel College-Indiana,1242,889,250,70,59,440,550,460,580,430,550,20,27,1804,1335,469,1655,1304,351,250,249,1,149,31,118,85,72,28,22590,23630,24280,24970,35430,35430,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,1804,1333,471,1655,149,1302,353,0,0,12,5,0,78,2,0,1,1,65,0,1,12,6,0,78,2,0,1,1,66,1,0,11,1,1,84,1,0,1,1,50,0,0,0,0,0,0,0,0,47,63,65,100,100,55,54,18,34,98,83,83,12,0,5294
Butler University,9357,6185,1015,56,79,530,630,530,640,520,630,25,30,5197,4740,457,4457,4380,77,1015,1014,1,740,360,380,2,66,16,30558,31948,33138,34368,49698,49698,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),4827,4348,479,4051,776,3974,77,0,3,4,3,0,82,1,5,3,3,60,0,3,4,3,0,82,1,4,3,3,61,0,3,4,1,0,83,1,5,3,3,56,0,0,0,0,0,0,0,0,51,64,74,94,93,17,17,10,11,91,62,62,12,0,37146
Calumet College of Saint Joseph,545,218,192,46,26,390,460,390,480,340,442,15,20,1115,650,465,976,608,368,173,150,23,139,42,97,20,40,88,14200,14880,14880,15620,0,0,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (smaller programs),1140,622,518,988,152,580,408,1,0,28,30,0,41,1,0,0,0,44,1,0,27,31,0,40,1,0,0,0,44,0,1,37,18,0,44,1,0,0,1,49,0,0,0,0,0,0,0,0,18,27,27,95,89,59,59,42,24,80,77,77,5,0,5459
DePauw University,5086,3113,641,40,65,520,650,550,680,530,630,25,29,2305,2278,27,2305,2278,27,641,641,0,0,0,0,0,61,21,34905,36970,38750,40640,53290,53290,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,2304,2280,24,2304,0,2280,24,0,3,6,3,0,67,6,3,10,3,55,0,3,6,3,0,67,6,3,10,3,55,0,0,0,0,0,0,0,0,0,0,0,212,33,374,58,53,8,2,0,74,79,79,98,97,21,21,19,10,96,44,44,5,0,232634
Earlham College,1890,1204,254,39,30,590,700,560,640,520,640,26,31,1154,1121,33,1057,1051,6,253,253,0,97,70,27,0,64,21,36694,38284,40020,41450,52710,52710,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1159,1099,60,1064,95,1045,19,1,3,12,5,0,55,0,4,19,3,55,1,4,13,6,0,52,0,4,20,4,55,2,1,3,2,0,81,1,3,6,1,53,42,17,170,67,41,16,0,0,59,70,71,97,96,35,34,24,10,96,63,62,6,0,305019
University of Evansville,2935,2468,543,59,65,490,600,500,620,480,600,23,29,2630,2433,197,2477,2290,187,543,543,0,153,143,10,9,84,22,28076,29416,30556,30596,44370,44370,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (smaller programs),2630,2433,197,2477,153,2290,187,0,1,3,3,0,78,2,5,8,1,59,0,1,3,3,0,78,2,5,8,1,58,0,1,4,1,0,84,0,8,1,1,68,260,48,236,43,47,9,0,0,53,62,63,96,96,26,26,2,18,96,55,55,6,0,43352
Franklin College,2221,1333,296,88,52,450,550,460,560,430,540,19,24,1016,1014,2,1016,1014,2,274,272,2,0,0,0,0,60,22,24655,25865,26895,27695,40035,40035,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1014,952,62,1014,0,952,62,0,0,4,1,0,84,3,5,1,0,50,0,0,4,1,0,84,3,5,1,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,57,57,100,100,42,42,41,40,100,80,80,13,0,77521
Goshen College,770,424,167,68,38,470,620,480,630,0,0,21,30,888,760,128,828,745,83,167,167,0,60,15,45,0,55,39,24500,25700,26900,28500,40760,40760,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,888,760,128,828,60,745,83,0,1,4,11,0,73,3,1,7,1,59,0,1,4,11,0,72,3,1,8,1,57,0,2,3,8,0,85,0,2,0,2,77,83,50,75,45,9,5,0,0,54,68,70,100,100,33,32,29,21,100,63,62,9,0,112373
Grace College and Theological Seminary,3450,2720,347,68,54,457,580,460,570,0,0,20,26,1904,1415,489,1615,1274,341,347,347,0,289,141,148,15,79,13,21700,22546,23290,23970,33940,33940,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1904,1416,488,1615,289,1274,341,0,1,4,2,0,67,2,19,3,2,55,0,1,3,3,0,70,2,20,0,1,59,1,2,4,1,0,54,2,18,18,2,37,0,0,0,0,0,0,0,0,54,61,61,100,100,42,42,33,28,100,74,74,6,0,5365
Hanover College,3174,2118,334,53,44,490,600,510,600,480,570,23,28,1159,1156,3,1159,1156,3,334,334,0,0,0,0,0,67,16,27500,28850,30268,31760,44150,44150,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1163,1158,5,1163,0,1158,5,0,1,4,2,0,82,2,2,5,1,57,0,1,4,2,0,82,2,2,5,1,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,71,72,100,100,36,36,1,30,100,82,70,26,0,120946
Holy Cross College,715,517,157,46,50,440,550,430,530,400,520,19,26,524,494,30,524,494,30,157,157,0,0,0,0,1,72,30,20700,22900,23900,25450,37484,37484,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,524,496,28,524,0,496,28,0,2,6,9,0,73,1,4,6,2,37,0,2,6,9,0,73,1,4,6,2,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,45,45,100,100,30,30,6,16,97,66,66,7,0,1504
Huntington University,784,763,227,68,64,440,570,440,560,423,550,21,27,1127,1013,114,1055,960,95,226,224,2,72,53,19,5,97,30,22330,23210,23780,24040,35520,35520,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1124,990,134,1053,71,960,93,0,0,2,3,0,89,1,0,4,1,58,0,0,2,3,0,88,1,0,4,1,57,0,0,0,1,0,97,1,0,0,0,62,0,0,0,0,0,0,0,0,57,61,62,99,97,36,36,5,29,97,80,78,15,0,19571
Indiana University-Purdue University-Fort Wayne,3702,3076,1660,91,36,440,540,450,550,430,520,19,24,13459,7537,5922,12928,7418,5510,1660,1577,83,531,119,412,320,83,54,6545,6708,6876,7013,23481,33313,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),13459,7537,5922,12928,531,7418,5510,0,2,5,5,0,82,3,1,2,3,55,0,2,5,5,0,82,3,1,2,2,55,1,4,5,3,0,80,1,1,6,4,60,1564,94,48,3,48,3,0,0,6,17,25,87,59,43,43,2,35,17,60,60,4,4586,0
Indiana University-Purdue University-Indianapolis,12230,8510,3796,84,41,440,550,450,570,430,540,19,25,30488,21097,9391,22409,16760,5649,3796,3503,293,8079,4337,3742,160,70,45,7885,8243,8605,8756,21680,42495,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (high research activity),30488,21097,9391,22409,8079,16760,5649,0,4,10,5,0,71,3,2,6,4,56,0,4,11,5,0,72,3,1,4,4,57,0,6,7,3,0,67,2,2,13,6,56,3569,94,112,3,113,3,1,0,15,34,42,85,63,40,40,18,36,37,54,53,3,26169,0
University of Indianapolis,5313,4486,830,82,53,450,550,460,560,440,540,19,25,5391,3642,1749,4126,3177,949,834,800,34,1265,465,800,93,84,19,22220,23010,23830,24660,38378,38378,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),5452,3609,1843,4162,1290,3169,993,0,1,9,3,0,71,2,6,7,1,69,0,1,11,3,0,69,2,6,7,1,67,0,2,5,2,0,77,2,6,7,2,76,707,85,80,10,44,5,3,0,45,55,57,98,98,37,37,21,38,98,76,75,13,0,16089
University of Southern Indiana,6204,4302,1709,65,50,440,550,450,560,430,530,19,24,9902,7513,2389,8913,7375,1538,1709,1688,21,989,138,851,80,69,40,5740,6032,6325,6698,19568,28423,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Midsize,Master's Colleges and Universities (larger programs),9902,7513,2389,8913,989,7375,1538,0,1,4,1,0,86,2,2,3,1,61,0,1,4,1,0,86,2,3,3,1,59,0,1,3,1,0,90,1,1,3,1,81,1544,90,151,9,14,1,0,0,15,31,37,88,63,36,36,3,29,36,63,62,6,3890,0
Indiana State University,11019,9152,2661,74,41,400,510,400,510,390,490,16,22,12448,10068,2380,10268,9131,1137,2661,2654,7,2180,937,1243,11,83,29,7714,7982,8098,8256,20619,30355,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Doctoral/Research Universities,12448,10068,2380,10268,2180,9131,1137,0,1,16,3,0,67,3,2,7,1,55,0,1,18,3,0,67,3,1,6,1,54,0,2,9,2,0,69,2,4,13,2,60,2181,82,374,14,106,4,0,0,22,37,42,92,82,53,53,16,40,72,68,68,4,3542,0
Indiana University-Kokomo,1066,784,508,85,20,430,520,420,520,410,510,18,23,4178,2063,2115,3981,2012,1969,508,461,47,197,51,146,29,74,65,6109,6323,6541,6675,0,0,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,4178,2063,2115,3981,197,2012,1969,0,1,4,4,0,83,2,5,1,1,64,0,1,4,4,0,83,2,5,0,1,64,1,1,2,2,0,70,1,7,18,1,57,506,100,0,0,2,0,0,0,7,20,28,82,58,43,43,13,35,25,47,47,0,2357,0
Indiana University-South Bend,2456,1720,921,83,16,430,530,430,530,400,500,18,23,8073,4083,3990,7512,3984,3528,921,835,86,561,99,462,45,70,54,6290,6507,6728,6816,19080,30042,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (medium programs),8073,4083,3990,7512,561,3984,3528,0,2,6,7,0,78,3,2,2,2,61,0,2,6,7,0,78,3,2,2,2,61,0,2,8,3,0,73,2,2,9,2,66,885,96,7,1,24,3,5,1,6,19,26,86,66,48,48,16,39,31,57,56,1,1979,0
Indiana University-Bloomington,37826,27300,7604,72,64,520,630,540,660,510,620,24,30,46817,37467,9350,36862,31050,5812,7604,7583,21,9955,6417,3538,20,72,28,9028,9524,10033,10209,23820,45961,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),46817,37467,9350,36862,9955,31050,5812,0,4,4,4,0,70,3,1,14,4,51,0,4,4,4,0,74,3,1,10,4,51,0,5,4,4,0,57,2,2,26,5,48,4368,57,2612,34,604,8,20,0,58,74,77,71,53,19,19,7,17,46,38,37,6,20689,0
Indiana University-Northwest,1773,1352,830,68,39,390,510,390,510,390,500,17,23,6387,3358,3029,5904,3221,2683,830,696,134,483,137,346,124,76,61,6193,6408,6626,6739,0,0,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (medium programs),6387,3358,3029,5904,483,3221,2683,0,2,19,16,0,53,2,8,0,2,67,0,2,17,16,0,53,2,9,0,2,66,0,2,38,10,0,46,0,3,0,2,71,817,98,10,1,2,0,1,0,8,19,24,79,58,44,44,14,28,19,51,51,0,1924,0
Indiana University-Southeast,2097,1666,1026,64,48,420,530,430,520,410,510,17,23,6733,3695,3038,6148,3665,2483,1026,909,117,585,30,555,81,79,62,6163,6365,6576,6700,19610,30688,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),6733,3695,3038,6148,585,3665,2483,0,1,6,3,0,86,2,1,0,2,59,0,1,6,3,0,86,2,1,0,2,58,0,1,8,1,0,86,1,1,1,2,64,799,78,221,22,5,0,1,0,9,23,30,80,57,45,45,11,33,22,45,45,1,2762,0
Indiana University-East,1219,656,404,67,46,410,520,410,510,400,490,18,23,4456,2009,2447,4326,1948,2378,404,386,18,130,61,69,0,54,62,6069,6280,6496,6639,0,0,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,4456,2009,2447,4326,130,1948,2378,0,1,3,2,0,89,2,2,1,1,65,0,1,3,2,0,89,2,2,1,1,65,0,0,7,2,0,88,1,1,2,0,77,320,79,82,20,2,0,0,0,9,20,24,91,74,57,57,8,42,45,52,52,0,1832,0
Manchester University,2195,1562,359,85,49,440,560,450,570,420,540,19,25,1338,1324,14,1188,1179,9,367,367,0,150,145,5,2,71,23,24920,25950,26746,27920,39742,39742,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1349,1327,22,1199,150,1182,17,0,4,5,5,0,81,3,1,2,4,54,0,1,4,5,0,84,3,0,2,1,53,1,23,15,3,0,54,2,3,0,23,61,0,0,0,0,0,0,0,0,40,48,48,100,100,37,37,5,36,100,97,96,17,0,33329
Marian University,2064,1196,338,80,60,460,550,460,570,0,0,19,25,2714,1863,851,2203,1679,524,336,334,2,511,184,327,47,58,28,24960,26000,27300,28400,41219,41219,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,2714,1863,851,2203,511,1679,524,0,2,13,4,0,74,2,4,0,2,63,0,1,13,4,0,75,2,4,0,1,64,0,6,14,5,0,67,2,6,0,6,61,293,87,43,13,0,0,0,0,28,49,52,99,99,42,42,42,37,99,83,83,10,0,11964
Indiana Wesleyan University,3441,3274,1437,63,69,470,580,480,590,460,570,21,27,14959,13380,1579,10766,9640,1126,1437,1400,37,4193,3740,453,795,95,44,21214,21956,23164,23628,34588,34588,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (larger programs),14959,13321,1638,10766,4193,9581,1185,0,1,19,3,0,74,1,0,0,1,66,0,1,17,3,0,76,2,1,0,1,67,0,2,23,4,0,69,1,0,1,2,65,0,0,0,0,0,0,0,0,55,69,71,80,73,43,43,11,11,42,71,71,6,0,7844
Martin University,0,0,0,0,0,0,0,0,0,0,0,0,0,521,224,297,466,200,266,61,29,32,55,24,31,0,0,0,13520,13520,14180,11960,0,0,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,506,215,291,452,54,192,260,1,0,93,1,0,4,2,0,0,0,69,1,0,94,1,0,3,1,0,0,0,68,2,0,85,2,0,7,4,0,0,0,74,0,0,0,0,0,0,0,0,9,9,12,96,93,93,93,0,14,0,96,96,0,0,0
University of Notre Dame,17647,3936,2070,44,56,660,750,680,770,0,0,32,34,12089,11550,539,8455,8365,90,2068,2068,0,3634,3185,449,0,22,53,39919,41417,42971,44605,60117,60117,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Research Universities (very high research activity),12124,11908,216,8477,3647,8459,18,0,5,3,9,0,66,4,5,9,5,45,0,6,4,10,0,71,4,1,4,6,47,0,3,2,6,0,52,3,14,19,3,40,124,6,1835,89,111,5,0,0,90,94,95,69,58,11,11,10,1,58,39,38,4,0,545295
Oakland City University,652,475,108,56,48,430,530,440,540,410,520,19,24,2368,572,1796,2259,542,1717,108,105,3,109,30,79,41,73,23,15990,16640,18600,19200,30800,30800,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (medium programs),2418,494,1924,2311,107,461,1850,0,0,2,2,0,88,1,4,2,1,60,1,0,2,2,0,88,1,4,2,1,61,0,0,11,1,1,82,1,3,1,1,49,0,0,0,0,0,0,0,0,41,48,53,100,100,53,53,19,42,90,62,62,5,0,3256
Purdue University-Calumet Campus,2591,1571,827,68,91,440,540,430,540,0,0,0,0,9422,5168,4254,8390,4836,3554,827,792,35,1032,332,700,60,61,53,6181,6336,6494,6624,21221,29563,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),9422,5168,4254,8390,1032,4836,3554,0,2,12,15,0,53,1,8,7,2,57,0,2,13,16,0,53,2,9,6,2,57,0,2,11,9,0,54,1,4,18,2,59,690,83,97,12,40,5,0,0,9,23,30,66,58,44,44,8,26,21,48,48,1,1898,0
Purdue University-North Central Campus,1639,1183,653,70,24,430,520,430,530,410,510,17,23,6102,2732,3370,6054,2732,3322,653,611,42,48,0,48,107,72,55,6704,6872,7045,7186,0,0,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,6102,2732,3370,6054,48,2732,3322,0,2,5,10,0,80,2,0,1,2,60,0,2,5,10,0,80,2,0,1,2,60,0,2,4,4,0,85,0,0,4,2,42,643,98,10,2,0,0,0,0,8,17,22,82,50,46,46,6,32,8,57,57,1,973,0
University of Saint Francis-Fort Wayne,1908,1023,388,77,52,440,530,450,530,430,520,19,23,2381,1815,566,1980,1616,364,388,385,3,401,199,202,182,54,38,22810,23950,24440,25180,36492,36492,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (smaller programs),2381,1815,566,1980,401,1616,364,0,1,6,6,0,82,2,2,1,1,71,0,1,6,6,0,82,2,2,0,1,71,0,1,7,4,0,83,1,2,1,1,70,335,86,53,14,0,0,0,0,33,50,51,100,100,42,42,11,41,100,83,81,15,0,8224
Saint Josephs College,1639,1052,273,49,52,430,540,460,540,0,0,19,24,1114,1041,73,1087,1036,51,266,266,0,27,5,22,3,64,26,25260,26330,27350,27350,38050,38050,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1163,1039,124,1141,22,1036,105,1,0,9,5,0,80,2,3,1,0,58,1,0,9,5,0,80,2,3,1,0,59,0,0,14,5,0,73,0,5,5,0,36,176,59,99,33,0,0,21,7,36,43,44,100,100,41,41,41,28,100,78,78,6,0,21160
Saint Mary-of-the-Woods College,325,317,64,69,31,390,520,390,500,400,510,15,22,887,548,339,706,386,320,64,61,3,181,162,19,5,98,20,24500,27622,27672,27672,42362,42362,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,887,548,339,649,238,384,265,1,1,4,1,0,81,0,9,2,1,95,1,0,4,1,0,83,0,8,3,0,97,0,3,5,3,0,76,0,13,0,3,92,0,0,0,0,0,0,0,0,49,60,60,100,100,51,51,42,45,100,81,77,4,0,15698
Saint Mary's College,1529,1310,437,45,77,500,610,490,600,500,600,23,28,1479,1469,10,1479,1469,10,437,437,0,0,0,0,0,86,33,31020,32000,33280,34600,47660,47660,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1479,1469,10,1479,0,1469,10,0,1,1,12,0,77,3,4,2,1,100,0,1,1,12,0,77,3,4,2,1,100,0,0,0,0,0,0,0,0,0,0,0,99,23,330,76,7,2,1,0,67,70,71,98,98,21,21,12,8,97,59,59,6,0,87994
Taylor University,1637,1434,459,41,59,520,660,510,650,500,620,24,31,2245,1929,316,2145,1852,293,459,459,0,100,77,23,4,88,32,26383,27438,28088,28753,39742,39742,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,2245,1929,316,2146,99,1852,294,0,3,2,3,0,86,1,0,4,3,55,0,3,2,3,0,86,1,0,5,3,55,0,1,1,2,0,93,2,0,1,1,60,173,38,267,58,19,4,1,0,65,74,74,99,99,24,24,5,13,99,57,57,5,0,31921
Trine University,2867,2052,421,40,60,470,570,500,620,0,0,21,27,1876,1430,446,1875,1429,446,372,372,0,1,1,0,1,72,21,25400,26730,27790,28850,45250,45250,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1875,1430,445,1874,1,1429,445,0,0,2,3,0,71,2,18,4,0,35,0,0,2,3,0,71,2,18,4,0,35,0,0,0,0,0,0,0,0,100,0,0,214,58,156,42,2,1,0,0,33,50,51,100,100,32,31,3,22,97,84,84,18,0,10985
Valparaiso University,6124,4880,876,41,73,500,590,510,620,480,580,23,29,4508,4062,446,3251,3136,115,876,876,0,1257,926,331,2,80,18,29582,31040,32250,33480,45860,45860,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),4508,4062,446,3251,1257,3136,115,0,2,6,7,0,68,2,2,12,2,52,0,2,5,7,0,74,2,1,9,2,52,0,3,10,8,0,51,2,5,22,3,54,0,0,0,0,0,0,0,0,58,69,70,92,92,26,26,26,14,92,57,56,7,0,42568
Wabash College,0,0,0,0,0,0,0,0,0,0,0,0,0,902,902,0,902,902,0,241,241,0,0,0,0,0,0,0,31050,32450,33950,35650,46660,46660,Indiana,Indiana,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,902,902,0,902,0,902,0,0,3,6,6,0,76,3,1,5,3,0,0,3,6,6,0,76,3,1,5,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,68,69,95,94,29,29,0,22,94,73,68,54,0,382150
Briar Cliff University,0,0,0,0,0,0,0,0,0,0,0,0,0,1174,881,293,1042,848,194,180,180,0,132,33,99,2,0,0,23418,24694,25642,26650,38726,38726,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,1174,881,293,1042,132,848,194,1,2,6,8,0,79,1,0,4,2,59,1,2,6,9,0,77,1,0,4,2,57,0,1,3,2,0,95,0,0,0,1,70,77,43,96,53,7,4,0,0,40,45,45,97,97,45,45,21,24,97,89,89,13,0,10169
Buena Vista University,1409,980,269,3,97,0,0,0,0,0,0,20,25,2399,1960,439,2293,1960,333,269,269,0,106,0,106,0,70,27,26306,27226,28314,29448,40589,40589,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,2399,1960,439,2293,106,1960,333,0,1,2,5,0,82,1,7,2,1,66,0,1,2,5,0,82,1,6,2,1,66,0,2,0,2,0,67,0,29,0,2,86,198,74,61,23,10,4,0,0,43,52,53,98,98,41,41,39,50,98,92,90,35,0,48494
Central College,2842,1870,309,4,97,470,580,450,620,0,0,21,26,1386,1340,46,1386,1340,46,309,309,0,0,0,0,0,66,17,26242,27844,29540,30700,45151,45151,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1386,1340,46,1386,0,1340,46,0,1,2,3,0,86,3,4,1,1,53,0,1,2,3,0,86,3,4,1,1,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,65,65,100,100,37,30,37,47,100,80,80,15,0,47002
Clarke University,1250,969,181,6,96,470,530,475,550,0,0,20,25,1225,1014,211,1011,877,134,181,181,0,214,137,77,3,78,19,24610,25760,26950,28000,40800,40800,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,1225,1014,211,1011,214,877,134,1,1,3,3,0,86,0,5,1,1,67,1,1,3,3,0,86,0,4,1,1,66,0,1,1,1,0,86,0,10,0,1,73,0,0,0,0,0,0,0,0,59,68,70,99,99,34,34,11,38,99,85,85,26,0,28657
Coe College,2972,1834,390,9,94,493,693,495,670,458,660,23,28,1420,1351,69,1420,1351,69,390,389,1,0,0,0,0,62,21,30860,32380,34220,35730,47260,47260,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,1419,1351,68,1419,0,1351,68,0,2,4,5,0,76,3,5,4,2,54,0,2,4,5,0,76,3,5,4,2,54,0,0,0,0,0,0,0,0,0,0,0,182,47,205,53,0,0,3,1,61,66,67,100,99,34,33,28,32,99,80,79,17,0,61730
Cornell College,2204,1413,261,32,83,520,670,510,650,510,630,23,29,1122,1114,8,1122,1114,8,270,270,0,0,0,0,0,64,18,31050,32920,34705,36430,48905,48905,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,1125,1117,8,1125,0,1117,8,1,3,5,13,0,65,3,4,6,3,55,1,3,5,13,0,65,3,4,6,3,55,0,0,0,0,0,0,0,0,0,0,0,41,15,218,81,9,3,2,1,64,66,68,96,96,38,37,37,9,96,71,71,6,0,52507
Dordt College,1355,1022,381,21,88,450,610,500,630,470,590,21,28,1430,1345,85,1376,1345,31,381,380,1,54,0,54,15,75,37,23180,24300,25520,26540,38800,38800,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,1430,1345,85,1376,54,1345,31,0,1,2,2,3,82,0,2,9,4,46,0,1,2,2,3,83,0,1,9,4,46,0,0,0,2,2,50,0,43,4,2,54,133,35,209,55,36,9,1,0,54,61,62,100,100,34,34,19,28,100,78,70,51,0,20267
Drake University,5930,3911,850,10,96,530,640,540,680,0,0,25,30,5139,4120,1019,3383,3185,198,850,850,0,1756,935,821,0,66,22,26960,28382,29556,30889,44349,44349,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),5139,4120,1019,3383,1756,3185,198,0,4,3,3,0,82,1,1,5,4,58,0,5,3,3,0,79,1,1,7,5,56,0,4,3,2,0,87,1,1,2,4,62,216,25,611,72,0,0,23,3,61,69,70,99,99,17,16,16,10,99,57,57,9,0,36792
University of Dubuque,1457,1128,447,15,87,410,490,390,520,0,0,17,22,2024,1755,269,1695,1545,150,445,443,2,329,210,119,0,77,40,21590,22620,24530,25520,35530,35530,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (smaller programs),2023,1754,269,1694,329,1544,150,1,1,11,6,0,64,2,13,1,1,44,1,1,12,7,0,67,3,8,1,1,43,0,1,4,2,0,54,0,39,0,1,48,0,0,0,0,0,0,0,0,29,44,47,94,93,53,52,23,23,89,81,81,27,0,40904
Graceland University-Lamoni,1981,994,326,25,75,390,520,373,530,0,0,18,24,2283,1647,636,1559,1293,266,326,326,0,724,354,370,0,50,33,20980,21790,22680,23530,35380,35380,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Remote,Master's Colleges and Universities (larger programs),2286,1650,636,1559,727,1293,266,1,1,8,6,1,70,3,6,4,2,67,1,1,9,7,1,67,4,5,6,2,57,2,2,6,3,0,78,2,8,1,2,89,67,21,243,75,16,5,0,0,30,44,47,100,100,45,45,26,18,100,83,81,10,0,26227
Grand View University,807,770,298,8,94,380,450,400,480,360,440,19,23,2129,1728,401,2096,1728,368,298,298,0,33,0,33,1,95,39,20222,21018,21826,22628,33616,33616,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,2129,1728,401,2096,33,1728,368,0,3,7,3,0,74,3,8,2,3,58,0,3,8,3,0,73,3,8,2,3,58,0,3,3,0,0,91,0,3,0,3,67,0,0,0,0,0,0,0,0,28,44,48,100,100,42,42,29,50,99,81,80,13,0,9039
Grinnell College,3979,1395,423,49,51,620,730,630,770,0,0,28,32,1721,1664,57,1721,1664,57,423,423,0,0,0,0,0,35,30,37482,39810,41004,43656,56354,56354,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,1721,1664,57,1721,0,1664,57,0,7,6,8,0,57,4,5,12,7,54,0,7,6,8,0,57,4,5,12,7,54,0,0,0,0,0,0,0,0,0,0,0,44,10,314,74,65,15,0,0,81,85,86,90,87,22,22,3,4,87,42,36,11,0,950232
Iowa State University,16539,13648,5366,8,93,460,620,530,680,0,0,22,28,32955,29393,3562,27659,26171,1488,6089,6061,28,5296,3222,2074,0,83,39,6997,7486,7726,7726,18920,31472,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),32955,29398,3557,27659,5296,26177,1482,0,3,2,4,0,73,2,4,12,3,44,0,3,3,4,0,77,2,4,8,3,43,0,2,2,3,0,56,1,5,31,2,47,3540,58,2173,36,361,6,15,0,38,63,68,88,76,22,21,7,2,75,55,54,8,20907,0
Iowa Wesleyan College,1319,793,103,6,95,453,468,420,508,403,445,19,24,599,482,117,599,482,117,103,102,1,0,0,0,0,60,13,22050,23160,24300,25550,38738,38738,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,599,482,117,599,0,482,117,1,1,6,5,0,65,2,14,6,1,64,1,1,6,5,0,65,2,14,6,1,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,29,30,100,100,59,59,30,25,100,98,98,9,0,23402
University of Iowa,21642,17363,4460,10,86,540,620,620,680,0,0,25,28,29748,24295,5453,21974,19522,2452,4460,4270,190,7774,4773,3001,0,80,26,7417,7765,8057,8061,20691,39561,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),29748,24295,5453,21974,7774,19522,2452,0,3,3,5,0,70,2,5,12,3,52,0,3,3,6,0,71,2,4,10,3,52,0,4,3,4,0,65,1,7,15,4,51,2133,48,1824,41,503,11,0,0,48,67,70,83,71,20,20,4,2,55,50,49,6,38901,0
Loras College,1873,1293,414,2,98,435,575,393,560,0,0,21,26,1621,1500,121,1554,1484,70,414,414,0,67,16,51,2,69,32,26275,27258,28141,28852,39077,39077,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,1621,1500,121,1554,67,1484,70,0,1,2,6,0,81,1,6,2,1,49,0,1,2,6,0,82,1,5,2,1,48,0,0,1,3,0,79,0,16,0,0,67,131,32,280,68,3,1,0,0,48,60,61,100,100,26,25,26,17,96,78,78,12,0,15625
Luther College,3490,2517,628,11,91,433,610,500,638,460,580,23,29,2466,2413,53,2466,2413,53,628,627,1,0,0,0,0,72,25,33480,34885,36100,37530,48435,48435,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,2466,2413,53,2466,0,2413,53,0,2,2,3,0,85,2,1,6,2,57,0,2,2,3,0,85,2,1,6,2,57,0,0,0,0,0,0,0,0,0,0,0,181,29,409,65,38,6,0,0,67,75,76,100,100,18,18,18,12,100,68,68,9,0,48610
Maharishi University of Management,74,31,19,0,0,0,0,0,0,0,0,0,0,1136,832,304,319,304,15,19,18,1,817,528,289,0,42,61,24430,24430,26430,26430,38630,38630,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Master's Colleges and Universities (larger programs),1136,832,304,319,817,304,15,0,2,9,5,0,21,2,2,60,2,31,1,3,10,13,0,52,5,3,12,3,46,0,1,8,1,0,9,1,1,78,1,25,0,0,0,0,0,0,0,0,24,27,32,97,97,68,68,62,12,97,62,62,0,0,8751
Morningside College,3721,1986,367,0,100,0,0,0,0,0,0,20,25,2542,1263,1279,1305,1263,42,357,357,0,1237,0,1237,0,53,18,22980,24050,25000,25990,38308,38308,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,2542,1275,1267,1305,1237,1263,42,0,0,1,3,0,82,1,12,1,1,67,0,1,1,5,0,83,2,5,2,1,53,0,0,0,1,0,80,0,18,0,0,82,210,59,146,41,1,0,0,0,48,57,58,100,100,46,40,22,43,100,83,82,24,0,24937
Mount Mercy University,542,371,154,0,100,0,0,0,0,0,0,20,23,1761,993,768,1476,880,596,154,154,0,285,113,172,0,68,42,23260,24360,25400,26310,39075,39075,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,1761,995,766,1476,285,882,594,1,2,4,2,0,84,1,4,3,2,69,0,2,4,2,0,84,1,5,3,2,69,1,2,6,2,0,85,0,2,2,2,69,0,0,0,0,0,0,0,0,66,73,73,85,85,27,26,12,48,85,66,66,14,0,16789
University of Northern Iowa,4068,3389,1722,2,94,0,0,500,640,0,0,20,24,12159,9968,2191,10380,9330,1050,1722,1689,33,1779,638,1141,0,83,51,7008,7350,7635,7685,19880,29376,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),12159,9968,2191,10380,1779,9330,1050,0,1,3,3,0,86,1,2,4,1,59,0,1,3,3,0,86,2,2,4,1,57,0,1,3,2,0,81,1,4,7,1,69,1559,91,144,8,19,1,0,0,37,62,66,87,63,30,25,10,6,59,59,59,3,7364,0
Northwestern College,1221,929,284,17,91,423,605,470,580,420,560,21,27,1227,1133,94,1227,1133,94,284,284,0,0,0,0,0,76,31,23330,24630,25740,26764,39236,39236,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1233,1133,100,1233,0,1133,100,0,1,2,6,0,84,2,2,3,1,57,0,1,2,6,0,84,2,2,3,1,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,62,63,100,100,37,35,28,34,100,70,70,22,0,35950
Saint Ambrose University,2897,2786,562,0,97,0,0,0,0,0,0,20,25,3607,2832,775,2743,2440,303,562,561,1,864,392,472,0,96,20,23910,24920,25970,26740,40146,40146,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),3607,2832,775,2743,864,2440,303,0,1,3,6,0,81,2,5,2,1,60,0,1,4,6,0,82,2,4,2,1,59,0,2,2,4,0,80,0,9,2,2,63,170,30,381,68,11,2,0,0,47,59,61,100,100,25,25,10,19,100,93,93,18,0,37468
Simpson College,1302,1146,377,5,99,0,0,0,0,0,0,21,27,1773,1500,273,1712,1486,226,377,373,4,61,14,47,0,88,33,26837,28123,29529,30999,43350,43350,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,1773,1500,273,1712,61,1486,226,1,1,2,2,0,87,2,5,1,1,57,1,1,2,2,0,87,2,4,1,1,56,0,0,0,0,0,64,2,34,0,0,69,307,81,68,18,0,0,2,1,55,62,65,100,100,35,33,13,51,100,79,79,20,0,40815
Upper Iowa University,1229,715,218,1,91,0,0,0,0,0,0,19,24,5304,3651,1653,4632,2981,1651,239,239,0,672,670,2,141,58,30,22350,23356,24400,24400,35910,35910,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Remote,Master's Colleges and Universities (medium programs),5304,3651,1653,4632,672,2981,1651,0,1,18,4,0,69,1,5,2,1,61,0,1,19,4,0,67,1,5,2,1,60,1,2,9,3,0,79,1,4,1,2,71,0,0,0,0,0,0,0,0,24,34,40,85,85,36,36,18,34,80,84,84,5,0,1934
Wartburg College,2268,1761,451,11,87,380,540,440,590,380,520,21,26,1714,1643,71,1714,1643,71,451,451,0,0,0,0,0,78,26,29020,30960,32740,34250,45305,45305,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1714,1643,71,1714,0,1643,71,0,1,6,2,0,78,2,1,9,1,53,0,1,6,2,0,78,2,1,9,1,53,0,0,0,0,0,0,0,0,0,0,0,276,61,113,25,62,14,0,0,59,62,63,99,98,28,27,27,34,97,71,71,9,0,29408
William Penn University,836,482,264,17,86,380,500,380,550,0,0,17,22,1875,1655,220,1728,1536,192,264,264,0,147,119,28,91,58,55,20234,21720,23210,23210,33706,33706,Iowa,Iowa,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,1875,1655,220,1728,147,1536,192,0,1,13,7,0,70,3,3,3,2,51,0,1,14,7,0,69,1,4,3,2,50,1,0,6,4,1,71,16,1,0,1,67,0,0,0,0,0,0,0,0,17,30,34,100,99,57,55,57,31,94,95,95,68,0,4240
Baker University,870,756,235,9,100,440,545,490,600,410,555,21,26,3076,1315,1761,1897,1069,828,235,235,0,1179,246,933,110,87,31,22280,23390,24550,25580,39407,39407,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Master's Colleges and Universities (larger programs),3076,1315,1761,1897,1179,1069,828,2,1,9,4,0,75,1,6,0,2,60,2,1,10,5,0,73,1,7,0,2,57,2,1,8,4,0,79,1,5,0,1,64,159,68,72,31,4,2,0,0,36,49,52,100,100,26,26,24,35,100,73,73,9,0,12531
Benedictine College,3515,2129,494,14,84,515,655,485,630,0,0,22,28,2177,1796,381,2113,1750,363,494,494,0,64,46,18,0,61,23,20475,21475,22800,23900,37855,37855,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,2177,1796,381,2113,64,1750,363,0,1,3,6,0,81,3,3,3,1,52,0,1,3,6,0,81,3,2,3,1,52,0,2,2,6,0,63,5,22,2,2,50,135,27,348,70,10,2,1,0,43,58,59,100,100,25,25,20,16,100,68,68,7,0,8865
Bethany College,1139,670,184,29,77,390,510,430,510,380,470,18,23,665,603,62,665,603,62,184,184,0,0,0,0,0,59,27,20026,21677,22624,23305,35205,35205,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,665,603,62,665,0,603,62,1,1,12,11,0,64,4,7,0,1,40,1,1,12,11,0,64,4,7,0,1,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,38,39,98,98,45,45,21,34,98,82,82,6,0,42514
Bethel College-North Newton,854,550,123,24,76,390,520,420,580,380,510,19,26,482,464,18,482,464,18,123,123,0,0,0,0,0,64,22,20700,21700,22600,23500,35170,35170,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,482,464,18,482,0,464,18,1,1,13,10,0,71,3,0,2,1,51,1,1,13,10,0,71,3,0,2,1,51,0,0,0,0,0,0,0,0,0,0,0,58,47,63,51,2,2,0,0,39,48,53,100,97,48,48,46,34,97,71,71,3,0,34551
Central Christian College of Kansas,662,334,131,30,66,390,490,440,530,0,0,18,24,951,662,289,951,662,289,131,131,0,0,0,0,15,50,39,18000,18400,19050,14800,24500,24500,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,1037,741,296,1037,0,741,296,1,1,14,7,1,64,1,10,2,2,49,1,1,14,7,1,64,1,10,2,2,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,39,40,93,93,57,57,30,10,68,74,74,5,0,8289
Donnelly College,0,0,0,0,0,0,0,0,0,0,0,0,0,474,269,205,474,269,205,135,105,30,0,0,0,30,0,0,5528,6032,6579,6579,16833,16833,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate/Associate's Colleges,474,271,203,474,0,271,203,1,7,30,42,0,11,3,1,6,7,69,1,7,30,42,0,11,3,1,6,7,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,92,60,60,22,35,65,8,8,0,0,22002
Emporia State University,2452,1488,696,1,84,438,528,475,545,0,0,19,25,6033,3787,2246,3873,3445,428,696,668,28,2160,342,1818,0,61,47,4636,4952,5272,5614,17257,29031,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),6033,3787,2246,3873,2160,3445,428,0,1,4,5,0,74,4,3,9,1,63,0,1,5,6,0,71,5,2,9,1,60,0,1,3,4,0,78,2,5,7,1,67,611,88,47,7,0,0,38,5,20,35,41,96,87,41,41,19,22,70,75,75,4,13591,0
Fort Hays State University,2511,2239,1063,0,84,0,0,0,0,0,0,18,24,13441,5999,7442,11433,5449,5984,1063,981,82,2008,550,1458,81,89,47,3942,4082,4320,4358,16410,24873,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),13441,5999,7442,11433,2008,5449,5984,0,1,4,5,0,59,2,1,28,1,59,0,1,4,5,0,56,2,1,31,1,59,0,1,4,6,0,74,2,3,10,1,62,747,70,308,29,7,1,1,0,19,39,44,97,89,44,44,2,14,70,68,67,6,6213,0
Friends University,737,432,184,14,80,350,490,420,548,0,0,18,24,2178,1206,972,1609,1045,564,184,178,6,569,161,408,33,59,43,20040,21030,22500,23430,36005,36005,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),2178,1206,972,1609,569,1045,564,2,3,10,4,0,71,6,4,0,3,58,2,2,10,4,0,72,6,4,0,3,56,1,5,12,3,0,68,6,4,0,5,65,0,0,0,0,0,0,0,0,13,32,32,100,99,44,44,25,49,97,77,77,2,0,22079
University of Kansas,12389,11433,3771,0,98,0,0,0,0,0,0,22,28,26968,23017,3951,19217,17193,2024,4000,3898,102,7751,5824,1927,0,92,33,8733,9222,9678,10107,22277,37043,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),26968,23034,3934,19217,7751,17193,2024,1,4,4,5,0,72,4,2,9,4,51,1,4,4,6,0,74,4,1,7,4,50,1,4,3,3,0,67,2,5,14,4,55,2567,64,1311,33,117,3,5,0,36,56,62,79,63,22,22,8,13,54,47,47,7,52414,0
Newman University,2348,1050,165,8,90,460,610,420,530,430,560,20,27,3736,1275,2461,2795,1121,1674,165,164,1,941,154,787,63,45,16,20712,21716,22238,23650,34408,34408,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),3736,1275,2461,2795,941,1121,1674,1,5,4,10,0,74,2,1,2,5,66,1,5,4,11,0,73,3,1,3,5,62,2,3,5,6,0,80,1,3,1,3,77,0,0,0,0,0,0,0,0,33,46,50,99,99,34,34,10,32,98,57,57,3,0,10298
Kansas State University,9839,9437,3821,0,0,0,0,0,0,0,0,0,0,24581,20549,4032,20169,18110,2059,3821,3755,66,4412,2439,1973,44,96,40,7376,7657,8047,8585,21331,34276,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),24581,20549,4032,20169,4412,18110,2059,0,1,4,5,0,76,3,2,9,2,49,0,1,4,6,0,77,3,2,7,1,48,0,2,4,4,0,69,2,3,17,3,56,3027,79,678,18,115,3,1,0,26,53,60,83,72,24,24,8,14,63,52,52,3,16992,0
Kansas Wesleyan University,689,370,151,22,76,420,510,470,520,0,0,20,24,729,624,105,684,624,60,151,151,0,45,0,45,1,54,41,20200,21400,22600,23800,36400,36400,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,729,624,105,684,45,624,60,1,1,7,13,0,71,2,1,4,1,54,1,1,7,13,0,73,2,0,3,1,54,0,0,4,11,0,56,0,16,13,0,56,77,51,69,46,5,3,0,0,31,39,43,99,99,33,33,4,21,99,77,77,14,0,34444
McPherson College,642,556,170,14,87,475,540,500,560,0,0,19,24,656,603,53,637,602,35,170,170,0,19,1,18,0,87,31,19625,20600,21810,22891,35477,35477,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,656,603,53,637,19,602,35,0,1,14,8,0,72,3,0,2,1,42,0,1,14,9,0,71,3,0,2,1,41,0,0,0,0,0,100,0,0,0,0,79,92,54,77,45,1,1,0,0,43,48,49,95,95,45,44,30,38,95,83,82,13,0,54442
MidAmerica Nazarene University,1012,731,198,7,93,420,540,420,510,0,0,19,21,1862,1491,371,1393,1131,262,202,198,4,469,360,109,19,72,27,20250,21500,21500,22290,33687,33687,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),1907,1491,416,1438,469,1131,307,1,2,11,4,0,68,1,13,0,2,65,1,2,11,5,0,66,1,14,0,2,61,0,1,10,3,0,75,0,9,0,1,77,0,0,0,0,0,0,0,0,41,55,55,99,97,43,43,22,19,95,76,76,6,0,3655
Ottawa University-Ottawa,267,264,145,11,93,390,530,400,550,350,470,19,25,561,523,38,541,522,19,145,144,1,20,1,19,0,99,55,20400,21680,23000,23964,36482,36482,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,558,523,35,538,20,522,16,5,1,11,6,0,66,0,12,0,1,44,5,1,10,6,0,66,0,12,0,1,44,0,0,20,0,0,75,0,5,0,0,50,88,61,56,39,1,1,0,0,22,30,34,100,100,37,37,36,36,100,79,79,1,0,5926
Ottawa University-Kansas City,0,0,0,0,0,0,0,0,0,0,0,0,0,360,4,356,287,3,284,4,0,4,73,1,72,0,0,0,0,0,0,0,0,0,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,356,0,356,292,64,0,292,1,3,8,3,0,79,1,6,0,3,72,0,2,8,3,0,79,1,6,0,2,72,5,5,5,5,0,77,0,5,0,5,73,3,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2018
Pittsburg State University,3073,2427,1144,0,97,0,0,0,0,0,0,19,24,7400,6176,1224,6236,5763,473,1144,1128,16,1164,413,751,31,79,47,4848,5162,5494,5906,17296,27176,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (larger programs),7400,6006,1394,6236,1164,5625,611,2,1,4,4,0,79,4,0,6,1,51,2,1,4,5,0,80,4,0,5,1,48,2,1,2,2,0,76,4,0,12,1,63,789,69,346,30,0,0,9,1,24,41,49,91,77,40,39,10,17,54,63,63,3,10809,0
University of Saint Mary,767,361,109,34,80,410,500,440,520,0,0,19,24,1325,914,411,890,566,324,104,104,0,435,348,87,1,47,30,19960,20770,21980,23170,34536,34536,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Master's Colleges and Universities (medium programs),1325,914,411,890,435,566,324,1,2,10,6,0,58,2,20,0,2,65,1,2,10,7,0,61,2,16,1,2,65,0,3,10,5,0,52,0,30,0,3,66,0,0,0,0,0,0,0,0,44,53,53,100,100,58,40,18,27,99,94,81,13,0,11456
Southwestern College,436,391,128,18,79,398,548,458,548,380,485,20,25,1661,574,1087,1358,553,805,128,128,0,303,21,282,0,90,33,20656,21680,22756,23886,37632,37632,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (medium programs),1661,574,1087,1358,303,553,805,1,1,9,8,0,62,4,12,3,1,46,2,1,10,8,0,60,4,13,3,1,43,1,1,6,6,0,69,4,9,5,1,57,52,41,65,51,11,9,0,0,42,51,53,100,100,43,43,14,37,100,80,80,5,0,14161
Sterling College,883,389,169,19,76,460,540,410,500,490,540,19,25,690,595,95,690,595,95,169,169,0,0,0,0,0,44,43,19000,20150,21200,21200,30652,30652,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate Colleges--Diverse Fields,690,595,95,690,0,595,95,1,0,9,9,1,72,0,7,0,1,46,1,0,9,9,1,72,0,7,0,1,46,0,0,0,0,0,0,0,0,0,0,0,93,55,76,45,0,0,0,0,30,39,42,100,100,42,41,6,27,100,80,80,6,0,26174
Tabor College,517,380,159,27,83,400,510,420,530,0,0,18,27,736,565,171,725,565,160,159,159,0,11,0,11,0,74,42,20630,21740,21740,22730,36750,36750,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,736,565,171,725,11,565,160,1,1,8,11,0,68,3,7,2,1,48,1,1,8,11,0,68,3,7,2,1,48,9,0,9,0,0,64,0,18,0,0,9,0,0,0,0,0,0,0,0,45,54,54,100,100,46,43,40,24,100,79,79,8,0,10922
Washburn University,0,0,0,0,0,0,0,0,0,0,0,0,0,6973,4562,2411,6179,4072,2107,851,779,72,794,490,304,139,0,0,5054,5270,5486,5774,17403,24555,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (medium programs),6973,4562,2411,6179,794,4072,2107,1,1,5,6,0,63,3,17,3,1,59,1,1,5,7,0,62,3,18,3,1,59,0,2,4,4,0,72,2,13,2,2,58,774,91,54,6,11,1,12,1,17,31,37,92,81,42,42,11,16,59,60,60,2,27531,0
Wichita State University,3492,3344,1412,6,86,460,590,477,622,0,0,21,26,13971,9943,4028,11208,8566,2642,1326,1261,65,2763,1377,1386,52,96,42,5890,6155,6442,6926,17397,25431,Kansas,Kansas,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (high research activity),14386,10184,4202,11670,2716,8807,2863,1,6,6,8,0,63,2,4,11,6,52,1,7,6,9,0,64,2,4,7,7,52,0,4,5,4,0,57,2,4,25,4,51,1128,88,74,6,0,0,81,6,22,39,46,89,89,39,39,7,21,64,46,46,1,17845,0
Alice Lloyd College,3656,1646,189,2,98,470,500,450,540,410,560,18,24,631,606,25,631,606,25,189,189,0,0,0,0,0,45,11,9500,9600,10100,10620,21800,21800,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Remote,Baccalaureate Colleges--Diverse Fields,631,606,25,631,0,606,25,0,0,1,1,0,96,0,1,0,0,54,0,0,1,1,0,96,0,1,0,0,54,0,0,0,0,0,0,0,0,0,0,0,136,72,52,28,1,1,0,0,21,31,32,100,100,65,65,10,76,73,72,71,4,0,55979
Asbury University,1211,796,322,32,83,500,620,508,620,0,0,21,27,1782,1385,397,1532,1326,206,322,322,0,250,59,191,3,66,40,23303,24229,25311,26076,35494,35494,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,1797,1390,407,1547,250,1326,221,0,1,4,2,0,83,4,4,2,1,63,0,1,3,2,0,84,4,4,2,1,60,0,0,10,4,0,78,0,6,1,0,78,162,50,149,46,0,0,11,3,56,63,64,99,97,53,48,27,57,94,90,89,12,0,23245
Bellarmine University,4160,3943,676,24,92,490,590,490,590,0,0,22,27,3419,2682,737,2593,2378,215,676,674,2,826,304,522,0,95,17,30310,32140,33270,34890,52574,52574,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),3419,2682,737,2593,826,2378,215,0,2,4,3,0,84,2,3,2,2,65,0,2,4,3,0,83,2,2,2,2,64,0,1,6,2,0,85,1,5,0,1,70,419,62,253,37,4,1,0,0,53,65,66,100,100,27,27,25,63,100,65,65,9,0,13239
Berea College,1620,551,397,15,80,510,630,513,610,483,610,22,26,1623,1587,36,1623,1587,36,397,397,0,0,0,0,0,34,72,910,910,21880,23170,31870,31870,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1623,1587,36,1623,0,1587,36,0,2,15,4,0,64,5,2,8,2,57,0,2,15,4,0,64,5,2,8,2,57,0,0,0,0,0,0,0,0,0,0,0,165,42,203,51,29,7,0,0,47,60,62,100,100,91,91,4,40,100,30,19,10,0,623784
Brescia University,3582,1612,150,9,83,0,0,460,550,0,0,19,24,949,695,254,932,688,244,151,151,0,17,7,10,5,45,9,17590,18340,19140,19640,30390,30390,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,949,695,254,928,21,688,240,0,1,11,6,0,67,0,13,1,1,72,0,1,11,6,0,67,0,13,1,1,72,0,0,0,5,0,76,0,19,0,0,62,0,0,0,0,0,0,0,0,16,29,30,100,99,51,45,33,79,97,93,91,7,0,16159
Campbellsville University,2649,1813,525,7,93,420,505,400,525,400,520,18,24,3546,2072,1474,3093,1998,1095,532,521,11,453,74,379,55,68,29,19710,20740,21600,22196,33628,33628,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Master's Colleges and Universities (medium programs),3520,2195,1325,3048,472,1982,1066,0,0,11,1,0,78,1,2,6,0,59,0,0,10,1,0,79,1,2,6,0,58,0,0,15,0,0,72,1,2,9,1,64,0,0,0,0,0,0,0,0,28,41,41,95,94,57,57,3,72,90,70,68,3,0,4092
Centre College,2533,1737,377,37,79,550,670,560,680,550,670,26,31,1381,1378,3,1381,1378,3,377,377,0,0,0,0,0,69,22,32600,34000,35000,36020,48020,48020,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1381,1378,3,1381,0,1378,3,0,2,5,2,0,83,3,0,4,2,51,0,2,5,2,0,83,3,0,4,2,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,82,82,97,97,16,15,5,51,97,48,46,6,0,171292
University of the Cumberlands,2527,1801,488,15,89,420,520,440,530,0,0,19,25,4814,2435,2379,2090,1515,575,486,486,0,2724,920,1804,0,71,27,17000,18000,19000,20000,33500,33500,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Master's Colleges and Universities (medium programs),4924,2439,2485,2096,2828,1514,582,0,1,5,1,0,83,0,8,2,1,63,0,1,6,2,0,82,1,3,5,1,50,0,0,4,1,0,83,0,12,0,1,73,278,57,187,38,23,5,0,0,24,40,43,100,100,58,58,38,56,100,79,79,2,0,19906
Eastern Kentucky University,9932,5961,2306,6,95,440,560,450,550,430,530,19,24,16164,11563,4601,13910,10888,3022,2496,2425,71,2254,675,1579,208,60,39,7084,6960,7320,7536,18960,28032,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (larger programs),16111,11651,4460,13891,2220,10969,2922,0,1,5,2,0,83,2,4,2,1,57,0,1,5,2,0,85,2,3,2,1,56,0,1,5,2,0,76,2,11,3,1,62,2138,88,277,11,16,1,0,0,18,33,39,97,95,48,48,13,81,43,64,64,2,4256,0
Georgetown College,1735,1426,238,8,95,410,610,460,560,0,0,21,26,1399,1018,381,1043,1002,41,243,243,0,356,16,340,0,82,17,27640,29300,30770,32310,44110,44110,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,1399,1017,382,1043,356,1000,43,0,1,9,3,0,78,2,6,2,1,60,0,1,10,3,0,76,2,6,2,1,54,0,1,8,1,0,86,1,4,0,1,79,0,0,0,0,0,0,0,0,49,51,57,98,98,37,37,6,75,98,73,73,6,0,30992
Kentucky State University,6399,2415,506,12,93,350,450,323,448,343,420,16,20,2533,1887,646,2370,1813,557,537,519,18,163,74,89,44,38,21,5520,5808,6096,6276,17506,26302,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,2533,1887,646,2370,163,1813,557,0,1,56,1,0,26,2,13,1,1,59,0,1,56,1,0,26,2,13,0,1,59,0,3,47,4,2,33,2,6,4,5,53,202,38,334,62,0,0,1,0,7,15,18,89,83,76,75,16,22,39,82,82,1,6393,0
Kentucky Wesleyan College,1006,675,163,20,88,440,540,410,555,450,660,19,25,655,621,34,655,621,34,163,163,0,0,0,0,0,67,24,18180,19515,20365,21200,32190,32190,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,657,621,36,657,0,621,36,0,0,12,2,0,74,0,10,2,0,48,0,0,12,2,0,74,0,10,2,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,36,38,100,100,50,48,31,72,100,89,85,4,0,47948
University of Kentucky,19810,13592,4702,18,92,490,610,500,630,0,0,22,28,28423,25665,2758,21429,19895,1534,4684,4625,59,6994,5770,1224,0,69,35,8610,9128,9676,10110,23732,34814,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),28435,25658,2777,21441,6994,19884,1557,0,3,7,3,0,76,2,4,5,3,52,0,2,8,3,0,78,3,3,3,3,51,0,3,5,2,0,70,1,5,14,3,56,3197,68,1383,30,101,2,3,0,34,55,60,93,85,26,25,5,66,59,49,48,7,41004,0
Kentucky Christian University,590,303,135,18,87,360,510,400,550,340,480,18,24,590,501,89,557,499,58,134,134,0,33,2,31,0,51,45,15176,15150,16778,17418,30256,30256,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,594,496,98,559,35,494,65,1,0,11,1,0,69,3,14,1,1,44,0,0,11,1,0,70,3,14,1,1,46,3,0,3,0,0,60,3,20,11,0,11,0,0,0,0,0,0,0,0,18,36,39,100,100,52,52,13,42,97,83,83,6,0,9542
Lindsey Wilson College,0,0,0,0,0,0,0,0,0,0,0,0,0,2645,2520,125,2201,2101,100,514,513,1,444,419,25,16,0,0,18950,20030,21230,22070,36613,36613,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Master's Colleges and Universities (medium programs),2644,2520,124,2200,444,2101,99,0,1,9,1,0,70,1,17,0,1,62,0,1,9,1,0,70,2,18,0,1,59,1,0,13,0,0,70,0,14,1,0,76,0,0,0,0,0,0,0,0,15,26,29,100,100,63,63,16,82,98,70,70,3,0,6512
University of Louisville,9166,6519,2857,5,94,470,580,510,610,470,580,22,28,21456,16363,5093,15956,12426,3530,2857,2809,48,5500,3937,1563,28,71,44,8424,8930,9662,9946,22796,36684,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),21444,16364,5080,15954,5490,12426,3528,0,3,11,3,0,76,3,0,3,3,52,0,3,11,4,0,76,4,0,1,3,51,0,4,8,3,0,74,2,1,8,4,53,0,0,0,0,0,0,0,0,25,47,53,97,93,32,32,21,81,58,46,46,4,41605,0
Mid-Continent University,458,322,201,2,70,350,500,370,500,390,480,15,24,2266,1994,272,2078,1903,175,201,95,106,188,91,97,293,70,62,13350,13350,13350,8673,26041,26041,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,2251,1905,346,2154,97,1822,332,0,0,14,2,0,79,1,2,1,0,65,0,0,14,2,0,79,1,2,1,0,65,0,0,14,2,0,80,0,2,1,0,71,0,0,0,0,0,0,0,0,5,14,15,95,94,83,83,6,13,4,84,84,1,0,0
Midway College,446,240,115,11,89,490,610,430,570,470,590,19,25,1351,820,531,1248,743,505,115,96,19,103,77,26,87,54,48,19050,19950,20850,22150,37650,37650,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate Colleges--Diverse Fields,1351,745,606,1247,104,731,516,0,1,7,4,0,79,1,7,0,1,79,0,1,6,4,0,80,1,7,0,1,81,0,1,14,1,0,77,0,7,0,1,59,0,0,0,0,0,0,0,0,34,43,48,100,100,54,54,13,65,99,82,81,7,0,19224
Morehead State University,5230,4419,1649,5,98,420,545,455,570,420,540,19,25,11359,6459,4900,10077,6196,3881,1695,1685,10,1282,263,1019,180,84,37,6492,6942,7284,7498,18851,30099,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),11358,6472,4886,10076,1282,6209,3867,0,0,3,1,0,91,1,1,1,0,61,0,0,3,1,0,91,1,1,1,0,61,0,0,3,1,0,91,1,1,2,0,62,1451,85,245,14,5,0,0,0,22,39,45,99,97,52,52,13,79,73,69,69,4,5148,0
Murray State University,4576,3760,1626,2,93,430,520,440,540,0,0,19,25,10893,7747,3146,9144,7071,2073,1583,1563,20,1749,676,1073,12,82,43,6264,6576,6840,7044,18898,31018,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),10943,7838,3105,9172,1771,7153,2019,0,1,7,2,0,80,1,2,7,1,59,0,1,7,2,0,82,2,2,5,1,58,0,1,7,1,0,73,1,1,17,1,63,954,60,563,36,64,4,0,0,29,48,53,99,97,38,38,7,59,70,55,54,4,6788,0
Northern Kentucky University,7064,3299,2107,15,96,440,560,430,550,0,0,19,25,15336,10700,4636,13170,9962,3208,2271,2224,47,2166,738,1428,98,47,64,7128,7584,8064,8376,19186,27274,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),15263,10597,4666,12794,2469,9736,3058,0,1,6,2,0,83,2,2,3,1,56,0,1,7,2,0,82,2,2,4,1,55,0,1,5,2,0,86,1,3,2,1,64,1423,63,834,37,16,1,0,0,14,31,38,95,86,39,38,4,61,49,60,60,3,6511,0
University of Pikeville,1804,1804,386,5,95,390,500,380,510,0,0,16,22,2203,1749,454,1736,1282,454,386,386,0,467,467,0,29,100,21,15250,16250,17050,17750,33750,33750,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,2205,1749,456,1738,467,1282,456,0,1,8,1,0,87,0,0,1,2,52,0,1,10,1,0,86,0,0,2,1,53,1,3,2,2,1,91,0,0,0,4,47,323,84,51,13,12,3,0,0,16,27,29,100,100,65,65,7,78,99,95,95,1,0,11474
Saint Catharine College,0,0,0,0,0,0,0,0,0,0,0,0,0,766,574,192,747,569,178,119,116,3,19,5,14,77,0,0,15890,17080,18106,18106,34726,34726,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate/Associate's Colleges,767,575,192,748,19,570,178,1,0,9,3,0,86,1,1,1,0,64,1,0,8,3,0,86,1,1,1,0,65,0,0,21,0,0,79,0,0,0,0,42,0,0,0,0,0,0,0,0,18,27,27,99,99,83,83,12,80,81,86,68,17,0,539
Spalding University,1094,887,402,14,89,440,520,440,525,0,0,18,22,2332,1810,522,1339,1028,311,212,201,11,993,782,211,1,81,45,18150,19350,20550,22425,37439,37439,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,2367,1726,641,1371,996,954,417,0,1,20,2,0,61,2,11,1,1,73,0,1,22,3,0,60,3,10,0,1,70,0,2,19,1,0,63,1,13,1,2,78,169,79,40,19,4,2,0,0,18,33,40,99,99,54,54,15,78,96,67,67,4,0,6601
Thomas More College,1053,924,264,24,92,430,520,430,560,0,0,20,25,1615,1221,394,1517,1140,377,264,264,0,98,81,17,114,88,29,24845,25845,26595,27345,38621,38621,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (smaller programs),1600,1221,379,1502,98,1140,362,0,1,6,2,0,78,2,11,1,1,52,0,1,6,2,0,77,2,11,1,1,52,0,0,5,0,1,88,0,6,0,1,43,120,45,143,54,1,0,0,0,42,55,57,100,100,41,41,20,44,98,75,74,7,0,11307
Transylvania University,1326,1275,294,21,89,520,660,510,630,0,0,24,30,1084,1069,15,1084,1069,15,294,294,0,0,0,0,0,96,23,26740,28250,29865,31560,43640,43640,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,1082,1067,15,1082,0,1067,15,0,2,3,3,0,83,3,4,2,2,57,0,2,3,3,0,83,3,4,2,2,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67,71,72,100,100,30,30,20,70,100,62,62,4,0,115910
Union College,1424,1056,242,10,88,460,563,417,513,0,0,19,24,1159,856,303,805,728,77,242,241,1,354,128,226,0,74,23,19015,20079,21025,22000,33740,33740,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Master's Colleges and Universities (larger programs),1164,858,306,818,346,729,89,0,0,7,2,0,83,2,1,5,0,53,0,0,10,2,0,79,2,1,6,0,49,0,0,1,0,0,93,2,1,2,0,62,0,0,0,0,0,0,0,0,16,31,34,100,100,59,59,10,62,100,87,84,23,0,19422
Western Kentucky University,8526,7871,3375,7,93,410,580,420,570,0,0,18,25,20319,14513,5806,17419,13573,3846,3017,2971,46,2900,940,1960,267,92,43,7560,8084,8472,8722,18822,32348,Kentucky,Kentucky,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),20448,14315,6133,17509,2939,13382,4127,0,1,10,2,0,77,2,1,5,1,58,0,1,10,2,0,78,2,1,5,1,57,0,1,10,2,0,75,2,1,9,1,68,2273,73,656,21,188,6,0,0,25,45,50,93,88,44,44,9,72,32,57,57,3,945,0
Centenary College of Louisiana,670,442,128,26,91,480,585,495,600,0,0,22,28,661,573,88,586,571,15,128,127,1,75,2,73,0,66,29,24080,25290,29500,30740,44600,44600,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,661,578,83,586,75,571,15,1,3,14,5,0,71,3,0,2,3,57,1,3,15,6,0,70,3,0,3,3,56,0,1,8,4,0,83,3,1,0,1,61,0,0,0,0,0,0,0,0,49,57,59,100,100,37,37,22,62,100,61,60,4,0,163053
Dillard University,4726,1675,229,22,85,400,470,370,480,0,0,17,20,1183,1128,55,1183,1128,55,229,223,6,0,0,0,0,35,14,13880,14770,14770,16094,30358,30358,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Large,Baccalaureate Colleges--Arts & Sciences,1183,1128,55,1183,0,1128,55,0,0,90,1,0,0,1,4,5,0,71,0,0,90,1,0,0,1,4,5,0,71,0,0,0,0,0,0,0,0,0,0,0,142,62,87,38,0,0,0,0,5,11,46,99,99,81,80,34,24,93,95,95,2,0,44901
Grambling State University,4545,1983,714,17,86,380,480,360,440,0,0,16,20,5071,4330,741,4155,3865,290,714,702,12,916,465,451,15,44,36,4428,4886,5273,5950,22720,31888,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,Town: Distant,Master's Colleges and Universities (medium programs),5071,4325,746,4155,916,3860,295,0,0,91,1,0,2,1,0,5,0,63,0,0,91,1,0,1,1,0,5,0,60,0,0,90,1,0,6,0,0,3,0,74,502,70,205,29,7,1,0,0,7,24,31,96,96,96,83,14,42,19,91,91,1,2220,0
Louisiana State University-Alexandria,1080,656,391,0,89,0,0,0,0,0,0,18,22,2233,1257,976,2215,1257,958,391,332,59,18,0,18,110,61,60,3816,4402,4618,5337,17013,21658,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Baccalaureate Colleges--Arts & Sciences,2229,1257,972,2211,18,1257,954,1,1,15,4,0,76,2,0,0,1,70,1,1,15,4,0,76,2,0,0,1,70,0,0,17,0,0,78,6,0,0,0,72,0,0,0,0,0,0,0,0,7,17,20,92,92,59,59,3,66,30,35,34,2,8162,0
Louisiana State University and Agricultural & Mechanical College,16169,12326,5725,11,89,500,620,520,630,0,0,23,28,30478,27172,3306,24923,22811,2112,5501,5498,3,5555,4361,1194,0,76,46,5764,6354,6989,7873,23227,41144,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Research Universities (very high research activity),30478,27172,3306,24923,5555,22811,2112,0,3,11,5,0,73,2,1,5,3,51,0,3,11,5,0,75,2,0,2,4,52,0,2,10,3,0,60,1,2,21,2,51,4487,82,939,17,71,1,4,0,38,62,67,93,88,23,23,3,77,50,43,42,2,16082,0
Louisiana State University-Shreveport,539,450,345,2,98,440,510,520,540,0,0,20,24,4082,1991,2091,3655,1860,1795,345,294,51,427,131,296,0,83,77,4125,4494,4943,5606,0,0,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (medium programs),4114,2229,1885,3674,440,2097,1577,1,2,20,4,0,62,3,7,2,2,60,1,2,20,4,0,62,3,7,2,2,59,0,1,17,3,0,63,3,7,5,1,71,0,0,0,0,0,0,0,0,15,27,33,94,90,35,35,1,80,57,27,27,0,5688,0
Louisiana College,904,671,266,3,93,410,460,430,500,380,480,18,23,1388,1079,309,1106,1022,84,267,267,0,282,57,225,18,74,40,13030,13380,13780,14120,23390,23390,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Small,Baccalaureate Colleges--Diverse Fields,1400,1092,308,1116,284,1035,81,1,1,22,2,0,67,1,3,4,1,51,0,1,22,2,0,68,1,1,4,1,48,1,1,20,2,0,61,1,10,5,1,64,0,0,0,0,0,0,0,0,29,40,43,96,96,45,41,18,66,96,65,65,1,0,23979
Louisiana Tech University,5077,3424,1552,4,93,450,590,490,600,0,0,21,26,11014,7551,3463,9215,6586,2629,1552,1506,46,1799,965,834,83,67,45,5545,5896,6574,7302,18927,30066,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Research Universities (high research activity),11015,7549,3466,9245,1770,6585,2660,0,1,13,1,0,68,1,9,6,1,49,0,1,13,1,0,70,2,9,3,1,47,0,2,12,1,0,61,1,6,18,2,61,1290,83,237,15,26,2,0,0,29,45,50,94,91,32,32,2,75,65,37,37,0,8196,0
Loyola University New Orleans,4827,4203,624,45,58,520,640,510,610,0,0,22,28,4686,3589,1097,2946,2741,205,624,620,4,1740,848,892,0,87,15,31754,33552,35182,36860,51760,51760,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),4686,3589,1097,2946,1740,2741,205,1,3,15,13,0,56,2,7,3,3,62,1,4,16,16,0,51,4,6,4,4,59,1,2,14,8,0,65,0,8,1,3,66,0,0,0,0,0,0,0,0,44,53,55,98,97,35,35,21,34,97,67,67,4,0,59950
McNeese State University,3624,2229,1313,5,95,450,550,490,560,0,0,20,24,8349,6307,2042,7501,5959,1542,1330,1312,18,848,348,500,142,62,59,3987,4383,5088,5701,17759,28661,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),8341,6307,2034,7575,766,5973,1602,1,1,18,2,0,73,2,0,4,1,62,1,1,18,2,0,73,2,0,3,2,62,0,1,16,2,0,71,0,0,9,1,68,1189,89,102,8,39,3,0,0,13,31,37,95,89,39,39,4,74,38,37,37,0,2199,0
University of New Orleans,3197,1610,860,12,90,470,590,490,620,0,0,21,25,9323,6548,2775,7144,5376,1768,860,844,16,2179,1172,1007,0,50,53,4759,5214,5850,6578,19825,32315,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (high research activity),9323,6548,2775,7144,2179,5376,1768,0,7,15,9,0,57,2,4,6,7,52,0,8,15,10,0,56,3,4,4,8,50,0,4,12,6,0,61,2,4,11,4,57,743,87,70,8,42,5,2,0,13,25,32,90,85,44,44,27,73,31,37,37,2,2521,0
Nicholls State University,2404,2090,1243,2,96,437,537,482,607,392,520,20,24,6540,4947,1593,5892,4729,1163,1243,1060,183,648,218,430,238,87,59,4292,4737,5679,6468,19180,28671,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (medium programs),6532,4947,1585,5888,644,4729,1159,2,1,20,3,0,67,2,2,2,1,63,2,1,20,3,0,68,3,2,2,1,62,2,1,21,2,0,66,1,3,4,1,76,1172,94,58,5,12,1,0,0,19,35,42,95,90,44,44,4,84,34,51,50,1,1322,0
University of Louisiana at Monroe,3454,2668,1325,8,97,0,0,480,640,460,580,20,25,8645,5739,2906,7654,5269,2385,1325,1298,27,991,470,521,52,77,50,4636,5101,5443,6318,17250,27822,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),8645,5739,2906,7276,1369,4894,2382,0,2,24,2,0,64,2,2,3,2,63,0,2,25,2,0,64,2,2,2,2,63,0,5,17,2,0,65,2,3,6,5,65,1205,90,98,7,35,3,0,0,19,34,40,96,96,50,50,4,81,42,47,47,0,3373,0
Northwestern State University of Louisiana,2812,2362,1231,6,89,430,518,443,550,0,0,19,24,8944,5249,3695,7836,5013,2823,1231,1160,71,1108,236,872,331,84,52,4461,5049,5557,6207,18436,28556,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),8944,5249,3695,7836,1108,5013,2823,1,1,26,5,0,59,3,4,1,1,69,1,1,27,5,0,57,3,4,1,1,68,1,1,19,2,0,74,2,1,0,1,79,1094,89,126,10,10,1,1,0,19,34,38,95,91,48,48,8,76,67,53,53,2,1610,0
Our Lady of Holy Cross College,163,79,59,0,0,0,0,0,0,0,0,0,0,1053,576,477,846,521,325,58,55,3,207,55,152,1,48,75,14108,14699,9710,9950,0,0,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (smaller programs),1112,602,510,878,234,521,357,1,4,25,6,0,53,3,8,0,4,83,1,4,26,6,0,52,3,8,0,4,83,1,1,24,6,0,57,1,9,0,1,80,58,100,0,0,0,0,0,0,5,22,28,81,68,42,42,0,63,20,61,61,2,0,31309
Southeastern Louisiana University,7657,3430,2565,0,100,0,0,0,0,0,0,20,24,14949,10360,4589,13744,9999,3745,2544,2367,177,1205,361,844,70,45,75,4000,4604,5242,5715,17149,29168,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),14934,10360,4574,13730,1204,9999,3731,0,1,15,5,0,67,5,5,2,1,62,0,1,15,5,0,67,5,5,2,1,60,0,1,16,4,0,74,1,1,2,1,78,2445,96,61,2,40,2,0,0,13,29,36,93,86,41,41,3,77,31,46,46,1,1020,0
Southern University and A & M College,3721,1336,781,7,89,0,0,400,520,0,0,17,20,6802,5159,1643,5788,4694,1094,1122,1100,22,1014,465,549,0,36,58,4584,5074,5810,6630,18882,20526,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Midsize,Master's Colleges and Universities (larger programs),6777,5641,1136,5746,1031,4708,1038,0,1,93,1,0,4,1,0,0,1,65,0,0,94,1,0,3,1,0,0,0,63,0,4,86,1,0,7,0,1,0,4,74,0,0,0,0,0,0,0,0,8,22,32,98,76,25,20,23,52,26,94,94,1,1437,0
Southern University at New Orleans,1563,764,684,1,99,420,650,420,640,380,610,15,18,4391,3176,1215,3662,2701,961,280,268,12,729,475,254,24,49,90,3360,3906,4372,4911,16191,16191,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Large,Master's Colleges and Universities (medium programs),2292,1655,637,1809,483,1222,587,0,1,82,1,0,3,0,14,0,1,76,0,1,83,1,0,2,0,13,0,1,75,0,1,80,0,0,5,0,14,0,1,81,0,0,0,0,0,0,0,0,4,9,11,58,58,58,58,8,10,12,58,58,0,4688,0
University of Louisiana at Lafayette,8506,5044,2693,6,97,0,0,490,600,450,590,21,25,16646,13221,3425,15053,12295,2758,2693,2679,14,1593,926,667,0,59,53,4426,4864,5374,6192,19035,28585,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (high research activity),16646,13221,3425,15053,1593,12295,2758,0,2,20,3,0,68,1,1,4,2,55,0,2,21,3,0,69,2,1,2,2,55,0,2,11,2,0,63,1,3,18,2,55,2510,93,142,5,41,2,0,0,13,36,45,94,90,37,37,4,83,37,36,36,0,8535,0
Tulane University of Louisiana,30122,7961,1609,58,63,620,700,620,700,630,720,29,32,12938,10572,2366,8290,6487,1803,1609,1609,0,4648,4085,563,62,26,20,41884,43434,45240,46930,61178,61178,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (very high research activity),12938,10572,2366,8290,4648,6487,1803,0,5,8,5,0,66,2,3,10,5,56,0,4,9,6,0,72,3,3,3,4,58,1,6,6,4,0,55,2,4,23,6,54,184,11,1385,86,40,2,0,0,62,74,76,79,75,10,10,9,11,75,36,35,2,0,81125
Xavier University of Louisiana,4703,2560,675,30,88,440,560,420,550,420,530,20,26,3121,2942,179,2351,2223,128,675,674,1,770,719,51,0,54,26,17100,17900,18700,20560,31501,31501,Louisiana,Louisiana,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Large,Baccalaureate Colleges--Arts & Sciences,3121,2942,179,2504,617,2375,129,0,13,71,3,0,6,3,1,3,13,71,0,10,77,2,0,4,3,1,2,10,71,0,21,50,3,0,16,3,1,5,21,70,0,0,0,0,0,0,0,0,27,43,46,99,96,60,60,40,47,74,67,66,4,0,46059
College of the Atlantic,452,333,104,0,0,0,0,0,0,0,0,0,0,363,350,13,355,343,12,104,103,1,8,7,1,0,74,31,34380,36063,37701,38952,49890,49890,Maine,Maine,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,370,351,19,362,8,344,18,1,2,1,5,0,69,2,4,15,2,68,1,2,1,5,0,69,2,4,15,2,67,0,0,0,0,0,75,0,25,0,0,88,0,0,0,0,0,0,0,0,56,68,69,100,100,31,31,23,14,100,65,65,7,0,116238
Bates College,5243,1267,500,0,0,0,0,0,0,0,0,0,0,1791,1791,0,1791,1791,0,500,500,0,0,0,0,0,24,39,41360,42800,44300,45650,61000,61000,Maine,Maine,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,1791,1791,0,1791,0,1791,0,0,5,5,6,0,72,4,1,6,5,50,0,5,5,6,0,72,4,1,6,5,50,0,0,0,0,0,0,0,0,0,0,0,46,9,417,83,36,7,1,0,88,93,93,43,41,8,8,0,2,41,17,16,2,0,133908
Bowdoin College,7052,1054,497,53,27,680,760,680,750,690,770,30,33,1795,1791,4,1795,1791,4,497,497,0,0,0,0,0,15,47,41565,42816,44118,45446,59900,59900,Maine,Maine,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,1795,1791,4,1795,0,1791,4,0,7,5,12,0,64,6,1,5,7,50,0,7,5,12,0,64,6,1,5,7,50,0,0,0,0,0,0,0,0,0,0,0,49,10,412,83,36,7,0,0,88,92,93,50,50,14,14,7,3,50,18,17,1,0,574151
Colby College,5407,1408,483,67,32,620,710,640,720,620,720,28,32,1820,1820,0,1820,1820,0,483,483,0,0,0,0,0,26,34,41380,42820,44320,45760,59110,59110,Maine,Maine,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,1820,1820,0,1820,0,1820,0,0,5,3,6,0,60,5,12,8,5,52,0,5,3,6,0,60,5,12,8,5,52,0,0,0,0,0,0,0,0,0,0,0,59,12,357,74,67,14,0,0,89,92,93,47,41,12,12,12,5,41,23,22,2,0,332477
Husson University,1581,1263,444,99,5,420,530,430,550,420,530,17,21,2963,2306,657,2293,1885,408,444,441,3,670,421,249,26,80,35,13450,14435,14540,15130,26286,26286,Maine,Maine,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (medium programs),3049,2288,761,2350,699,1868,482,1,2,4,1,0,86,1,0,4,2,60,1,1,4,1,0,88,1,0,4,1,59,0,8,6,0,0,81,1,1,3,8,63,0,0,0,0,0,0,0,0,25,40,45,79,78,29,29,26,23,61,61,60,17,0,3673
University of Maine at Augusta,0,0,0,0,0,0,0,0,0,0,0,0,0,4770,1726,3044,4770,1726,3044,456,275,181,0,0,0,239,0,0,7125,7448,7448,7500,0,0,Maine,Maine,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Baccalaureate/Associate's Colleges,4770,1726,3044,4770,0,1726,3044,2,0,1,1,0,82,2,11,0,1,71,2,0,1,1,0,82,2,11,0,1,71,0,0,0,0,0,0,0,0,0,0,0,444,98,8,2,1,0,1,0,3,7,12,89,76,70,70,18,51,29,69,69,1,1997,0
University of Maine at Farmington,1638,1371,439,0,0,0,0,0,0,0,0,0,0,2061,1783,278,1901,1783,118,439,438,1,160,0,160,0,84,32,9022,9367,9367,9167,21425,30513,Maine,Maine,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,2061,1783,278,1901,160,1783,118,1,1,1,2,0,83,2,10,1,1,67,1,1,1,2,0,83,2,9,1,1,66,1,1,0,0,0,76,0,22,0,1,79,0,0,0,0,0,0,0,0,38,53,55,96,77,49,49,46,53,73,83,82,10,5883,0
University of Maine at Fort Kent,464,292,162,91,2,400,500,410,500,400,500,18,27,1209,594,615,1209,594,615,162,155,7,0,0,0,24,63,55,7163,7575,7575,7575,18795,28755,Maine,Maine,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Remote,Baccalaureate Colleges--Diverse Fields,1209,594,615,1209,0,594,615,1,0,2,1,0,75,1,12,8,0,71,1,0,2,1,0,75,1,12,8,0,71,0,0,0,0,0,0,0,0,0,0,0,139,86,12,7,11,7,0,0,36,39,44,97,88,52,52,43,43,88,67,65,7,3659,0
University of Maine at Machias,452,386,104,87,3,410,530,410,520,390,510,18,25,892,439,453,892,439,453,104,98,6,0,0,0,2,85,27,7075,7480,7480,7490,18968,30848,Maine,Maine,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Remote,Baccalaureate Colleges--Arts & Sciences,892,439,453,892,0,439,453,2,0,3,3,0,74,2,16,1,0,70,2,0,3,3,0,74,2,16,1,0,70,0,0,0,0,0,0,0,0,0,0,0,80,77,23,22,1,1,0,0,14,25,31,98,97,60,60,57,48,96,67,67,6,2765,0
University of Maine,8306,6733,1997,94,10,480,590,490,610,460,580,21,26,11247,8987,2260,9182,7922,1260,2166,2148,18,2065,1065,1000,0,81,30,10142,10588,10594,10600,23712,41082,Maine,Maine,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Research Universities (high research activity),11247,8739,2508,9182,2065,7922,1260,1,1,2,2,0,77,2,10,4,1,51,1,1,2,2,0,79,2,9,3,1,48,2,1,1,1,0,71,1,15,9,1,66,1488,69,634,29,42,2,2,0,36,51,56,93,82,42,42,24,33,71,73,72,16,27762,0
Maine Maritime Academy,791,517,225,95,13,440,550,480,580,430,530,20,24,1018,1002,16,994,979,15,222,222,0,24,23,1,6,65,44,10525,11305,11525,11950,24098,34918,Maine,Maine,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Distant,Baccalaureate Colleges--Diverse Fields,1018,1001,17,994,24,979,15,0,1,1,1,0,95,0,2,0,1,14,0,1,1,1,0,95,0,2,0,1,13,0,0,0,0,0,100,0,0,0,0,46,0,0,0,0,0,0,0,0,53,72,74,72,60,22,22,8,20,23,69,69,24,15340,0
University of Maine at Presque Isle,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,750,600,1350,750,600,184,175,9,0,0,0,11,0,0,7090,7300,7300,7300,18276,28236,Maine,Maine,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,1263,718,545,1263,0,718,545,3,0,1,1,0,74,2,13,6,0,63,3,0,1,1,0,74,2,13,6,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,27,30,99,95,79,58,75,59,80,79,78,4,1123,0
University of New England,4231,3632,633,94,21,470,570,480,580,0,0,21,26,6032,4961,1071,2653,2156,497,633,633,0,3379,2805,574,36,86,17,29330,30500,31870,33145,50295,50295,Maine,Maine,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Master's Colleges and Universities (larger programs),6032,4961,1071,2653,3379,2156,497,0,5,5,1,0,67,1,19,1,5,72,0,3,2,1,0,65,1,28,1,3,71,1,6,8,2,0,69,2,12,1,6,73,0,0,0,0,0,0,0,0,49,57,58,100,100,27,27,0,21,100,87,86,28,0,5499
Saint Joseph's College of Maine,1580,1229,290,97,0,430,520,440,530,430,530,0,0,4497,1827,2670,3225,1479,1746,421,307,114,1272,348,924,16,78,24,27345,28700,30030,30990,45790,45790,Maine,Maine,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Master's Colleges and Universities (medium programs),1614,896,718,1276,338,895,381,0,2,3,2,0,62,0,31,0,2,70,1,1,2,2,0,59,0,35,0,1,67,0,5,5,3,0,70,0,17,0,5,79,0,0,0,0,0,0,0,0,49,54,55,98,97,30,30,29,24,96,87,86,24,0,8124
University of Southern Maine,3902,3231,868,93,7,450,550,440,560,440,540,20,25,8923,5146,3777,7098,4405,2693,780,741,39,1825,741,1084,0,83,27,8538,8900,7776,8920,24062,36422,Maine,Maine,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),8923,5020,3903,7098,1825,4281,2817,1,2,2,2,0,75,2,16,1,2,59,1,2,3,2,0,74,2,16,1,2,57,1,1,1,1,0,79,1,14,1,1,68,640,82,137,18,2,0,1,0,10,26,34,93,78,45,45,37,39,59,74,72,11,4567,0
Thomas College,1074,778,269,93,4,390,490,400,510,390,480,16,21,1526,836,690,1339,780,559,260,256,4,187,56,131,2,72,35,21680,22770,22770,22770,35494,35494,Maine,Maine,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,1522,835,687,1339,183,780,559,0,0,2,2,0,70,5,18,2,0,54,0,0,3,2,0,68,6,20,2,0,52,0,1,0,0,0,90,1,6,2,1,63,0,0,0,0,0,0,0,0,35,44,44,98,98,55,55,55,47,98,90,90,12,0,9500
Unity College,519,461,146,0,0,0,0,0,0,0,0,0,0,554,546,8,554,546,8,146,146,0,0,0,0,2,89,32,22500,23540,24100,25000,35864,35864,Maine,Maine,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Remote,Baccalaureate Colleges--Diverse Fields,553,547,6,553,0,547,6,2,1,1,3,0,89,3,0,0,2,51,2,1,1,3,0,89,3,0,0,2,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,51,51,99,98,43,43,43,29,98,88,88,15,0,25610
University of Baltimore,695,507,251,92,5,430,530,410,510,400,510,0,0,6518,3456,3062,3526,2061,1465,241,236,5,2992,1395,1597,0,73,50,7330,7500,7646,7838,0,0,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),6518,3457,3061,3526,2992,2061,1465,0,4,38,4,0,42,3,5,3,5,58,0,4,46,5,0,35,3,4,2,5,57,0,4,29,4,0,51,2,6,3,5,59,0,0,0,0,0,0,0,0,23,33,38,95,93,57,57,12,41,73,55,55,2,8075,0
Bowie State University,3986,2063,627,86,14,410,490,400,470,390,470,17,20,5561,3974,1587,4358,3521,837,629,625,4,1203,453,750,0,52,30,6154,6347,6639,6971,20107,30674,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,Yes,No,Suburb: Large,Doctoral/Research Universities,5561,3974,1587,4358,1203,3521,837,0,2,85,3,0,4,3,1,3,2,64,0,1,89,3,0,2,3,1,1,2,62,0,2,73,2,0,8,2,2,10,3,69,0,0,0,0,0,0,0,0,13,27,35,90,70,52,52,5,35,49,73,72,3,1371,0
Washington Adventist University,1455,476,134,0,0,0,0,0,0,0,0,0,0,1185,874,311,1011,806,205,126,126,0,174,68,106,18,33,28,20180,20180,20180,21020,31220,31220,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1185,874,311,1011,174,806,205,1,8,59,11,0,10,1,9,2,8,66,1,7,58,11,0,10,1,9,2,8,65,0,9,64,9,0,7,0,12,0,9,75,0,0,0,0,0,0,0,0,17,33,36,98,96,53,53,37,10,93,72,72,0,0,6403
Coppin State University,5980,2123,446,77,0,410,480,400,470,0,0,0,0,3383,2384,999,2920,2251,669,368,353,15,463,133,330,0,36,21,5547,5732,6065,6252,19091,24025,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Large,Master's Colleges and Universities (smaller programs),3383,2384,999,2920,463,2251,669,0,0,82,1,0,2,2,3,10,0,74,0,0,83,2,0,1,2,4,8,0,74,0,0,75,0,0,2,0,1,21,0,76,0,0,0,0,0,0,0,0,4,10,14,95,84,84,72,38,28,39,74,74,0,269,0
Frostburg State University,3872,2302,895,92,17,430,530,430,540,420,510,18,22,5473,4408,1065,4703,4192,511,895,889,6,770,216,554,0,59,39,6904,7128,7436,7728,20046,30694,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Master's Colleges and Universities (larger programs),5473,4408,1065,4703,770,4192,511,0,1,24,4,0,63,3,2,2,1,51,0,1,27,4,0,60,4,1,2,1,49,0,2,6,2,0,81,1,4,4,2,61,825,92,60,7,10,1,0,0,22,41,47,83,61,36,36,9,31,44,64,63,8,3542,0
Goucher College,3615,2593,410,0,0,0,0,0,0,0,0,0,0,2111,1585,526,1449,1424,25,401,401,0,662,161,501,0,72,16,35142,36554,37640,39084,52908,52908,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,2111,1585,526,1449,662,1424,25,0,2,9,5,0,58,3,20,2,2,69,0,3,9,7,0,68,4,6,2,3,66,0,0,10,1,0,36,1,51,0,0,76,0,0,0,0,0,0,0,0,59,67,68,91,88,26,26,15,9,88,60,60,8,0,103891
Hood College,1686,1366,281,93,25,450,580,460,580,460,550,18,25,2393,1405,988,1387,1265,122,281,281,0,1006,140,866,0,81,21,29860,31060,32300,33280,48830,48830,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (medium programs),2392,1406,986,1388,1004,1266,122,0,3,10,6,0,68,3,5,6,3,65,0,3,12,8,0,65,4,5,3,3,66,0,3,7,3,0,71,1,5,10,3,65,180,64,93,33,8,3,0,0,55,65,66,98,98,29,27,14,22,98,71,71,6,0,39225
Johns Hopkins University,21336,3869,1390,79,39,650,740,670,770,660,750,30,34,20918,13262,7656,6117,5878,239,1390,1390,0,14801,7384,7417,0,18,36,40680,42280,43390,45470,61502,61502,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (very high research activity),20918,13256,7662,6117,14801,5865,252,0,13,6,6,0,49,3,4,18,13,51,0,18,6,10,0,49,4,2,10,18,51,0,11,6,5,0,50,3,5,21,11,51,0,0,0,0,0,0,0,0,87,91,93,61,48,17,15,16,3,47,37,37,3,0,138661
Loyola University Maryland,13604,7891,1096,62,22,540,627,560,640,0,0,25,29,5977,4585,1392,4004,3951,53,1096,1096,0,1973,634,1339,0,58,14,39350,40870,42430,43250,58578,58578,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),5977,4585,1392,4004,1973,3951,53,0,3,8,8,0,77,2,1,1,3,62,0,3,5,9,0,79,2,1,0,3,59,0,3,14,4,0,73,2,2,1,3,67,0,0,0,0,0,0,0,0,79,84,84,81,66,16,15,12,5,65,57,56,39,0,33559
University of Maryland-University College,0,0,0,0,0,0,0,0,0,0,0,0,0,39683,5758,33925,26683,5514,21169,707,122,585,13000,244,12756,472,0,0,6000,6168,6384,6552,0,0,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),39557,6131,33426,26740,12817,5917,20823,0,5,32,8,0,40,3,10,1,5,51,0,4,29,9,1,42,3,10,1,5,49,0,6,39,6,0,35,2,9,2,6,54,0,0,0,0,0,0,0,0,1,2,3,77,67,61,60,4,14,11,62,62,1,523,0
University of Maryland-Baltimore County,9755,6160,1657,92,18,540,640,570,670,530,640,24,29,13908,10699,3209,11136,9508,1628,1657,1653,4,2772,1191,1581,0,63,27,9171,9467,9764,10068,24762,36336,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (high research activity),13908,10699,3209,11136,2772,9508,1628,0,17,15,5,0,47,3,5,7,17,46,0,20,16,6,0,45,4,5,4,20,45,0,6,13,3,0,53,2,5,18,6,49,1481,89,107,6,63,4,6,0,37,59,65,77,65,21,21,7,20,50,39,38,5,6274,0
University of Maryland-College Park,26247,12333,4020,91,0,580,690,620,730,0,0,0,0,37272,32199,5073,26658,24522,2136,4020,4011,9,10614,7677,2937,0,47,33,8416,8655,8908,9162,23734,42920,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (very high research activity),37272,32199,5073,26658,10614,24522,2136,0,13,11,7,0,51,3,3,11,13,47,0,15,12,9,0,53,4,3,3,16,47,0,7,7,4,0,44,2,5,31,7,48,0,0,0,0,0,0,0,0,66,82,84,73,63,15,15,2,17,53,35,35,4,12068,0
University of Maryland Eastern Shore,4073,2241,610,89,16,400,480,390,480,380,460,16,19,4220,3600,620,3530,3170,360,610,604,6,690,430,260,0,55,27,6305,6482,6713,6998,21454,29960,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,Yes,No,Town: Fringe,Master's Colleges and Universities (smaller programs),4220,3601,619,3530,690,3171,359,0,2,67,2,0,15,9,1,4,2,57,0,1,73,2,0,12,8,1,3,1,55,0,5,38,2,0,33,15,2,6,5,62,0,0,0,0,0,0,0,0,13,28,32,93,62,58,58,15,32,43,73,73,1,5200,0
Morgan State University,4801,2764,899,84,14,410,490,410,490,390,480,16,19,7546,6101,1445,6252,5504,748,899,886,13,1294,597,697,0,58,33,6727,6928,7012,7218,22269,31683,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Large,Doctoral/Research Universities,7546,6101,1445,6252,1294,5504,748,0,1,82,3,0,3,3,1,6,1,56,0,1,84,3,0,2,3,1,4,1,55,0,2,72,2,0,10,3,1,11,2,59,0,0,0,0,0,0,0,0,11,26,34,95,78,62,60,15,24,34,80,79,7,3328,0
Mount St Mary's University,4943,3332,429,81,19,500,600,490,580,490,590,17,23,2240,1907,333,1741,1650,91,429,429,0,499,257,242,0,67,13,30350,31536,32954,34644,48858,48858,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Master's Colleges and Universities (medium programs),2240,1907,333,1741,499,1650,91,0,2,9,8,0,74,3,2,2,3,52,0,2,10,9,0,73,3,2,1,2,55,1,4,6,3,1,78,1,2,4,4,40,0,0,0,0,0,0,0,0,61,65,66,100,100,21,20,14,15,100,67,66,11,0,19251
Notre Dame of Maryland University,838,416,104,86,12,470,590,460,560,0,0,20,23,2877,888,1989,1234,525,709,104,104,0,1643,363,1280,0,50,25,28350,29700,30850,32050,45650,45650,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),2877,888,1989,1234,1643,525,709,1,7,22,4,0,64,0,1,1,7,87,1,5,28,6,0,57,0,1,1,6,95,1,8,18,3,0,69,0,2,0,8,81,0,0,0,0,0,0,0,0,45,51,53,99,99,58,58,23,44,99,73,73,4,0,17107
Salisbury University,8912,4896,1246,58,17,540,610,540,620,530,610,22,26,8643,7665,978,8004,7374,630,1246,1241,5,639,291,348,0,55,25,6908,7332,7700,8128,22368,30714,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Master's Colleges and Universities (larger programs),8643,7665,978,8004,639,7374,630,0,2,12,4,0,74,4,3,1,2,58,0,2,12,4,0,73,4,3,1,3,57,0,0,12,2,0,81,2,1,2,0,74,0,0,0,0,0,0,0,0,47,64,67,88,75,16,16,0,21,67,57,56,6,5455,0
St Mary's College of Maryland,1985,1430,419,92,21,570,670,540,650,540,650,25,30,1859,1789,70,1820,1762,58,383,383,0,39,27,12,0,72,29,13630,14445,14773,14864,29599,43399,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Baccalaureate Colleges--Arts & Sciences,1858,1789,69,1819,39,1762,57,0,3,8,6,0,75,4,3,2,3,60,0,3,8,6,0,74,4,3,2,3,59,0,5,5,0,0,90,0,0,0,5,82,0,0,0,0,0,0,0,0,71,78,79,72,61,12,12,1,20,58,42,41,3,14712,0
Sojourner-Douglass College,0,0,0,0,0,0,0,0,0,0,0,0,0,1081,684,397,1038,665,373,91,81,10,43,19,24,0,0,0,7920,7920,7920,9830,0,0,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,1080,549,531,1037,43,530,507,0,0,89,1,0,3,0,0,7,0,89,0,0,88,1,0,3,0,0,8,0,89,0,0,98,0,0,2,0,0,0,0,91,0,0,0,0,0,0,0,0,10,15,17,93,93,64,52,34,2,63,51,51,0,0,0
St John's College,342,277,126,0,0,0,0,0,0,0,0,0,0,490,483,7,441,438,3,125,125,0,49,45,4,0,81,45,42192,43656,45004,46296,58630,58630,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,490,486,4,443,47,440,3,1,2,2,5,0,74,3,3,10,2,44,0,2,2,6,0,74,3,2,10,2,45,2,0,2,0,0,74,4,15,2,0,34,0,0,0,0,0,0,0,0,56,63,63,75,72,21,21,14,5,72,69,55,19,0,142620
Towson University,17750,10710,2748,92,21,490,580,500,590,500,580,21,25,22499,17786,4713,18779,16588,2191,2748,2747,1,3720,1198,2522,0,60,26,7656,7906,8132,8342,23166,34844,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),22499,17786,4713,18779,3720,16588,2191,0,5,15,5,0,65,3,5,3,5,62,0,5,15,5,0,65,3,4,2,5,60,0,4,13,2,0,64,1,10,6,4,70,2023,74,686,25,37,1,2,0,40,61,65,75,47,23,22,2,20,34,54,53,5,2990,0
Maryland University of Integrative Health,0,0,0,0,0,0,0,0,0,0,0,0,0,591,447,144,0,0,0,0,0,0,591,447,144,0,0,0,0,0,0,0,0,0,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (smaller programs),591,447,144,0,591,0,0,0,5,12,2,0,65,1,11,3,5,87,0,0,0,0,0,0,0,0,0,0,0,0,5,12,2,0,65,1,11,3,5,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1150
Stevenson University,5318,3169,752,93,20,440,540,450,560,450,540,18,23,4269,3379,890,3826,3300,526,752,752,0,443,79,364,0,60,24,22090,23636,25310,27082,43556,43556,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Master's Colleges and Universities (smaller programs),4404,3368,1036,3965,439,3288,677,0,3,29,4,0,56,2,5,1,3,66,0,3,28,4,0,57,2,5,0,3,65,0,3,36,3,0,48,2,5,2,3,75,0,0,0,0,0,0,0,0,42,53,56,99,99,33,33,2,19,98,67,65,10,0,16880
Washington College,4786,3185,350,95,22,520,640,520,640,510,610,24,29,1512,1441,71,1483,1440,43,349,349,0,29,1,28,0,67,11,36738,38542,39944,41120,54312,54312,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1512,1441,71,1483,29,1440,43,0,1,3,3,0,77,2,5,8,1,57,0,1,3,4,0,77,2,5,8,1,58,0,0,3,0,0,79,0,17,0,0,48,0,0,0,0,0,0,0,0,65,68,68,93,91,15,15,11,13,91,73,72,10,0,109212
McDaniel College,2942,2232,453,83,23,500,600,500,610,0,0,21,27,3256,1812,1444,1692,1658,34,453,453,0,1564,154,1410,0,76,20,33280,34780,35800,36960,48300,48300,Maryland,Maryland,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Small,Baccalaureate Colleges--Arts & Sciences,3229,1817,1412,1692,1537,1660,32,0,3,10,5,0,76,0,6,0,3,64,0,4,12,6,0,73,0,4,1,4,53,0,2,8,3,0,79,0,7,0,2,76,0,0,0,0,0,0,0,0,64,72,72,99,99,32,32,30,21,99,70,70,7,0,39288
American International College,1928,1307,346,90,8,390,490,390,500,380,490,16,21,3629,1730,1899,1534,1416,118,357,355,2,2095,314,1781,4,68,26,26700,27902,29158,30040,44900,44900,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),3657,1722,1935,1513,2144,1397,116,0,1,14,4,0,64,2,13,0,2,69,0,2,25,8,1,44,4,15,1,2,58,0,1,6,1,0,78,1,12,0,2,78,0,0,0,0,0,0,0,0,28,42,45,100,100,51,51,12,30,100,87,87,17,0,2819
Amherst College,7927,1132,466,63,41,670,760,680,770,670,760,30,34,1787,1787,0,1787,1787,0,466,466,0,0,0,0,0,14,41,40862,42898,44610,46574,61544,61544,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1785,1785,0,1785,0,1785,0,0,13,12,13,0,42,6,6,10,13,50,0,13,12,13,0,42,6,6,10,13,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,96,96,65,57,17,17,13,2,57,11,8,3,0,930009
Anna Maria College,2081,1614,243,0,0,0,0,0,0,0,0,0,0,1554,907,647,1143,845,298,243,243,0,411,62,349,23,78,15,28204,29860,30676,32134,48146,48146,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Master's Colleges and Universities (medium programs),1540,907,633,1143,397,845,298,0,1,8,6,0,71,2,10,0,2,54,0,1,8,7,0,72,2,10,0,1,57,1,2,9,6,0,71,0,11,0,3,44,185,76,57,23,1,0,0,0,43,47,47,100,100,52,50,30,47,100,94,93,24,0,2744
Assumption College,4659,3458,502,0,0,0,0,0,0,0,0,0,0,2687,2185,502,2178,2015,163,502,502,0,509,170,339,2,74,15,31305,32545,33805,34975,48521,48521,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (medium programs),2756,2192,564,2240,516,2022,218,0,2,4,7,0,71,1,14,1,2,63,0,2,5,7,0,69,2,14,1,2,61,0,1,4,5,0,75,0,12,2,1,72,325,65,173,34,4,1,0,0,70,73,73,99,99,24,24,4,21,99,78,77,19,0,33993
Bay Path College,908,523,135,96,7,430,550,410,540,410,530,18,22,2265,1558,707,1420,1139,281,135,135,0,845,419,426,55,58,26,25515,27045,28532,29959,44559,44559,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,2357,1588,769,1458,899,1179,279,0,2,10,12,0,62,2,11,0,2,96,0,1,12,15,0,59,2,10,0,2,100,0,2,8,6,0,68,1,14,0,2,88,84,62,49,36,3,2,0,0,46,53,55,100,100,52,52,21,39,100,96,91,14,0,16957
Becker College,3936,2462,361,89,12,450,550,440,570,423,530,19,24,1902,1449,453,1902,1449,453,361,361,0,0,0,0,103,63,15,26880,28490,30340,31500,47160,47160,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,1902,1449,453,1902,0,1449,453,0,1,8,9,0,66,3,11,1,1,57,0,1,8,9,0,66,3,11,1,1,57,0,0,0,0,0,0,0,0,0,0,0,178,50,181,50,0,0,0,0,16,24,24,100,100,36,36,16,20,100,90,90,23,0,2496
Bentley University,7493,3281,974,89,27,540,630,600,680,550,650,26,30,5662,4893,769,4248,4142,106,974,974,0,1414,751,663,0,44,30,37058,38328,39628,41110,56930,56930,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),5658,4893,765,4247,1411,4142,105,0,7,3,6,0,58,2,5,20,7,42,0,8,3,7,0,61,2,4,16,8,40,0,6,2,3,0,49,1,5,34,6,50,0,0,0,0,0,0,0,0,81,86,87,77,69,17,17,17,11,69,55,49,6,0,43423
Boston College,24538,7905,2215,75,44,620,710,650,740,640,730,30,33,14077,12784,1293,9601,9293,308,2215,2215,0,4476,3491,985,0,32,28,40542,42204,43878,45622,60706,60706,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Research Universities (high research activity),14309,12916,1393,9698,4611,9390,308,0,8,4,9,0,57,2,11,8,8,55,0,9,4,10,0,57,3,11,5,9,53,0,5,4,6,0,57,2,12,15,5,57,0,0,0,0,0,0,0,0,89,91,91,59,45,15,15,15,5,44,44,44,0,0,137445
Boston University,44006,20071,3877,84,40,570,670,610,720,600,690,26,30,32411,25795,6616,18164,16593,1571,3807,3807,0,14247,9202,5045,0,46,19,39864,41420,42994,44880,61446,61446,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (very high research activity),32411,25797,6614,18165,14246,16593,1572,0,11,3,7,0,46,3,12,18,11,58,0,12,3,9,0,46,4,10,16,13,60,0,8,3,5,0,46,2,15,21,8,56,0,0,0,0,0,0,0,0,80,84,84,62,54,15,15,10,6,53,48,47,10,0,43924
Brandeis University,9496,3517,833,75,28,600,710,630,760,620,720,28,32,5825,5385,440,3614,3599,15,833,833,0,2211,1786,425,0,37,24,40289,41860,44294,45856,61070,61070,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Research Universities (very high research activity),5825,5386,439,3614,2211,3599,15,0,9,5,5,0,44,2,13,21,9,54,0,12,5,7,0,50,3,8,15,12,57,0,5,4,3,0,35,0,21,32,5,51,163,20,503,60,167,20,0,0,86,89,90,65,57,18,18,17,8,56,50,50,5,0,109992
Bridgewater State University,5920,4653,1476,94,4,440,540,450,550,0,0,19,24,11267,8473,2794,9615,8034,1581,1476,1452,24,1652,439,1213,0,79,32,7053,7552,8053,8053,22753,28893,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),11267,8473,2794,9615,1652,8034,1581,0,2,7,5,0,80,2,3,1,2,60,0,2,8,5,0,80,3,1,0,2,58,0,1,3,3,0,78,1,10,2,1,72,1401,95,71,5,2,0,0,0,29,52,58,79,64,30,29,23,60,48,70,69,18,2933,0
Cambridge College,0,0,0,0,0,0,0,0,0,0,0,0,0,3112,1198,1914,1048,234,814,156,19,137,2064,964,1100,0,0,0,13240,13240,13240,13392,0,0,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),3114,1198,1916,1050,2064,234,816,0,3,29,16,0,30,1,16,4,3,72,0,4,33,23,0,16,1,19,4,4,65,0,3,27,12,0,37,1,15,5,3,75,0,0,0,0,0,0,0,0,2,2,2,33,25,25,25,0,8,4,33,33,0,0,4666
Clark University,5551,3416,621,0,0,0,0,0,0,0,0,0,0,3551,3153,398,2380,2270,110,621,614,7,1171,883,288,0,62,18,36420,37350,38450,39550,48770,48770,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Research Universities (high research activity),3551,3153,398,2380,1171,2270,110,0,4,3,5,0,52,2,10,23,4,58,0,6,4,7,0,61,2,8,12,6,58,0,2,2,2,0,34,1,15,44,2,56,0,0,0,0,0,0,0,0,76,80,81,89,87,24,24,24,12,87,58,58,5,0,96250
Curry College,6780,4537,643,96,11,420,515,420,520,0,0,16,20,3062,2126,936,2837,2068,769,640,640,0,225,58,167,0,67,14,30815,32210,33465,34715,50845,50845,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),3074,2106,968,2849,225,2068,781,0,2,9,5,0,66,1,16,1,2,62,0,2,9,5,0,67,2,15,1,2,63,1,2,9,4,0,54,0,28,1,2,61,0,0,0,0,0,0,0,0,35,44,45,95,92,32,32,32,28,92,75,75,28,0,29310
Eastern Nazarene College,941,525,165,90,25,410,550,410,530,400,540,17,24,1478,1409,69,1321,1302,19,165,165,0,157,107,50,10,56,31,23772,25300,26884,27922,38522,38522,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1478,1409,69,1321,157,1302,19,0,2,21,11,0,59,3,2,2,2,74,0,2,21,11,0,58,3,2,2,2,73,1,1,19,6,0,70,1,0,2,1,80,0,0,0,0,0,0,0,0,41,54,58,100,100,50,47,46,28,100,80,79,13,0,10706
Emerson College,8198,3933,863,84,32,590,670,550,650,580,670,26,30,4556,4404,152,3756,3698,58,863,862,1,800,706,94,0,48,22,31422,32728,34198,35730,53554,53554,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),4561,4375,186,3758,803,3668,90,0,3,3,9,0,62,4,10,7,4,65,0,4,3,10,0,64,5,10,5,4,63,0,1,5,5,0,53,1,13,21,2,75,179,21,645,75,39,5,0,0,80,81,81,72,57,15,15,11,7,55,58,57,15,0,27474
Emmanuel College,6623,4006,515,93,18,500,590,500,590,510,600,21,26,2432,1863,569,2171,1854,317,515,515,0,261,9,252,0,60,13,30765,32300,33650,34670,51363,51363,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (smaller programs),2436,1874,562,2176,260,1857,319,0,3,6,5,0,66,2,16,1,3,74,0,3,5,5,0,66,2,17,1,3,73,1,2,17,5,0,58,0,15,0,3,81,262,51,246,48,7,1,0,0,51,57,58,99,99,30,26,15,37,99,80,79,18,0,31821
Endicott College,3675,2633,629,99,26,480,570,500,590,480,570,21,25,4551,2797,1754,2670,2435,235,629,629,0,1881,362,1519,15,72,24,26248,27130,28166,28926,45536,45536,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),5029,2819,2210,2724,2305,2430,294,0,1,2,2,0,80,1,12,1,1,68,0,1,2,4,0,82,2,7,2,1,60,0,1,2,1,0,78,0,17,1,1,77,0,0,0,0,0,0,0,0,65,69,70,94,89,17,17,7,17,89,75,74,18,0,13758
Fisher College,2412,1513,239,69,5,370,460,360,460,0,0,0,0,1930,1229,701,1930,1229,701,359,294,65,0,0,0,187,63,16,24600,25778,26775,27575,46840,46840,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate/Associate's Colleges,1930,1229,701,1930,0,1229,701,0,1,9,8,0,33,1,42,6,2,74,0,1,9,8,0,33,1,42,6,2,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,40,86,86,65,64,18,37,82,70,61,9,0,0
Fitchburg State University,3528,2544,759,96,9,440,540,450,550,430,530,18,22,6729,3494,3235,4079,3344,735,814,795,19,2650,150,2500,0,72,30,7800,8300,8710,8985,20690,26770,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Midsize,Master's Colleges and Universities (larger programs),6680,3632,3048,4245,2435,3438,807,0,2,4,6,0,78,2,7,1,2,64,0,2,5,9,0,76,2,5,1,2,56,0,1,2,2,0,82,1,10,2,2,76,724,90,72,9,3,0,2,0,20,44,50,90,68,38,38,29,56,46,78,78,10,2349,0
Framingham State University,5433,2807,826,98,2,470,560,480,570,470,560,19,25,6298,3959,2339,4585,3885,700,808,803,5,1713,74,1639,0,52,29,7065,7580,8080,8080,22804,28884,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),6429,3982,2447,4584,1845,3884,700,0,2,6,8,0,77,2,4,0,2,68,0,2,8,9,0,76,3,2,0,2,63,0,2,2,4,1,78,1,11,0,3,81,784,97,25,3,0,0,0,0,33,47,51,93,84,31,30,0,55,77,75,74,21,4663,0
Gordon College,4009,1657,481,89,21,516,653,499,639,507,648,22,29,2109,1775,334,1707,1669,38,480,479,1,402,106,296,0,41,29,29458,30626,32100,33230,44860,44860,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,2073,1768,305,1710,363,1668,42,0,3,3,7,0,79,3,1,4,3,65,0,3,3,7,0,77,3,1,5,4,62,0,1,1,5,0,86,1,5,2,1,81,0,0,0,0,0,0,0,0,58,70,71,99,99,25,25,18,16,95,79,74,15,0,20675
Hampshire College,2856,1819,361,0,0,0,0,0,0,0,0,0,0,1468,1468,0,1468,1468,0,381,381,0,0,0,0,0,64,20,41299,42900,44700,46625,60155,60155,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1492,1492,0,1492,0,1492,0,0,2,3,9,0,66,5,8,6,2,57,0,2,3,9,0,66,5,8,6,2,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,65,66,88,87,15,15,7,6,71,59,59,4,0,27750
Harvard University,35023,2047,1659,86,38,700,800,710,800,710,800,32,35,28775,20825,7950,10542,7238,3304,1659,1659,0,18233,13587,4646,9,6,81,38415,39851,39966,42292,59950,59950,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Research Universities (very high research activity),28297,20370,7927,10534,17763,7240,3294,0,13,5,7,0,45,3,5,21,13,49,0,16,6,9,0,48,5,5,11,16,50,0,11,4,6,0,43,2,6,27,11,48,0,0,0,0,0,0,0,0,87,95,97,75,58,15,15,10,4,58,9,3,8,0,1392761
College of the Holy Cross,7115,2346,722,0,0,0,0,0,0,0,0,0,0,2912,2877,35,2912,2877,35,719,719,0,0,0,0,0,33,31,39892,41488,43400,44272,57832,57832,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,2912,2877,35,2912,0,2877,35,0,4,4,11,0,68,3,9,1,4,50,0,4,4,11,0,68,3,9,1,4,50,0,0,0,0,0,0,0,0,0,0,0,260,36,447,62,12,2,0,0,89,91,91,72,55,15,15,7,8,54,57,57,4,0,203172
Lasell College,3584,2729,485,92,14,440,540,440,530,0,0,18,23,2076,1763,313,1687,1649,38,485,484,1,389,114,275,0,76,18,26000,27500,29000,30000,46000,46000,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,2081,1767,314,1687,394,1649,38,1,2,9,8,0,68,3,5,5,2,65,0,2,7,9,0,71,3,5,3,2,64,2,2,16,5,0,56,1,8,12,2,70,0,0,0,0,0,0,0,0,47,52,53,98,98,31,30,4,22,96,93,93,19,0,17222
Lesley University,2605,1758,316,92,17,490,600,460,570,490,590,21,26,5018,2617,2401,1905,1519,386,316,316,0,3113,1098,2015,0,67,18,29525,30545,31575,32375,49765,49765,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),5195,2554,2641,1948,3247,1460,488,0,2,5,5,0,68,2,14,2,3,82,0,4,5,7,0,68,3,11,2,4,77,0,2,6,3,0,68,2,16,3,2,85,0,0,0,0,0,0,0,0,35,42,46,97,96,26,26,5,12,96,83,82,18,0,39431
University of Massachusetts-Lowell,9126,5838,1648,96,11,500,600,530,630,0,0,22,28,16901,10369,6532,12713,9082,3631,1648,1624,24,4188,1287,2901,48,64,28,10506,11297,11847,12097,24961,39010,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (high research activity),16932,10322,6610,12734,4198,9034,3700,0,8,6,7,0,64,2,6,6,8,41,0,9,6,9,0,65,2,6,3,9,39,0,7,5,4,0,63,1,5,16,7,47,0,0,0,0,0,0,0,0,28,47,54,90,76,30,30,13,59,62,74,73,9,4819,0
University of Massachusetts-Amherst,36012,22665,4672,92,20,540,640,570,670,0,0,24,29,28518,22808,5710,22134,20505,1629,4672,4669,3,6384,2303,4081,73,63,21,11917,12797,13415,13443,26282,40998,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (very high research activity),28518,22808,5710,22134,6384,20505,1629,0,7,4,5,0,63,2,11,7,7,49,0,8,4,5,0,66,2,13,2,8,49,0,5,4,5,0,53,2,8,24,5,50,3390,72,1096,23,180,4,20,0,59,71,73,88,75,22,22,16,53,55,61,60,11,9733,0
University of Massachusetts-Boston,8170,5834,1413,84,0,430,550,470,580,0,0,0,0,16177,9999,6178,12266,8759,3507,1413,1313,100,3911,1240,2671,0,71,24,10611,11407,11966,11966,0,0,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (high research activity),16277,9999,6278,12366,3911,8759,3607,0,10,13,10,0,45,2,9,10,10,59,0,12,15,12,0,41,2,9,10,12,56,0,5,7,5,0,60,2,10,10,6,69,1124,80,57,4,229,16,3,0,15,35,44,80,68,45,45,31,59,54,61,61,3,5242,0
Massachusetts Institute of Technology,18989,1548,1115,85,40,680,770,750,800,690,780,33,35,11301,11138,163,4528,4499,29,1115,1115,0,6773,6639,134,0,8,72,39212,40732,42050,43498,59020,59020,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Research Universities (very high research activity),11301,11138,163,4528,6773,4499,29,0,16,3,9,0,34,3,5,29,16,37,0,24,5,16,0,37,5,2,10,24,45,0,11,1,5,0,32,2,7,41,11,31,75,7,929,83,110,10,1,0,84,91,93,87,56,18,16,15,2,55,19,17,3,0,980404
Massachusetts Maritime Academy,787,608,300,96,18,460,550,500,600,440,530,20,24,1480,1333,147,1380,1333,47,331,331,0,100,0,100,0,77,49,8293,6867,7202,7127,22073,36979,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Midsize,Baccalaureate Colleges--Diverse Fields,1476,1333,143,1376,100,1333,43,2,3,2,1,0,90,0,2,0,3,12,2,3,2,1,0,90,0,2,1,3,12,0,3,4,0,0,87,1,5,0,3,18,0,0,0,0,0,0,0,0,49,64,67,89,53,19,19,15,26,53,86,86,13,6277,0
Merrimack College,6314,4963,794,0,0,0,0,0,0,0,0,0,0,3032,2790,242,2752,2604,148,794,794,0,280,186,94,3,79,16,31380,32865,33920,35085,49685,49685,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,3067,2790,277,2758,309,2604,154,0,2,3,6,0,62,1,21,6,2,52,0,2,3,6,0,66,1,16,6,2,49,0,1,0,2,0,30,0,64,4,1,74,0,0,0,0,0,0,0,0,54,59,60,96,95,21,21,1,20,95,83,83,23,0,14432
Mount Holyoke College,3732,1747,527,0,0,0,0,0,0,0,0,0,0,2251,2188,63,2183,2151,32,513,511,2,68,37,31,0,47,30,40256,41456,41456,41456,55496,55496,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,2251,2188,63,2183,68,2151,32,0,8,6,8,0,48,3,3,24,8,99,0,9,6,8,0,47,3,2,25,9,100,0,0,4,9,0,71,6,10,0,0,85,0,0,0,0,0,0,0,0,76,81,82,79,75,13,13,11,5,75,49,39,13,0,248174
Mount Ida College,2371,1438,307,89,11,400,490,390,490,390,490,15,20,1281,1176,105,1261,1167,94,307,307,0,20,9,11,41,61,21,24500,25915,26909,29377,44945,44945,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,1288,1176,112,1268,20,1167,101,0,2,11,11,0,59,3,8,5,2,66,0,2,12,11,0,59,3,8,5,2,66,0,0,5,0,0,40,5,15,35,0,70,158,51,134,44,14,5,1,0,29,37,39,98,97,48,48,10,27,96,81,80,27,0,9579
Newbury College,4915,2926,270,43,0,380,480,380,460,380,460,0,0,962,851,111,962,851,111,270,268,2,0,0,0,6,60,9,25100,26600,27850,28950,44550,44550,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,962,851,111,962,0,851,111,0,6,33,15,0,42,0,0,4,6,56,0,6,33,15,0,42,0,0,4,6,56,0,0,0,0,0,0,0,0,0,0,0,165,62,94,35,9,3,0,0,24,30,30,98,97,55,55,18,36,97,84,83,17,0,1732
Nichols College,2499,2011,414,83,8,420,500,420,530,410,492,19,23,1525,1165,360,1325,1125,200,381,380,1,200,40,160,6,80,21,28870,30400,31700,32370,46690,46690,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1459,1138,321,1281,178,1100,181,0,1,5,7,0,83,2,0,1,1,41,0,1,5,7,0,82,3,0,1,2,41,1,0,4,3,0,92,0,0,0,0,48,229,60,146,38,4,1,1,0,42,46,47,91,91,33,33,24,21,91,85,85,18,0,5331
Massachusetts College of Liberal Arts,1689,1135,313,89,8,480,580,450,550,0,0,20,25,1716,1374,342,1538,1353,185,274,271,3,178,21,157,0,67,28,7575,8075,8525,8525,21363,30308,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,1716,1374,342,1538,178,1353,185,0,1,9,6,0,75,2,6,1,1,60,0,1,9,6,0,75,2,5,1,1,60,0,1,4,2,0,81,2,10,0,1,60,195,71,80,29,0,0,0,0,38,54,57,97,78,48,48,14,39,61,96,96,7,4700,0
Northeastern University,47364,15301,2891,53,33,640,730,660,750,640,720,30,33,20915,18612,2303,13223,13204,19,2891,2891,0,7692,5408,2284,22,32,19,37142,38602,40086,41686,58096,58096,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (high research activity),20053,17957,2096,13223,6830,13204,19,0,8,3,5,0,44,3,13,24,8,50,0,10,3,7,0,49,4,9,18,10,51,0,4,3,3,0,34,1,20,36,4,46,0,0,0,0,0,0,0,0,0,79,83,77,72,16,15,13,7,71,49,49,0,0,23979
College of Our Lady of the Elms,993,744,198,90,8,420,520,400,520,410,530,16,22,1678,1021,657,1347,1006,341,192,187,5,331,15,316,4,75,27,27157,28208,29112,30132,44612,44612,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1678,1021,657,1347,331,1006,341,1,2,7,9,0,54,0,26,1,2,77,1,2,8,10,0,54,0,23,1,2,76,0,1,5,4,0,53,0,36,0,1,81,0,0,0,0,0,0,0,0,57,67,68,100,100,49,49,11,36,100,85,85,12,0,5787
Pine Manor College,535,343,119,50,3,320,440,340,420,330,440,0,0,353,327,26,322,296,26,119,119,0,31,31,0,1,64,35,21400,22042,23744,24930,40870,40870,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,346,338,8,313,33,305,8,0,5,18,15,0,16,11,8,27,5,84,0,5,20,15,0,8,12,9,29,5,85,0,0,3,9,0,85,0,3,0,0,76,28,53,25,47,0,0,0,0,28,32,32,77,74,52,52,17,33,74,58,58,11,0,19818
Salem State University,4855,3364,1095,94,3,440,540,450,540,0,0,19,24,9299,6196,3103,7667,5837,1830,1090,1077,13,1632,359,1273,0,69,33,7230,7670,8050,8130,22084,28224,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),9301,6194,3107,7664,1637,5834,1830,0,3,7,10,0,70,2,4,4,3,63,0,3,8,10,0,69,2,3,4,3,61,0,2,3,5,0,76,0,10,4,2,74,1021,94,49,5,17,2,0,0,22,39,46,88,71,40,40,24,53,63,76,75,10,2122,0
Simmons College,4239,2076,339,91,24,520,630,520,620,530,640,23,28,4629,2338,2291,1730,1575,155,339,339,0,2899,763,2136,0,49,16,32230,33356,34350,35380,52610,52610,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),4655,2335,2320,1732,2923,1577,155,0,5,6,5,0,70,2,9,2,5,92,0,9,6,6,0,67,3,5,3,9,100,0,3,6,5,0,71,2,12,1,3,87,187,55,147,43,4,1,0,0,66,70,71,97,97,26,25,25,18,97,72,71,12,0,34745
Bard College at Simon's Rock,218,201,145,0,0,0,0,0,0,0,0,0,0,349,340,9,349,340,9,145,145,0,0,0,0,70,92,72,41982,43840,45125,46713,61403,61403,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate/Associate's Colleges,350,341,9,350,0,341,9,0,6,7,2,0,57,9,10,10,6,58,0,6,7,2,0,57,9,10,10,6,58,0,0,0,0,0,0,0,0,0,0,0,22,15,104,72,17,12,1,1,0,0,0,84,84,29,28,26,4,84,56,56,3,0,36777
Smith College,4403,1897,643,0,0,0,0,0,0,0,0,0,0,3033,2937,96,2606,2585,21,643,643,0,427,352,75,0,43,34,38898,40070,41460,43114,60167,60167,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,3033,2937,96,2606,427,2585,21,0,11,5,9,0,48,5,9,12,11,98,0,13,5,10,0,46,5,9,13,13,100,1,4,7,8,0,63,4,8,6,4,85,102,16,414,64,127,20,0,0,82,85,86,73,65,21,21,18,9,65,57,52,7,0,462144
Springfield College,2231,1560,513,93,18,450,550,470,580,0,0,20,25,3286,3024,262,2204,2141,63,510,510,0,1082,883,199,0,70,33,28585,30660,31690,32560,46480,46480,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),3255,3004,251,2182,1073,2128,54,0,1,7,6,0,77,1,6,1,1,57,1,1,4,5,0,82,1,5,1,1,48,0,2,11,8,0,69,1,8,3,2,74,0,0,0,0,0,0,0,0,58,67,69,99,98,24,24,24,15,98,96,96,17,0,16906
University of Massachusetts-Dartmouth,8063,5816,1443,98,9,470,570,490,590,460,560,21,25,9053,7060,1993,7437,6373,1064,1519,1498,21,1616,687,929,0,72,25,10389,11135,11681,11681,25355,37830,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Midsize,Master's Colleges and Universities (larger programs),9053,7060,1993,7437,1616,6373,1064,0,3,10,7,0,66,3,5,5,3,49,0,3,11,7,0,67,4,6,2,3,48,0,2,3,5,0,62,2,3,23,2,53,1446,95,67,4,5,0,1,0,30,45,49,90,75,40,40,4,63,62,76,76,9,5411,0
Stonehill College,6548,4643,610,84,19,510,610,520,620,510,620,22,28,2481,2458,23,2481,2458,23,610,610,0,0,0,0,0,71,13,32620,33920,35110,36160,52370,52370,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,2481,2458,23,2481,0,2458,23,0,2,3,4,0,85,2,4,1,2,62,0,2,3,4,0,85,2,4,1,2,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,84,85,92,89,18,17,10,17,89,70,70,15,0,66806
Suffolk University,9275,7652,1188,89,9,440,560,450,570,440,560,20,25,8796,6935,1861,5779,5356,423,1188,1182,6,3017,1579,1438,2,83,16,28526,29894,30792,31716,49979,49979,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),8675,6815,1860,5658,3017,5236,422,0,7,6,9,0,49,1,12,16,7,56,0,7,5,11,0,40,1,15,19,7,55,0,6,6,6,0,64,1,6,11,6,57,0,0,0,0,0,0,0,0,41,52,55,80,77,35,35,2,27,77,68,68,10,0,19361
Tufts University,18419,3471,1314,62,38,680,750,690,770,680,770,30,33,10864,10004,860,5245,5142,103,1301,1301,0,5619,4862,757,0,19,38,41598,42962,44666,46598,61000,61000,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Research Universities (very high research activity),10872,10051,821,5180,5692,5138,42,0,12,3,5,0,55,3,10,11,12,55,0,11,4,6,0,56,4,10,8,11,51,0,13,2,4,0,53,3,10,14,14,58,244,19,896,69,167,13,0,0,87,91,92,44,37,10,10,10,6,36,26,25,8,0,130838
Wellesley College,4765,1387,595,77,43,660,760,650,750,670,760,29,33,2345,2215,130,2345,2215,130,593,593,0,0,0,0,0,29,43,39666,40660,42082,43554,59092,59092,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,2474,2344,130,2474,0,2344,130,0,22,6,10,0,41,6,5,11,22,98,0,22,6,10,0,41,6,5,11,22,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,89,91,68,59,19,19,8,2,58,31,20,14,0,593054
Wentworth Institute of Technology,6146,3541,900,89,14,480,580,530,630,470,560,21,27,4179,3724,455,4012,3634,378,900,877,23,167,90,77,52,58,25,23845,25025,27108,29200,46750,46750,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,4179,3724,455,4012,167,3634,378,0,6,5,4,0,60,3,16,6,6,19,0,6,5,4,0,59,3,17,6,6,18,0,4,3,2,0,83,2,4,2,4,31,511,57,321,36,66,7,2,0,50,60,61,99,99,31,31,8,21,99,81,81,18,0,18536
Western New England University,5988,4881,697,92,20,470,570,490,610,0,0,22,26,3724,2960,764,2648,2498,150,697,693,4,1076,462,614,0,82,14,29812,30844,31912,33020,48890,48890,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (medium programs),3800,2955,845,2667,1133,2498,169,0,4,5,6,0,74,1,8,2,4,44,0,3,5,8,0,77,2,4,2,3,40,1,5,5,4,0,65,0,17,2,5,56,0,0,0,0,0,0,0,0,52,58,60,97,96,29,29,3,17,96,81,80,20,0,14958
Westfield State University,5137,3846,1288,92,7,450,540,460,550,0,0,17,22,6395,5241,1154,5716,5020,696,1288,1286,2,679,221,458,0,75,33,7431,7886,8297,8694,21296,27376,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),6371,5220,1151,5692,679,4999,693,0,1,4,7,0,79,3,4,1,1,53,0,1,4,7,0,79,4,4,1,1,52,1,0,4,5,0,80,1,8,0,0,68,0,0,0,0,0,0,0,0,44,57,59,88,45,32,32,19,36,23,76,76,11,934,0
Wheaton College,3944,2657,466,0,0,0,0,0,0,0,0,0,0,1640,1638,2,1640,1638,2,458,458,0,0,0,0,0,67,18,41084,41894,43774,45074,58574,58574,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1654,1645,9,1654,0,1645,9,0,4,5,7,0,70,3,1,9,4,65,0,4,5,7,0,70,3,1,9,4,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,75,76,93,91,17,16,15,17,91,75,75,9,0,107486
Wheelock College,1570,1149,217,91,15,440,550,450,540,450,540,19,25,1348,1064,284,879,811,68,217,217,0,469,253,216,0,73,19,28940,30055,30955,31880,47870,47870,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),1378,1065,313,880,498,809,71,0,3,12,9,0,52,2,18,4,3,89,0,3,11,11,0,55,3,15,2,3,88,0,3,14,5,0,48,1,22,7,3,90,0,0,0,0,0,0,0,0,46,50,54,100,100,31,31,25,25,100,80,80,16,0,31112
Williams College,7069,1203,547,86,37,670,780,660,780,680,780,30,34,2151,2117,34,2097,2063,34,543,543,0,54,54,0,0,17,45,41434,43190,44920,46600,61850,61850,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,2150,2118,32,2096,54,2064,32,0,10,7,12,0,56,6,0,8,10,52,0,10,8,12,0,57,6,0,7,10,52,0,0,0,2,0,35,0,0,63,0,48,53,10,445,82,46,8,0,0,90,94,95,65,53,19,19,5,4,53,29,27,3,0,888422
Worcester Polytechnic Institute,8578,4425,1103,0,0,0,0,0,0,0,0,0,0,6296,4719,1577,4134,3959,175,1103,1103,0,2162,760,1402,0,52,25,38700,40030,41380,42778,58060,58060,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Doctoral/Research Universities,6296,4719,1577,4134,2162,3959,175,0,5,2,6,0,57,3,8,20,5,31,0,5,2,7,0,63,3,7,12,5,33,0,4,1,3,0,45,2,11,34,4,27,0,0,0,0,0,0,0,0,70,80,81,98,98,14,14,11,8,98,60,59,12,0,99061
Worcester State University,4149,2515,780,89,9,450,550,470,560,450,540,20,24,6447,4268,2179,5556,4115,1441,780,775,5,891,153,738,0,61,31,7155,7653,8157,8157,22718,28798,Massachusetts,Massachusetts,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (medium programs),6447,4268,2179,5556,891,4115,1441,0,3,6,7,0,73,2,7,1,4,62,1,4,6,7,0,72,2,7,1,4,60,0,2,3,4,0,80,1,8,1,3,76,734,94,31,4,15,2,0,0,34,45,49,88,69,33,33,31,62,44,71,70,11,2073,0
Adrian College,4675,2631,496,2,85,400,530,410,440,0,0,19,24,1650,1604,46,1641,1595,46,446,446,0,9,9,0,2,56,19,25900,27440,29156,30758,42740,42740,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1658,1591,67,1649,9,1582,67,0,1,10,2,0,75,4,8,0,1,49,0,1,10,2,0,75,4,8,0,1,49,0,0,11,0,0,78,0,11,0,0,33,0,0,0,0,0,0,0,0,39,53,54,98,98,50,50,47,57,97,85,85,10,0,16118
Albion College,4430,2498,346,5,97,520,580,510,590,0,0,22,28,1307,1272,35,1307,1272,35,346,346,0,0,0,0,0,56,14,31186,32662,34194,36051,48195,48195,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,1307,1272,35,1307,0,1272,35,0,2,3,3,0,80,3,5,4,2,49,0,2,3,3,0,80,3,5,4,2,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,73,74,99,99,24,24,11,58,99,67,66,10,0,121935
Alma College,2699,1833,376,54,98,460,550,470,630,480,630,22,27,1419,1378,41,1419,1378,41,378,378,0,0,0,0,0,68,21,27580,29230,30960,32660,44287,44287,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1419,1378,41,1419,0,1378,41,1,2,2,3,0,86,2,3,1,2,55,1,2,2,3,0,86,2,3,1,2,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,61,100,100,34,33,22,65,100,95,95,11,0,74030
Andrews University,2551,957,388,47,66,470,620,450,600,460,580,20,26,3516,2324,1192,1905,1618,287,323,309,14,1611,706,905,3,38,41,22242,23428,24478,25470,35538,35538,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Doctoral/Research Universities,3516,2324,1192,1905,1611,1618,287,0,9,22,13,0,32,2,2,20,9,47,0,12,22,13,0,30,3,2,17,13,56,0,5,22,13,0,34,1,1,24,5,37,65,20,193,60,61,19,2,1,29,52,60,100,100,35,35,14,10,100,60,60,4,0,13019
Aquinas College,2789,1990,391,0,100,0,0,0,0,0,0,21,26,2001,1649,352,1863,1634,229,391,390,1,138,15,123,7,71,20,23206,24286,25250,26460,38012,38012,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (medium programs),2001,1649,352,1863,138,1634,229,0,1,3,5,0,85,2,3,1,1,62,0,1,3,5,0,85,2,3,1,1,62,1,1,4,4,0,83,1,5,1,1,72,358,92,32,8,1,0,0,0,30,53,59,99,99,31,31,30,66,99,73,73,10,0,14687
Baker College of Owosso,0,0,0,0,0,0,0,0,0,0,0,0,0,2763,1774,989,2749,1772,977,632,557,75,14,2,12,376,0,0,7380,7560,7740,8100,20100,20100,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate/Associate's Colleges,2828,1713,1115,2815,13,1711,1104,0,0,2,2,0,93,3,0,0,0,58,0,0,2,2,0,93,3,0,0,0,58,0,0,0,0,0,100,0,0,0,0,69,0,0,0,0,0,0,0,0,2,9,9,96,89,72,72,12,34,72,63,63,2,0,8524
Baker College of Flint,0,0,0,0,0,0,0,0,0,0,0,0,0,4973,2853,2120,4944,2846,2098,880,688,192,29,7,22,584,0,0,7380,7560,7740,8100,20100,20100,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate/Associate's Colleges,4977,2746,2231,4948,29,2739,2209,0,1,20,2,0,74,3,0,0,1,65,0,1,20,2,0,74,3,0,0,1,65,0,0,3,3,3,86,3,0,0,3,38,0,0,0,0,0,0,0,0,0,4,9,96,93,79,79,11,24,70,63,63,0,0,9151
Calvin College,4003,2792,1006,30,81,518,650,530,660,0,0,23,29,4034,3850,184,3959,3814,145,1006,1006,0,75,36,39,0,70,36,24870,25565,26705,28250,41195,41195,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,4034,3849,185,3959,75,3814,145,0,4,3,3,0,75,3,2,10,4,55,0,4,3,3,0,75,3,2,10,4,55,0,1,4,0,0,71,0,3,21,1,71,0,0,0,0,0,0,0,0,57,71,73,100,99,24,24,22,32,99,56,56,6,0,27736
Central Michigan University,19262,12143,2963,2,99,450,550,418,563,0,0,20,24,26841,19653,7188,20534,17880,2654,2963,2949,14,6307,1773,4534,0,63,24,9688,10024,10950,11220,22004,34454,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Doctoral/Research Universities,26841,19653,7188,20534,6307,17880,2654,1,1,12,3,0,73,2,5,4,1,57,1,1,7,3,0,79,2,5,3,1,56,1,2,26,4,0,53,2,6,7,2,60,2839,94,162,5,11,0,0,0,21,51,59,92,69,35,35,0,13,67,82,81,6,4019,0
Concordia University-Ann Arbor,1150,618,188,0,69,0,0,0,0,0,0,19,24,739,532,207,584,506,78,188,184,4,155,26,129,1,54,30,21182,21600,22664,23563,35693,35693,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,740,532,208,584,156,506,78,1,1,10,2,0,71,5,11,0,1,51,1,1,10,2,0,70,6,10,0,1,46,1,1,10,0,0,74,1,13,1,1,69,0,0,0,0,0,0,0,0,14,31,37,100,100,69,47,22,61,99,89,89,9,0,15091
Davenport University,1385,1270,581,0,0,0,0,0,0,0,0,0,0,9591,2674,6917,7356,2578,4778,589,451,138,2235,96,2139,448,92,46,11964,12536,13192,14096,26872,26872,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),9591,2676,6915,7356,2235,2580,4776,0,4,16,3,0,56,2,15,4,4,61,0,2,15,2,0,60,2,17,2,2,62,0,11,19,5,0,41,1,12,9,11,58,0,0,0,0,0,0,0,0,8,35,42,95,93,47,47,16,52,83,74,74,6,0,2572
University of Detroit Mercy,3670,2256,481,9,94,480,610,500,640,480,610,22,28,5000,3700,1300,2800,2200,600,451,450,1,2200,1500,700,0,61,21,30660,32500,34530,35920,52400,52400,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),5112,3716,1396,2888,2224,2196,692,0,5,10,3,0,49,2,20,12,5,59,0,3,10,3,0,53,2,23,6,3,65,0,7,11,2,0,44,1,15,19,7,52,438,89,31,6,18,4,6,1,35,52,57,99,99,40,33,40,59,99,68,68,8,0,6804
Eastern Michigan University,11929,7632,2636,7,96,440,570,460,570,430,540,19,24,23317,14455,8862,19084,13498,5586,2904,2857,47,4233,957,3276,0,64,35,8378,8684,9026,9364,20756,36301,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),23447,14493,8954,19189,4258,13542,5647,0,2,19,3,0,65,3,3,3,3,59,0,2,21,4,0,65,3,3,2,2,58,0,3,14,2,0,67,1,4,9,3,65,2412,84,434,15,35,1,4,0,12,30,38,97,96,52,52,1,7,90,70,70,3,3155,0
Ferris State University,10718,8135,2006,0,97,0,0,0,0,0,0,19,24,14707,10125,4582,13469,9255,4214,2005,1954,51,1238,870,368,789,76,25,9930,9934,10354,10466,21878,28134,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),14707,10066,4641,13477,1230,9255,4222,1,2,7,4,0,78,3,4,3,2,52,1,1,7,4,0,79,3,3,3,1,52,0,2,4,3,0,72,2,13,4,2,57,1841,90,142,7,19,1,33,2,23,42,49,96,86,46,46,20,31,66,77,77,13,3364,0
Kettering University,2140,1318,372,17,92,490,630,540,660,0,0,24,29,1991,1614,377,1690,1592,98,376,376,0,301,22,279,0,62,28,29206,29988,33946,35600,51277,51277,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (medium programs),1985,1612,373,1684,301,1590,94,0,3,4,3,0,73,2,7,7,3,19,0,3,3,3,0,76,3,6,6,3,18,0,4,7,5,0,58,1,15,11,4,25,0,0,0,0,0,0,0,0,11,52,61,100,100,30,30,12,57,99,71,69,28,0,38197
Grace Bible College,346,259,136,0,0,0,0,0,0,0,0,0,0,506,424,82,506,424,82,122,121,1,0,0,0,22,75,53,14250,11860,12424,12235,21949,21949,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,579,438,141,579,0,438,141,1,0,19,4,0,71,4,1,0,0,53,1,0,19,4,0,71,4,1,0,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,37,41,100,99,71,71,48,63,86,84,84,10,0,1874
Cornerstone University,2349,1599,362,12,92,465,605,445,570,453,593,21,26,2809,1909,900,2200,1610,590,362,345,17,609,299,310,86,68,23,21178,22388,23260,24168,35922,35922,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),2809,1909,900,2200,609,1610,590,0,1,13,4,0,79,1,0,1,1,57,1,1,11,4,0,81,1,0,2,1,59,0,1,20,4,0,73,0,0,1,1,52,0,0,0,0,0,0,0,0,30,43,48,98,98,41,40,35,51,96,91,91,11,0,2801
Grand Valley State University,18122,14969,4078,3,98,470,590,490,620,465,585,21,26,24477,19853,4624,21235,18686,2549,4078,4063,15,3242,1167,2075,0,83,27,9088,9716,10078,10716,22432,27104,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),24477,19853,4624,21235,3242,18686,2549,0,2,5,4,0,83,2,1,2,2,59,0,2,5,4,0,84,3,1,1,2,58,0,2,6,3,0,83,2,1,3,2,68,3748,92,308,8,22,1,0,0,33,63,70,88,73,34,34,34,18,71,66,65,5,3933,0
Hope College,4161,3018,822,14,90,520,660,530,680,0,0,24,29,3388,3235,153,3388,3235,153,822,822,0,0,0,0,0,73,27,26510,27020,27710,28720,40050,40050,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,3388,3235,153,3388,0,3235,153,0,2,2,7,0,85,2,0,2,2,60,0,2,2,7,0,85,2,0,2,2,60,0,0,0,0,0,0,0,0,0,0,0,538,65,265,32,19,2,0,0,68,76,78,94,92,21,21,21,39,92,59,59,9,0,46375
Kalamazoo College,2528,1691,454,28,81,550,670,540,690,540,650,25,30,1456,1442,14,1456,1442,14,464,464,0,0,0,0,0,67,27,34417,35920,37810,39450,50800,50800,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,1458,1446,12,1458,0,1446,12,0,6,4,8,0,61,4,7,9,6,56,0,6,4,8,0,61,4,7,9,6,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,77,77,100,98,22,22,20,34,98,54,54,5,0,132984
Lake Superior State University,1481,1360,418,5,91,460,570,490,590,460,570,20,25,2370,1987,383,2364,1987,377,418,407,11,6,0,6,117,92,31,8764,9364,9640,9960,21788,26708,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,2435,1967,468,2429,6,1967,462,9,1,2,2,0,78,0,2,6,1,50,9,1,2,2,0,78,0,2,6,1,50,33,0,0,0,0,67,0,0,0,0,83,0,0,0,0,0,0,0,0,17,36,42,97,87,45,45,16,36,78,66,63,5,7292,0
Lawrence Technological University,1819,794,341,11,81,480,630,550,630,490,580,22,28,4023,1570,2453,3055,1536,1519,330,324,6,968,34,934,12,44,43,24633,26278,27870,28948,43061,43061,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),4002,1571,2431,3033,969,1536,1497,0,21,7,2,0,48,0,16,6,21,26,0,23,6,2,0,46,0,18,5,23,24,0,15,11,3,0,54,0,8,9,15,32,0,0,0,0,0,0,0,0,16,39,49,86,86,31,31,9,48,80,55,55,7,0,11860
Madonna University,1089,667,191,4,92,480,630,510,640,500,570,19,25,4430,1772,2658,3371,1667,1704,208,201,7,1059,105,954,25,61,29,13840,14700,15300,16340,27944,27944,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (medium programs),4399,1774,2625,3352,1047,1678,1674,0,1,12,3,0,63,1,4,15,1,70,0,1,12,4,0,61,2,4,16,1,67,1,2,11,1,0,69,0,3,12,2,78,0,0,0,0,0,0,0,0,31,36,40,92,86,34,34,5,52,79,54,54,2,0,9934
Marygrove College,916,859,182,0,71,0,0,0,0,0,0,14,18,1960,816,1144,1041,801,240,182,170,12,919,15,904,6,94,21,17180,18020,18900,19850,30730,30730,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),1960,816,1144,1041,919,801,240,0,0,48,2,0,39,2,8,1,0,76,0,0,73,3,0,14,3,5,1,0,75,0,0,19,1,0,68,1,10,0,0,77,0,0,0,0,0,0,0,0,8,23,29,99,98,81,81,81,84,95,87,87,0,0,985
Rochester College,1171,769,149,2,87,0,0,0,0,0,0,18,24,1129,723,406,1117,712,405,149,144,5,12,11,1,15,66,19,18056,19122,20010,19920,28890,28890,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1129,723,406,1117,12,712,405,0,2,14,2,0,52,2,26,2,2,60,0,2,14,2,0,52,2,26,2,2,60,0,0,25,0,0,58,0,17,0,0,25,0,0,0,0,0,0,0,0,19,38,44,100,100,43,43,43,54,100,96,96,11,0,1332
University of Michigan-Ann Arbor,46813,15570,6200,34,83,620,720,660,760,630,730,28,32,43710,41142,2568,28283,27316,967,6200,6176,24,15427,13826,1601,0,33,40,11837,12634,12994,13142,26240,53490,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),43710,41152,2558,28283,15427,27316,967,0,11,4,4,0,57,3,6,14,11,48,0,12,4,4,0,62,3,7,7,12,49,0,10,4,5,0,48,2,5,26,10,45,3671,59,2251,36,277,4,1,0,76,88,90,63,47,15,14,6,13,46,36,36,3,185879,0
Michigan State University,31479,21610,8061,15,82,420,580,550,690,460,580,23,28,49343,43281,6062,37988,34840,3148,8061,7924,137,11355,8441,2914,0,69,37,11152,12202,12622,12862,24648,45536,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),49317,43276,6041,37985,11332,34838,3147,0,4,6,3,0,67,2,1,14,4,52,0,4,7,4,0,69,2,1,13,4,50,0,5,5,3,0,62,1,3,21,5,56,5793,72,926,11,1341,17,1,0,50,74,78,63,43,22,21,10,15,39,43,43,5,45391,0
Michigan Technological University,4520,3462,1153,9,95,520,650,580,680,490,615,24,29,6972,6160,812,5613,5200,413,1252,1252,0,1359,960,399,1,77,33,12017,12853,13353,13728,26375,41255,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Research Universities (high research activity),6975,6158,817,5617,1358,5198,419,0,1,1,2,0,75,2,3,15,1,26,1,1,1,2,0,84,2,3,6,1,25,0,2,2,1,0,35,1,4,55,2,29,0,0,0,0,0,0,0,0,24,58,66,97,94,29,28,28,28,92,66,65,11,13615,0
University of Michigan-Dearborn,4908,3084,954,40,96,0,0,498,660,470,600,22,27,8421,5130,3291,6855,4737,2118,954,908,46,1566,393,1173,0,63,31,9420,9788,10250,10614,0,0,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),8748,5225,3523,7144,1604,4814,2330,0,6,10,5,0,66,3,3,7,6,48,0,6,11,5,0,69,3,3,2,6,50,0,5,5,4,0,55,1,3,27,5,40,0,0,0,0,0,0,0,0,15,43,52,89,75,42,42,11,12,67,65,64,1,4275,0
University of Michigan-Flint,3003,2345,724,1,87,503,675,525,648,533,673,18,24,8555,4943,3612,7143,4490,2653,724,665,59,1412,453,959,0,78,31,8160,8712,9028,9356,23026,31908,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (larger programs),8555,4943,3612,7143,1412,4490,2653,1,2,11,4,0,68,3,5,6,2,60,1,2,12,4,0,68,3,5,6,2,60,1,3,9,2,0,70,2,5,8,3,61,672,93,24,3,28,4,0,0,9,29,38,84,52,38,38,5,8,40,81,80,4,11913,0
Baker College of Muskegon,0,0,0,0,0,0,0,0,0,0,0,0,0,4021,2592,1429,4005,2585,1420,757,660,97,16,7,9,599,0,0,7380,7560,7740,8100,20100,20100,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate/Associate's Colleges,4021,2592,1429,4005,16,2585,1420,0,1,10,4,0,81,5,0,0,1,70,0,1,10,4,0,81,5,0,0,1,70,0,0,13,0,0,88,0,0,0,0,69,0,0,0,0,0,0,0,0,0,3,17,95,88,74,73,8,27,69,66,66,2,0,8753
Northern Michigan University,6743,4931,1680,0,96,0,0,0,0,0,0,19,25,8879,7577,1302,8233,7388,845,1680,1661,19,646,189,457,234,73,34,7864,8414,8709,9037,20273,25349,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (medium programs),8918,7537,1381,8221,697,7347,874,2,1,2,3,0,85,2,5,1,1,55,2,1,2,3,0,84,2,5,1,1,54,2,0,1,2,0,87,1,5,2,0,63,1288,77,363,22,14,1,0,0,21,41,48,90,75,44,44,6,19,71,68,68,10,1682,0
Oakland University,12019,7933,2569,0,99,0,0,0,0,0,0,20,26,20169,13863,6306,16594,12252,4342,2569,2453,116,3575,1611,1964,0,66,32,9285,9938,10230,10613,21751,35011,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Doctoral/Research Universities,20169,13863,6306,16594,3575,12252,4342,0,4,8,3,0,75,2,5,2,4,59,0,4,8,3,0,76,2,5,1,4,59,0,5,7,2,0,70,0,7,8,5,61,2490,97,39,2,40,2,0,0,15,34,43,92,91,33,33,3,8,72,81,81,1,3707,0
Olivet College,1995,1027,301,3,98,370,420,420,480,0,0,17,22,1116,983,133,1102,983,119,279,279,0,14,0,14,0,51,29,20500,21118,21971,23021,34181,34181,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate Colleges--Diverse Fields,1133,982,151,1119,14,982,137,1,0,10,5,0,80,3,0,0,1,43,1,0,10,5,0,80,3,0,0,1,43,0,0,7,0,0,64,21,7,0,0,43,263,94,8,3,3,1,5,2,26,41,43,99,99,65,52,57,68,99,83,83,13,0,12979
Kuyper College,152,104,37,13,87,420,550,440,580,380,560,18,25,289,248,41,287,248,39,37,37,0,2,0,2,6,68,36,16390,17526,17950,18454,27970,27970,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,291,248,43,288,3,247,41,1,3,4,3,0,77,3,7,2,3,52,1,3,5,3,0,77,3,7,1,3,52,0,33,0,0,0,33,0,0,33,33,67,28,74,7,18,1,3,2,5,37,37,38,99,99,57,57,24,60,97,70,69,6,0,27624
Saginaw Valley State University,6057,4764,1593,0,97,0,0,0,0,0,0,18,24,10245,7902,2343,9168,7630,1538,1593,1582,11,1077,272,805,0,79,33,7308,7815,8120,8423,19181,30534,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Master's Colleges and Universities (larger programs),10240,7899,2341,9163,1077,7628,1535,0,1,10,3,0,73,1,6,6,1,59,0,1,11,3,0,72,1,6,6,1,57,0,0,4,2,0,82,1,2,9,0,71,0,0,0,0,0,0,0,0,10,31,39,94,77,42,42,1,11,42,73,72,5,6705,0
Siena Heights University,1422,962,300,2,88,392,560,450,537,0,0,19,23,2684,1246,1438,2424,1237,1187,300,299,1,260,9,251,5,68,31,19790,20554,21152,21890,34014,34014,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (medium programs),2684,1246,1438,2424,260,1237,1187,1,1,13,5,0,74,2,4,0,2,58,1,1,12,5,0,74,2,4,0,2,57,0,2,23,4,0,67,3,0,1,2,72,266,88,29,10,6,2,0,0,21,41,43,100,100,46,45,24,65,100,82,82,8,0,4399
Spring Arbor University,2698,1755,368,6,94,480,575,465,570,480,540,20,26,3962,2497,1465,2968,2005,963,368,366,2,994,492,502,13,65,21,20536,21520,22538,23400,34046,34046,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Small,Master's Colleges and Universities (larger programs),3962,2498,1464,2968,994,2006,962,1,1,13,3,0,74,2,6,1,1,71,1,1,12,3,0,73,2,7,1,1,69,0,1,16,3,0,77,1,1,0,1,77,317,86,48,13,4,1,0,0,30,54,57,100,100,50,49,46,69,100,79,79,12,0,3188
Finlandia University,872,513,109,19,77,0,0,0,0,0,0,17,22,525,464,61,525,464,61,109,107,2,0,0,0,48,59,21,18974,19898,20480,20480,32220,32220,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,525,464,61,525,0,464,61,1,1,4,4,1,73,2,7,6,2,57,1,1,4,4,1,73,2,7,6,2,57,0,0,0,0,0,0,0,0,0,0,0,66,62,31,29,10,9,0,0,31,35,38,97,97,69,69,69,58,97,71,71,9,0,8076
Wayne State University,11524,8786,2167,0,96,0,0,0,0,0,0,19,26,27897,18096,9801,18602,12221,6381,2167,2075,92,9295,5875,3420,0,76,25,9026,9809,10190,11094,23586,36206,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),27897,18096,9801,18602,9295,12221,6381,0,8,18,4,0,54,2,7,7,8,57,0,8,21,4,0,53,3,8,3,8,56,0,7,12,2,0,56,2,5,14,7,58,2071,96,27,1,56,3,13,1,11,24,32,89,82,52,52,18,11,78,54,53,2,11158,0
Western Michigan University,14621,12113,3190,0,97,0,0,0,0,0,0,19,25,24294,17042,7252,19198,15879,3319,3190,3158,32,5096,1163,3933,0,83,26,9006,9606,9982,10355,22250,36004,Michigan,Michigan,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),24294,17042,7252,19198,5096,15879,3319,0,1,10,4,0,72,3,1,7,2,52,0,1,11,5,0,74,3,1,4,2,50,1,2,8,3,0,67,2,2,17,2,58,2804,88,345,11,41,1,0,0,24,47,55,84,69,36,36,23,9,60,71,71,11,12566,0
Augsburg College,2072,1261,380,6,93,495,623,490,590,0,0,20,25,3584,2695,889,2700,2200,500,401,400,1,884,495,389,0,61,30,28864,30418,31942,33209,45465,45465,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),3554,2567,987,2716,838,2038,678,1,6,9,4,0,62,3,12,2,6,58,1,7,9,6,0,60,4,11,2,7,55,1,3,7,1,0,68,2,17,0,3,70,366,79,91,20,8,2,1,0,47,62,64,99,99,46,46,8,50,99,86,86,13,0,10458
Bemidji State University,3606,2408,838,0,96,0,0,0,0,0,0,19,23,4952,3549,1403,4729,3516,1213,833,821,12,223,33,190,49,67,35,7497,7858,8107,8124,18940,18940,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (smaller programs),4963,3551,1412,4727,236,3518,1209,2,1,2,1,0,84,3,5,2,1,56,2,1,2,1,0,83,3,5,2,1,56,2,1,1,1,0,88,3,3,1,1,68,0,0,0,0,0,0,0,0,26,42,46,90,66,35,35,20,44,34,70,68,18,3542,0
Bethany Lutheran College,531,396,147,5,90,0,0,0,0,0,0,20,26,579,552,27,579,552,27,147,146,1,0,0,0,0,75,37,21080,22410,23270,24080,34150,34150,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,579,552,27,579,0,552,27,1,1,3,3,0,85,2,3,1,1,51,1,1,3,3,0,85,2,3,1,1,51,0,0,0,0,0,0,0,0,0,0,0,112,76,34,23,1,1,0,0,38,47,49,100,100,39,39,6,45,100,74,72,21,0,64663
Bethel University,2118,2009,612,8,95,490,640,530,610,0,0,22,28,4270,2863,1407,3178,2535,643,612,610,2,1092,328,764,22,95,30,28080,29460,30840,31760,44300,44300,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),4340,2942,1398,3280,1060,2614,666,0,3,6,2,0,82,2,4,1,3,63,0,3,6,2,0,84,2,2,0,3,63,0,3,8,1,0,77,1,8,2,3,64,0,0,0,0,0,0,0,0,63,71,71,100,100,28,25,6,30,100,70,69,18,0,6617
Carleton College,7045,1476,527,61,58,660,750,680,770,660,750,29,33,2045,2025,20,2045,2025,20,527,527,0,0,0,0,0,21,36,41304,42942,44445,46167,60425,60425,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,2045,2025,20,2045,0,2025,20,0,9,3,6,0,66,4,2,9,9,53,0,9,3,6,0,66,4,2,9,9,53,0,0,0,0,0,0,0,0,0,0,0,91,17,378,72,58,11,0,0,90,92,92,77,63,11,11,6,6,63,47,46,2,0,350972
Concordia College at Moorhead,2493,1994,684,6,96,510,650,480,630,0,0,22,28,2558,2488,70,2531,2488,43,684,684,0,27,0,27,0,80,34,27160,29360,30860,32814,42964,42964,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Baccalaureate Colleges--Arts & Sciences,2558,2488,70,2531,27,2488,43,1,2,2,2,0,83,1,6,4,2,62,1,2,2,2,0,83,1,6,4,2,62,0,4,0,4,0,41,0,52,0,4,85,0,0,0,0,0,0,0,0,62,71,71,100,100,27,26,16,30,100,73,71,22,0,33370
Concordia University-Saint Paul,1359,712,287,3,81,480,550,440,560,430,540,18,24,3632,2518,1114,2171,1217,954,287,278,9,1461,1301,160,2,52,40,27400,28500,29700,19700,30850,30850,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),3661,2494,1167,2206,1455,1216,990,0,5,10,3,0,69,3,7,2,6,63,0,7,13,4,0,65,4,5,2,7,58,0,3,7,2,0,76,2,8,2,3,70,188,64,68,23,36,12,2,1,30,43,46,99,99,49,49,11,44,99,80,79,10,0,9275
Martin Luther College,209,201,164,0,96,0,0,0,0,0,0,22,27,829,710,119,768,702,66,164,164,0,61,8,53,0,96,82,10990,11320,11770,12300,21560,21560,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,824,710,114,763,61,702,61,0,0,1,1,0,94,1,0,3,0,49,0,0,1,0,0,94,1,0,3,0,50,0,0,0,3,0,97,0,0,0,0,38,17,10,141,86,6,4,0,0,52,74,77,97,96,38,38,3,12,89,77,76,7,0,10726
Gustavus Adolphus College,4804,3037,610,6,70,550,680,530,660,0,0,24,30,2455,2423,32,2455,2423,32,610,610,0,0,0,0,0,63,20,33500,35520,37660,39120,50110,50110,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,2449,2423,26,2449,0,2423,26,0,4,2,3,0,83,3,1,4,4,54,0,4,2,3,0,83,3,1,4,4,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,82,82,99,97,24,24,24,29,97,72,71,15,0,48686
Hamline University,3427,2247,536,11,94,480,640,500,600,470,610,21,27,4581,2647,1934,2164,2087,77,536,536,0,2417,560,1857,0,66,24,30489,31994,33752,35108,46398,46398,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),4581,2647,1934,2164,2417,2087,77,1,4,4,4,0,51,3,30,2,4,62,1,6,6,6,0,71,5,3,2,6,58,1,3,2,2,0,34,1,55,2,3,65,394,74,137,26,0,0,5,1,60,64,66,100,100,41,41,21,44,100,74,73,12,0,19020
Macalester College,6683,2283,555,59,56,620,740,610,710,630,720,29,32,2039,2011,28,2039,2011,28,555,555,0,0,0,0,0,34,24,40046,42021,43693,45388,57478,57478,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,2039,2011,28,2039,0,2011,28,0,7,3,6,0,67,5,0,12,7,61,0,7,3,6,0,67,5,0,12,7,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,87,87,81,78,17,17,6,8,78,57,49,12,0,340683
Minnesota State University-Mankato,9938,6514,2456,0,94,0,0,0,0,0,0,20,24,15409,12081,3328,13461,11412,2049,2456,2437,19,1948,669,1279,45,66,38,6725,7148,7531,7557,17562,25041,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),15426,12097,3329,13467,1959,11419,2048,0,3,4,3,0,77,2,4,6,3,53,0,3,5,3,0,78,2,3,5,3,52,0,3,4,2,0,69,1,11,10,3,63,0,0,0,0,0,0,0,0,21,43,49,85,57,32,32,14,37,23,70,69,18,2555,0
Metropolitan State University,306,306,100,0,0,0,0,0,0,0,0,0,0,8475,3045,5430,7616,2862,4754,100,64,36,859,183,676,0,100,33,5923,6341,6642,6642,0,0,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (medium programs),8510,3033,5477,7647,863,2852,4795,1,11,16,4,0,59,4,3,2,11,56,1,12,16,4,0,60,4,2,2,12,56,0,7,9,3,0,58,3,12,8,7,60,0,0,0,0,0,0,0,0,10,21,34,84,79,76,76,4,76,0,43,40,3,390,0
University of Minnesota-Twin Cities,43048,19121,5544,14,92,550,690,620,740,570,670,26,30,51526,38767,12759,34449,28940,5509,5544,5538,6,17077,9827,7250,0,44,29,12288,13022,13459,13555,25281,31531,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),51526,38767,12759,34449,17077,28940,5509,0,8,3,3,0,67,3,5,12,8,51,0,8,4,3,0,69,3,3,9,9,51,0,6,2,3,0,62,1,7,18,6,52,3593,65,1623,29,283,5,45,1,54,72,75,77,54,21,21,19,24,51,50,49,9,48052,0
University of Minnesota-Crookston,762,527,213,9,90,420,500,420,530,380,510,19,24,2839,1305,1534,2839,1305,1534,213,200,13,0,0,0,0,69,40,10623,11097,11456,11448,22722,22722,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,2839,1305,1534,2839,0,1305,1534,1,1,4,2,0,63,1,23,5,1,53,1,1,4,2,0,63,1,23,5,1,53,0,0,0,0,0,0,0,0,0,0,0,140,66,64,30,9,4,0,0,34,41,44,92,88,42,42,17,44,86,67,65,13,7068,0
University of Minnesota-Duluth,7074,5533,2054,3,98,460,590,490,620,410,570,22,26,11241,9658,1583,10079,8989,1090,2054,2050,4,1162,669,493,0,78,37,11808,12486,12785,12815,23355,27020,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (medium programs),11241,9658,1583,10079,1162,8989,1090,1,3,2,2,0,83,2,4,3,3,47,0,3,2,2,0,85,2,4,2,3,46,7,4,1,2,0,69,2,6,10,4,56,1759,86,189,9,34,2,72,4,30,54,59,83,63,25,25,10,34,60,64,63,13,11757,0
University of Minnesota-Morris,2649,1527,469,10,95,530,690,530,640,490,640,23,28,1946,1815,131,1946,1815,131,469,468,1,0,0,0,0,58,31,11532,12091,12549,12584,23206,23206,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,1946,1815,131,1946,0,1815,131,6,3,2,3,0,66,10,0,9,3,55,6,3,2,3,0,66,10,0,9,3,55,0,0,0,0,0,0,0,0,0,0,0,394,84,65,14,8,2,2,0,50,61,63,93,84,44,34,29,43,82,58,58,14,6067,0
Minnesota State University-Moorhead,3562,3174,989,5,90,450,560,480,590,0,0,20,25,6624,5260,1364,6158,5107,1051,989,945,44,466,153,313,16,89,31,6924,7378,7834,7816,19000,25898,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Midsize,Master's Colleges and Universities (medium programs),6634,5260,1374,6163,471,5109,1054,1,1,3,3,0,78,2,5,7,1,61,1,1,3,3,0,78,2,5,7,1,60,0,1,1,0,0,83,2,13,1,1,75,0,0,0,0,0,0,0,0,22,40,46,86,62,31,31,14,31,34,70,69,25,1655,0
North Central University,501,477,246,13,91,460,550,440,560,0,0,19,26,1301,1088,213,1301,1088,213,246,246,0,0,0,0,3,95,52,16340,17400,19066,19996,30248,30248,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,1305,1088,217,1301,4,1088,213,0,1,3,5,0,71,3,15,1,2,54,0,1,3,5,0,71,3,15,1,2,54,0,0,0,0,0,75,0,25,0,0,75,0,0,0,0,0,0,0,0,17,40,44,100,100,46,46,13,33,99,95,95,14,0,2207
University of Northwestern-St Paul,1945,1345,466,6,98,498,640,468,673,0,0,22,27,3290,1952,1338,3091,1928,1163,466,462,4,199,24,175,16,69,35,24570,25700,26960,28020,40120,40120,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,3352,1986,1366,3149,203,1958,1191,0,4,4,1,0,86,2,3,1,4,59,0,4,3,1,0,86,2,3,1,4,60,0,5,12,2,0,78,0,3,0,5,38,346,74,119,25,3,1,0,0,51,65,67,99,99,38,38,4,38,99,75,73,12,0,5534
College of Saint Benedict,2077,1569,538,7,95,470,570,470,608,473,595,23,28,2051,2015,36,2051,2015,36,538,538,0,0,0,0,0,76,34,32246,34308,36218,37926,49970,49970,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Baccalaureate Colleges--Arts & Sciences,2051,2015,36,2051,0,2015,36,0,6,2,5,0,80,1,0,6,6,100,0,6,2,5,0,80,1,0,6,6,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,81,82,100,100,29,29,11,28,100,66,65,17,0,24444
Saint Cloud State University,5638,4900,1703,3,92,435,548,440,590,0,0,19,24,16245,10449,5796,14641,9860,4781,1703,1662,41,1604,589,1015,159,87,35,6660,7105,7472,7514,19002,26644,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),16765,10447,6318,15134,1631,9860,5274,0,4,5,2,0,75,3,5,6,4,53,0,4,5,3,0,76,3,5,5,4,52,0,4,3,1,0,68,1,6,15,4,59,0,0,0,0,0,0,0,0,19,41,47,86,60,39,39,8,44,21,66,65,16,1366,0
Saint Johns University,1747,1313,497,15,89,475,610,480,625,460,575,23,28,1978,1904,74,1871,1850,21,497,497,0,107,54,53,0,75,38,31576,33606,35486,37162,48546,48546,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Arts & Sciences,1979,1904,75,1871,108,1850,21,1,3,3,4,0,83,1,0,5,3,3,1,3,3,4,0,83,1,0,5,3,0,0,2,0,6,0,87,0,0,6,2,51,0,0,0,0,0,0,0,0,71,78,79,100,100,18,18,8,24,100,65,64,20,0,79129
Saint Mary's University of Minnesota,1551,1161,318,5,93,465,550,455,590,0,0,20,26,5528,3294,2234,1932,1307,625,318,307,11,3596,1987,1609,0,75,27,26090,27250,28320,29315,39750,39750,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Doctoral/Research Universities,5528,3294,2234,1932,3596,1307,625,0,2,5,3,0,53,1,34,3,2,65,0,2,5,5,0,52,0,33,3,2,55,0,2,6,2,0,53,1,34,2,2,70,0,0,0,0,0,0,0,0,43,54,55,99,99,37,37,7,27,99,76,76,17,0,10096
St Olaf College,4011,2374,752,37,78,590,710,590,710,580,690,26,31,3125,3081,44,3125,3081,44,752,752,0,0,0,0,0,59,32,36800,38150,39560,40700,51860,51860,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,3125,3081,44,3125,0,3081,44,0,5,1,4,0,78,4,1,6,5,56,0,5,1,4,0,78,4,1,6,5,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,87,87,93,92,15,15,5,13,92,55,51,9,0,120923
Crown College,1049,577,210,4,85,370,435,395,455,0,0,18,24,1323,1071,252,1139,935,204,210,198,12,184,136,48,12,55,36,20870,21470,22100,22430,35080,35080,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,1323,1071,252,1139,184,935,204,1,6,7,4,0,77,1,1,3,6,52,1,5,7,4,0,77,1,1,3,5,53,0,9,9,2,0,77,0,2,2,9,43,0,0,0,0,0,0,0,0,36,50,51,96,96,42,42,16,28,95,63,63,9,0,6510
The College of Saint Scholastica,1810,1315,432,3,91,420,530,430,500,380,510,21,26,4240,3309,931,2936,2423,513,432,431,1,1304,886,418,0,73,33,28374,29506,30398,31612,43008,43008,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (medium programs),4206,3309,897,2917,1289,2423,494,1,2,3,2,0,75,2,11,3,2,71,2,2,3,2,0,80,2,6,4,2,69,1,3,5,1,0,65,2,22,2,3,76,335,78,70,16,27,6,0,0,59,68,68,100,99,28,27,5,37,99,70,69,22,0,13459
University of St Thomas,5540,4774,1368,6,97,520,640,520,640,0,0,23,28,10146,7272,2874,6275,6080,195,1368,1368,0,3871,1192,2679,0,86,29,30493,32073,33787,35308,48400,48400,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,10192,7257,2935,6321,3871,6065,256,0,4,4,3,0,79,3,3,4,4,49,0,4,3,4,0,82,3,2,3,4,47,0,4,5,3,0,75,2,4,6,5,51,1013,74,335,24,0,0,20,1,63,74,75,97,96,19,19,13,23,95,61,60,61,0,37771
St Catherine University,3071,1870,443,5,96,480,620,490,550,0,0,20,25,5017,3254,1763,3559,2188,1371,439,419,20,1458,1066,392,224,61,24,30168,31640,33176,34744,47012,47012,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),5017,3254,1763,3559,1458,2188,1371,1,8,8,4,0,71,1,6,1,8,95,1,11,10,5,0,65,2,5,1,11,97,0,2,3,1,0,84,1,8,0,2,90,375,84,60,14,6,1,3,1,38,58,61,100,99,46,45,24,52,99,81,81,8,0,16608
Southwest Minnesota State University,2076,1359,453,3,93,0,0,0,0,0,0,19,24,6673,2398,4275,6233,2118,4115,449,445,4,440,280,160,2,65,33,7244,7743,8074,8074,19576,19576,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (medium programs),6917,2403,4514,6467,450,2120,4347,0,2,2,3,0,88,2,2,2,2,59,0,2,2,3,0,89,2,1,1,2,59,1,1,1,0,0,68,0,16,12,1,64,0,0,0,0,0,0,0,0,22,40,43,95,86,40,40,12,46,69,75,74,18,776,0
Winona State University,7212,4381,1650,1,97,0,0,0,0,0,0,21,25,8803,7503,1300,8276,7379,897,1646,1634,12,527,124,403,37,61,38,8200,8540,8710,8730,20790,26290,Minnesota,Minnesota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (medium programs),8782,7487,1295,8253,529,7354,899,0,2,2,2,0,87,2,1,3,2,62,0,2,2,2,0,87,2,1,3,2,61,1,3,3,1,0,83,2,4,4,3,75,0,0,0,0,0,0,0,0,30,51,56,88,63,26,25,6,27,41,71,69,26,2081,0
Alcorn State University,2265,1878,575,5,95,400,460,410,480,0,0,16,19,3848,2917,931,3157,2732,425,575,546,29,691,185,506,13,83,31,4858,5247,5712,6108,20984,20984,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,Rural: Remote,Master's Colleges and Universities (medium programs),3848,2917,931,3157,691,2732,425,0,0,93,0,0,4,1,0,1,0,67,0,0,93,1,0,3,1,0,1,0,65,0,1,91,0,0,7,0,0,1,1,76,461,80,106,18,4,1,3,1,18,28,34,77,74,67,67,22,6,29,68,68,0,3387,0
Belhaven University,2280,1104,281,19,57,452,620,450,560,0,0,19,25,3668,1448,2220,2498,1258,1240,281,217,64,1170,190,980,27,48,25,17700,18420,19200,19970,34472,34472,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (medium programs),4025,1411,2614,2749,1276,1242,1507,0,1,47,4,0,31,2,14,0,1,65,0,1,40,5,0,36,2,15,0,2,62,0,0,63,2,0,20,1,14,0,0,70,0,0,0,0,0,0,0,0,25,36,37,100,98,44,44,21,23,98,69,69,6,0,1616
Blue Mountain College,585,326,83,4,96,410,540,430,470,390,590,18,25,528,464,64,516,456,60,83,81,2,12,8,4,0,56,25,8920,9130,9230,9470,17550,17550,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate Colleges--Diverse Fields,532,461,71,520,12,453,67,0,1,10,2,0,86,0,0,1,1,59,0,1,10,2,0,86,0,0,1,1,58,0,0,8,0,0,92,0,0,0,0,100,0,0,0,0,0,0,0,0,37,51,51,97,97,46,46,9,43,91,36,36,1,0,24141
Delta State University,472,422,343,5,95,410,475,455,570,0,0,18,22,4785,3676,1109,2638,2166,472,342,340,2,2147,1510,637,0,89,81,4851,5288,5724,6562,18887,18887,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),4785,3676,1109,2638,2147,2166,472,0,1,32,4,0,58,0,1,2,1,65,0,1,35,1,0,59,1,0,3,1,60,0,2,29,7,0,58,0,3,1,2,72,0,0,0,0,0,0,0,0,16,28,35,94,94,53,53,8,31,66,71,69,3,6083,0
Jackson State University,5325,3442,1103,0,98,0,0,0,0,0,0,17,21,8031,5569,2462,5799,4716,1083,1103,1096,7,2232,853,1379,0,65,32,5050,5050,5888,6348,20640,29844,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Midsize,Research Universities (high research activity),9134,6665,2469,6903,2231,5812,1091,0,1,90,1,0,6,1,0,0,1,65,0,0,92,1,0,5,2,0,0,0,63,0,3,85,1,0,11,0,0,0,3,71,0,0,0,0,0,0,0,0,17,31,39,93,93,74,73,24,17,49,72,72,1,2037,0
Millsaps College,1901,902,171,21,87,498,630,520,620,0,0,23,28,804,767,37,744,730,14,171,171,0,60,37,23,0,47,19,27812,29482,30974,32520,46680,46680,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,804,767,37,744,60,730,14,1,4,9,3,0,76,0,3,3,4,47,1,5,10,3,0,76,0,3,3,5,48,2,0,5,5,0,82,0,3,3,0,32,0,0,0,0,0,0,0,0,59,63,63,100,100,23,23,18,28,100,59,59,6,0,112710
University of Mississippi,14258,8464,3582,30,86,490,590,490,600,0,0,21,27,19431,17612,1819,16677,15628,1049,3582,3564,18,2754,1984,770,0,59,42,5436,5790,6282,6760,22444,33412,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Research Universities (high research activity),19431,17612,1819,16677,2754,15628,1049,0,2,15,3,0,75,2,0,4,2,55,0,2,15,3,0,76,2,0,2,2,55,0,2,15,2,0,69,2,0,10,2,54,1608,45,1923,54,51,1,0,0,36,54,58,83,73,26,26,6,28,57,46,45,5,27882,0
Mississippi University for Women,1274,554,184,8,92,440,480,550,640,0,0,18,24,2629,2046,583,2429,1945,484,184,183,1,200,101,99,47,43,33,4644,4876,5316,5640,16823,26543,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (smaller programs),2629,2046,583,2429,200,1945,484,0,1,37,1,0,58,1,0,2,2,82,0,2,38,1,0,57,1,0,2,2,82,1,0,28,0,0,70,1,0,1,0,83,141,77,31,17,11,6,0,0,22,35,39,99,98,58,58,8,32,82,67,67,1,1444,0
Mississippi Valley State University,6229,1415,493,0,100,0,0,0,0,0,0,15,19,2203,1711,492,1926,1600,326,493,459,34,277,111,166,0,23,35,4831,5307,5703,5916,18552,18552,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,Town: Remote,Master's Colleges and Universities (medium programs),2203,1711,492,1926,277,1600,326,0,0,89,1,0,3,0,6,0,0,60,0,0,89,1,0,3,0,6,0,0,58,0,1,91,0,0,5,0,3,0,1,75,363,74,125,25,5,1,0,0,11,20,26,96,94,88,88,33,13,30,85,85,0,838,0
Mississippi College,1936,1303,598,14,94,458,593,470,583,0,0,21,27,4877,3772,1105,2895,2586,309,598,588,10,1982,1186,796,0,67,46,13550,14038,14430,14868,27611,27611,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),4921,3781,1140,2905,2016,2589,316,1,2,26,2,0,60,1,4,5,2,60,1,2,22,2,0,68,1,1,4,2,59,1,3,32,2,0,49,1,7,6,3,62,326,55,261,44,11,2,0,0,35,50,53,99,99,32,31,9,42,97,57,57,2,0,14482
Mississippi State University,11191,7254,3156,16,84,480,620,490,630,0,0,20,28,20161,16951,3210,16399,15048,1351,3156,3149,7,3762,1903,1859,0,65,44,5461,5805,6264,6772,21670,31858,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Research Universities (very high research activity),20161,16951,3210,16399,3762,15048,1351,1,1,20,2,0,71,1,1,4,1,48,1,1,21,2,0,72,1,1,1,1,48,1,2,12,2,0,67,1,1,13,2,50,2005,64,1125,36,26,1,0,0,31,55,61,93,89,33,32,5,37,66,55,55,3,20934,0
Rust College,3152,437,287,2,77,310,360,320,440,340,360,13,14,936,867,69,936,867,69,287,287,0,0,0,0,16,14,66,7610,8100,8300,8900,15400,15400,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,922,854,68,922,0,854,68,0,0,95,0,0,0,0,1,3,0,61,0,0,95,0,0,0,0,1,3,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,19,19,99,97,94,94,68,3,38,92,92,0,0,26319
University of Southern Mississippi,6120,4058,1746,4,96,440,550,470,560,0,0,20,27,15249,12317,2932,12475,10841,1634,1746,1726,20,2774,1476,1298,0,66,43,5452,5834,6336,6744,19894,28174,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),15249,12317,2932,12475,2774,10841,1634,0,1,28,3,0,63,2,0,2,1,63,0,1,32,3,0,61,2,0,1,1,64,0,1,13,2,0,71,3,0,10,1,61,1227,70,508,29,9,1,2,0,21,39,45,96,94,51,50,14,32,72,64,64,2,5069,0
Tougaloo College,2661,945,153,52,99,365,537,357,447,0,0,15,21,878,848,30,878,848,30,153,153,0,0,0,0,7,36,16,9718,10218,10218,10227,20757,20757,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,878,849,29,878,0,849,29,0,0,98,0,0,1,0,0,0,0,65,0,0,98,0,0,1,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,47,50,94,72,72,70,69,21,31,35,35,5,0,10712
William Carey University,771,376,182,0,98,0,0,0,0,0,0,20,28,3890,2848,1042,2254,1882,372,182,178,4,1636,966,670,0,49,48,10350,10350,10350,10800,25500,25500,Mississippi,Mississippi,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),3882,2826,1056,2257,1625,1886,371,0,3,27,2,0,64,0,1,3,3,66,1,1,29,2,0,63,0,1,4,1,64,0,5,25,2,0,66,0,1,1,5,68,0,0,0,0,0,0,0,0,46,60,62,92,90,90,67,22,78,71,77,74,3,0,2958
Avila University,1629,995,182,6,94,400,580,450,560,0,0,20,24,1971,1526,445,1401,1124,277,182,182,0,570,402,168,0,61,18,21900,23100,23950,24950,36414,36414,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),1971,1526,445,1401,570,1124,277,1,1,19,7,0,61,2,0,9,1,67,1,1,19,7,0,60,3,0,8,1,65,1,1,17,5,0,65,1,0,10,1,72,139,76,38,21,5,3,0,0,26,47,49,100,100,42,42,9,37,99,76,76,4,0,5216
Central Methodist University-College of Liberal Arts and Sciences,1285,836,291,5,97,410,480,440,540,370,470,19,24,1107,1076,31,1107,1076,31,291,291,0,0,0,0,9,65,35,19390,20130,20720,21320,32970,32970,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1107,1024,83,1107,0,1024,83,0,1,3,1,0,63,0,31,0,1,51,0,1,3,1,0,63,0,31,0,1,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,40,44,100,100,44,44,23,56,100,84,84,7,0,23821
University of Central Missouri,4611,3727,1769,0,96,0,0,0,0,0,0,18,24,12513,9203,3310,9974,8290,1684,1769,1746,23,2539,913,1626,0,81,47,6585,6945,7147,7265,18799,25193,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (larger programs),12513,9203,3310,9974,2539,8290,1684,0,1,7,2,0,66,2,14,7,1,55,0,1,8,2,0,67,2,16,3,1,54,0,1,4,2,0,62,0,8,22,1,59,1579,89,158,9,32,2,0,0,30,50,54,94,85,44,43,5,47,59,70,70,2,3423,0
Columbia College,0,0,0,0,0,0,0,0,0,0,0,0,0,16946,9572,7374,15998,9442,6556,990,671,319,948,130,818,1573,0,0,7016,6034,6739,7115,21833,21833,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (medium programs),16946,9572,7374,15998,948,9442,6556,1,1,23,7,0,57,2,7,1,2,59,1,1,24,7,0,56,2,7,1,2,59,1,2,14,5,0,71,1,3,3,2,60,0,0,0,0,0,0,0,0,26,35,40,84,81,70,70,4,21,21,64,64,2,0,7758
Culver-Stockton College,2040,1209,220,9,93,450,540,450,540,0,0,18,23,843,785,58,830,772,58,220,220,0,13,13,0,0,59,18,22550,22550,22550,23300,34952,34952,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Remote,Baccalaureate Colleges--Diverse Fields,843,785,58,830,13,772,58,0,0,12,4,1,80,2,0,2,1,50,0,0,12,3,1,80,2,0,2,1,50,0,0,8,8,0,85,0,0,0,0,46,118,54,100,45,2,1,0,0,38,45,45,100,100,60,57,24,39,100,98,98,9,0,28545
Drury University,1076,871,325,11,86,525,650,515,615,465,605,22,28,4649,3278,1371,4231,3008,1223,519,433,86,418,270,148,222,81,37,19854,21043,22075,22295,34719,34719,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (medium programs),4649,3278,1371,4231,418,3008,1223,1,1,4,4,0,85,1,0,4,2,62,1,1,4,4,0,84,1,0,4,2,61,0,1,3,1,0,91,1,0,3,1,72,0,0,0,0,0,0,0,0,32,51,54,84,68,63,63,63,62,68,59,55,4,0,17838
Evangel University,1379,886,460,28,80,440,600,460,570,430,590,19,26,2274,1984,290,2077,1887,190,460,458,2,197,97,100,48,64,52,16990,18000,19050,20040,32183,32183,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,2274,1984,290,2077,197,1887,190,1,1,4,5,0,71,3,13,1,1,57,1,1,4,5,0,70,3,14,1,1,56,2,1,2,4,0,82,2,8,2,1,67,0,0,0,0,0,0,0,0,35,51,51,98,91,43,42,20,1,86,97,97,10,0,4603
Fontbonne University,676,441,160,8,89,490,600,440,610,440,590,21,25,1997,1192,805,1328,956,372,160,157,3,669,236,433,0,65,36,20380,21220,21220,22684,33896,33896,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),1997,1192,805,1328,669,956,372,0,1,18,2,0,66,1,2,10,1,70,0,1,17,2,0,66,1,2,12,1,67,0,1,21,2,0,67,0,2,7,1,75,0,0,0,0,0,0,0,0,3,19,41,92,91,26,24,1,34,89,66,60,6,0,12189
Hannibal-LaGrange University,703,479,173,3,79,420,620,430,520,0,0,19,25,1053,760,293,1020,750,270,173,167,6,33,10,23,46,68,36,15996,16902,17920,18770,29258,29258,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,1229,883,346,1198,31,874,324,1,1,3,1,0,84,1,1,8,1,59,1,1,3,1,0,84,2,1,8,1,58,3,0,0,0,0,97,0,0,0,0,81,0,0,0,0,0,0,0,0,46,59,61,93,93,46,46,6,28,90,71,71,2,0,5977
Harris-Stowe State University,0,0,0,0,0,0,0,0,0,0,0,0,0,1298,984,314,1298,984,314,197,184,13,0,0,0,0,0,0,4336,4553,5110,5220,20120,24753,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Large,Baccalaureate Colleges--Diverse Fields,1298,984,314,1298,0,984,314,0,0,83,1,0,8,3,3,1,0,65,0,0,83,1,0,8,3,3,1,0,65,0,0,0,0,0,0,0,0,0,0,0,168,86,22,11,5,3,0,0,2,6,10,98,95,92,92,14,50,17,88,88,0,969,0
Lincoln University,0,0,0,0,0,0,0,0,0,0,0,0,0,3007,1889,1118,2856,1847,1009,413,396,17,151,42,109,75,0,0,6175,6478,6725,6838,16421,22811,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Small,Master's Colleges and Universities (smaller programs),3043,1916,1127,2892,151,1874,1018,0,0,35,2,0,55,1,5,2,0,57,0,0,35,2,0,55,1,5,2,0,57,1,1,25,1,0,64,1,1,7,1,63,334,80,79,19,4,1,0,0,6,17,22,94,87,75,75,11,41,39,92,92,0,2946,0
Lindenwood University,3379,2240,1369,13,76,430,550,470,580,410,520,20,25,12213,9238,2975,8453,7502,951,1324,1311,13,3760,1736,2024,0,66,61,13540,14000,14600,15150,31140,31140,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),12213,9238,2975,8453,3760,7502,951,0,1,17,3,0,54,2,13,9,1,59,0,1,14,3,0,55,2,13,11,1,54,0,0,26,2,0,52,2,13,5,1,69,683,52,467,35,165,12,9,1,25,39,45,95,93,30,30,5,23,90,64,64,3,0,10988
Maryville University of Saint Louis,1595,1214,409,7,92,470,610,510,610,0,0,23,27,5033,1977,3056,2829,1786,1043,409,392,17,2204,191,2013,0,76,34,21910,22882,23746,25002,41918,41918,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,5033,1977,3056,2829,2204,1786,1043,0,2,9,3,0,75,2,5,2,3,77,0,2,8,2,0,76,2,7,3,2,71,1,3,12,4,0,74,2,3,1,3,85,0,0,0,0,0,0,0,0,51,65,67,99,98,27,27,14,39,97,66,66,7,0,11048
Missouri Baptist University,840,512,265,11,89,410,500,400,540,0,0,19,24,5345,1723,3622,3950,1417,2533,268,264,4,1395,306,1089,6,61,52,18700,19650,20764,21790,33313,33313,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),5345,1723,3622,3950,1395,1417,2533,0,1,6,2,0,68,1,21,1,1,63,0,1,5,2,0,61,2,27,1,1,59,0,1,9,1,0,85,1,2,1,1,73,0,0,0,0,0,0,0,0,27,41,43,100,99,44,44,13,35,98,78,77,3,0,1144
Missouri Southern State University,1726,1679,808,0,88,0,0,0,0,0,0,18,24,5616,4126,1490,5587,4125,1462,808,762,46,29,1,28,191,97,48,4530,5090,5271,5376,15370,20219,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,5616,4126,1490,5587,29,4125,1462,3,2,5,4,0,79,1,4,3,2,58,3,2,5,4,0,79,1,4,3,2,58,0,0,10,0,0,72,0,17,0,0,69,665,82,131,16,11,1,1,0,15,31,36,93,86,56,55,8,38,55,57,57,1,7231,0
Missouri Valley College,2164,480,415,12,87,390,440,400,460,400,460,18,21,1724,1380,344,1716,1374,342,378,376,2,8,6,2,2,22,86,17170,17780,17900,18300,30000,30000,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,1668,1371,297,1656,12,1364,292,1,1,18,5,0,62,0,2,12,1,45,1,1,18,5,0,61,0,2,12,1,45,0,0,8,0,0,83,0,0,8,0,58,0,0,0,0,0,0,0,0,15,22,25,100,100,63,63,6,47,99,80,80,2,0,3316
Missouri Western State University,0,0,0,0,0,0,0,0,0,0,0,0,0,5802,3999,1803,5623,3947,1676,974,845,129,179,52,127,64,0,0,5227,5676,6007,6400,18025,23631,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,5795,3997,1798,5616,179,3945,1671,1,1,9,1,0,80,3,4,1,1,57,1,1,9,1,0,80,3,4,1,1,57,1,1,5,1,0,74,2,2,15,1,66,888,92,73,8,9,1,0,0,13,27,33,97,93,51,51,13,54,54,64,64,1,5765,0
University of Missouri-Columbia,20956,16473,6194,8,94,520,640,520,650,0,0,23,28,34616,30318,4298,26928,25258,1670,6194,6060,134,7688,5060,2628,0,79,38,8501,8989,9257,9415,22943,37292,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),34616,30318,4298,26928,7688,25258,1670,0,2,7,3,0,77,2,2,6,2,53,0,2,8,3,0,80,3,1,3,2,52,0,2,3,2,0,68,1,4,18,2,56,3795,61,2217,36,178,3,4,0,47,67,70,84,72,23,23,7,29,67,52,52,4,22448,0
University of Missouri-Kansas City,4367,1441,1078,5,94,0,0,490,670,510,660,21,27,15718,9917,5801,10227,6813,3414,1078,1060,18,5491,3104,2387,0,33,75,8602,9029,9299,9456,28396,41143,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (high research activity),15718,9917,5801,10227,5491,6813,3414,0,6,12,5,0,61,3,6,7,6,56,0,6,14,7,0,60,3,5,4,6,58,0,7,7,3,0,62,1,6,12,7,54,771,72,270,25,36,3,1,0,21,42,51,92,86,41,41,9,43,74,59,59,2,16139,0
Missouri University of Science and Technology,3322,2729,1262,8,95,540,670,590,690,0,0,25,31,8129,6663,1466,6145,5472,673,1262,1244,18,1984,1191,793,0,82,46,8528,9084,9350,9510,21798,36963,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Research Universities (high research activity),8129,6663,1466,6145,1984,5472,673,0,2,4,2,0,70,2,4,16,3,23,0,2,4,2,0,78,2,4,6,3,23,0,2,3,3,0,43,0,4,45,2,21,1000,79,232,18,30,2,0,0,25,56,63,97,94,24,24,8,46,91,59,57,11,23753,0
University of Missouri-St Louis,1755,1302,482,3,94,0,0,510,590,0,0,21,26,16809,6988,9821,13569,6035,7534,482,464,18,3240,953,2287,0,74,37,8631,9038,9314,9474,24322,39277,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (high research activity),16809,6988,9821,13569,3240,6035,7534,0,4,14,2,0,69,1,6,3,4,60,0,4,14,2,0,69,1,5,3,5,58,0,2,14,3,0,67,1,7,6,2,66,384,80,75,16,21,4,2,0,20,39,46,95,90,43,43,7,48,84,55,54,2,5875,0
Truman State University,4462,3221,1329,6,95,540,680,540,650,0,0,25,30,6225,5612,613,5898,5375,523,1329,1325,4,327,237,90,0,72,41,6692,7008,7216,7368,19568,25440,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (medium programs),6225,5612,613,5898,327,5375,523,0,2,3,3,0,81,2,3,6,2,60,0,2,3,3,0,81,2,2,6,2,60,0,2,1,2,0,82,0,10,3,2,72,1043,78,228,17,58,4,0,0,54,70,72,99,99,24,23,18,59,98,49,49,3,5971,0
Northwest Missouri State University,5680,4113,1260,2,98,450,570,480,600,0,0,20,25,6485,5362,1123,5542,4988,554,1260,1252,8,943,374,569,61,72,31,5638,5947,6175,6390,17376,22377,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),6485,5362,1123,5542,943,4988,554,0,1,6,3,0,81,2,2,6,1,55,0,1,6,3,0,83,3,2,2,1,55,0,1,2,1,0,67,1,3,25,1,53,908,69,368,28,0,0,45,3,27,45,48,95,93,39,39,4,40,90,61,60,3,4359,0
College of the Ozarks,3006,391,357,3,98,510,560,450,548,495,548,20,25,1535,1502,33,1535,1502,33,357,357,0,0,0,0,0,13,91,17310,18030,18330,18330,27276,27276,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1513,1498,15,1513,0,1498,15,1,1,1,2,0,92,2,1,2,1,53,1,1,1,2,0,92,2,1,2,1,53,0,0,0,0,0,0,0,0,0,0,0,272,77,81,23,2,1,0,0,50,64,65,100,100,67,67,22,58,100,3,0,3,0,248374
Park University,663,639,205,0,0,0,0,0,0,0,0,0,0,11012,1210,9802,10247,1194,9053,205,188,17,765,16,749,101,96,32,8898,9290,9788,10600,23248,23248,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),10978,1184,9794,10198,780,1168,9030,0,2,15,15,0,63,2,0,3,2,47,0,2,16,16,0,62,2,0,2,2,46,1,3,13,1,0,71,1,0,10,3,57,0,0,0,0,0,0,0,0,27,32,43,91,87,47,47,6,42,72,70,70,0,0,6392
Rockhurst University,2576,1943,438,8,97,500,640,510,649,0,0,23,28,2920,1970,950,2241,1546,695,438,437,1,679,424,255,0,75,23,27340,28660,29840,31290,45235,45235,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),2920,1970,950,2241,679,1546,695,0,3,6,5,0,76,3,7,1,3,60,0,3,6,5,0,74,3,8,1,3,60,0,3,5,4,0,80,2,3,1,3,60,290,66,141,32,7,2,0,0,60,68,69,100,100,21,21,11,32,100,93,93,5,0,15452
Saint Louis University,13389,8626,1638,18,87,530,640,550,680,0,0,25,30,17346,10502,6844,12568,7211,5357,1638,1638,0,4778,3291,1487,0,64,19,32656,33986,35256,36726,53438,53438,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (high research activity),17343,10521,6822,12567,4776,7210,5357,0,6,6,3,0,70,4,4,6,6,59,0,6,6,3,0,70,4,5,5,6,59,0,8,7,3,0,70,2,3,6,8,59,0,0,0,0,0,0,0,0,61,69,70,93,92,19,19,5,15,88,54,54,6,0,71318
Southwest Baptist University,2179,1966,482,7,85,400,550,430,560,0,0,20,26,3755,2301,1454,2962,2019,943,482,458,24,793,282,511,150,90,25,17280,18200,19150,20040,30340,30340,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (larger programs),3812,2301,1511,2962,850,2019,943,1,1,4,1,0,69,1,23,0,1,65,1,1,5,1,0,72,1,19,0,1,64,1,2,2,0,0,60,0,34,0,2,65,0,0,0,0,0,0,0,0,37,45,48,97,95,49,48,28,35,73,64,64,3,0,7356
Stephens College,783,529,168,16,88,440,630,410,580,440,590,19,26,851,676,175,659,521,138,168,168,0,192,155,37,0,68,32,25400,26620,27410,27954,42424,42424,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,854,673,181,647,207,521,126,0,1,16,2,0,74,5,1,0,2,96,0,2,18,2,0,70,6,1,0,2,99,0,1,9,1,0,85,2,2,0,1,87,113,67,55,33,0,0,0,0,25,58,59,100,100,55,55,38,39,100,97,97,6,0,46968
Southeast Missouri State University,4388,3750,1729,2,90,435,555,460,595,0,0,20,25,11755,8332,3423,10593,7953,2640,1725,1583,142,1162,379,783,24,85,46,6255,6555,6750,6863,19211,24543,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (larger programs),11767,8332,3435,10605,1162,7953,2652,0,1,9,1,0,77,0,4,7,1,58,0,1,9,1,0,77,0,4,6,1,57,0,1,4,1,0,76,0,3,15,1,66,1310,76,343,20,58,3,14,1,27,44,49,93,87,40,40,8,43,71,57,57,3,6578,0
Missouri State University-Springfield,7482,6367,2751,5,95,470,600,480,620,0,0,21,26,21271,15407,5864,18027,13805,4222,2751,2700,51,3244,1602,1642,0,85,43,6276,6598,6792,6908,19251,25731,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (larger programs),21271,15407,5864,18027,3244,13805,4222,1,1,4,3,0,81,3,2,6,1,58,1,1,4,3,0,82,3,2,4,1,57,0,1,2,2,0,73,1,4,16,1,63,2381,87,334,12,34,1,2,0,30,50,53,89,71,36,36,7,43,48,60,60,3,4100,0
Washington University in St Louis,30117,4684,1610,55,61,700,760,720,790,700,770,32,34,14048,12281,1767,7395,6664,731,1610,1610,0,6653,5617,1036,3,16,34,40369,41992,43705,44841,61808,61808,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Research Universities (very high research activity),14032,12078,1954,7336,6696,6587,749,0,13,6,4,0,53,3,5,16,13,51,0,17,6,5,0,55,4,4,8,17,51,1,9,5,3,0,50,2,6,24,9,51,113,7,1347,84,148,9,0,0,88,93,94,55,48,5,5,4,6,47,23,23,1,0,417948
Webster University,1736,1008,418,15,85,500,650,490,600,470,590,21,27,17200,5320,11880,3490,2580,910,490,480,10,13710,2740,10970,0,58,41,21748,22400,23070,23760,41918,41918,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),17904,5783,12121,3528,14376,2579,949,0,3,37,7,0,44,2,6,2,3,58,0,2,15,4,0,66,2,9,2,3,57,0,3,42,7,0,38,2,6,2,3,58,0,0,0,0,0,0,0,0,46,57,59,97,94,37,37,12,33,93,75,75,4,0,8984
Westminster College,1420,1021,261,14,78,390,550,470,610,420,530,21,27,1039,1033,6,1039,1033,6,266,266,0,0,0,0,0,72,26,19760,20570,20850,21680,34800,34800,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1026,1018,8,1026,0,1018,8,2,1,6,3,0,66,1,3,17,1,44,2,1,6,3,0,66,1,3,17,1,44,0,0,0,0,0,0,0,0,0,0,0,165,62,52,20,49,18,0,0,52,66,69,100,100,32,32,6,35,99,76,76,3,0,43586
William Jewell College,1433,828,259,9,94,498,670,510,645,0,0,22,28,1043,1011,32,1043,1011,32,259,259,0,0,0,0,0,58,31,28450,29600,30200,31000,43820,43820,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1044,1012,32,1044,0,1012,32,1,1,6,4,0,77,5,3,3,1,57,1,1,6,4,0,77,5,3,3,1,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,58,59,100,100,30,30,23,33,100,68,68,7,0,59943
William Woods University,897,674,208,16,84,472,590,460,547,0,0,19,26,1891,1765,126,931,824,107,186,184,2,960,941,19,10,75,31,18000,19000,19850,20650,35250,35250,Missouri,Missouri,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (larger programs),2136,1261,875,1002,1134,843,159,0,1,3,1,0,84,1,10,0,1,68,0,1,4,1,0,85,2,6,0,1,73,0,0,3,0,0,82,0,13,0,0,63,78,49,75,47,1,1,5,3,45,56,56,100,100,40,40,24,46,99,64,63,4,0,11097
Carroll College,3279,1738,315,64,71,490,620,510,610,490,590,22,26,1431,1349,82,1431,1349,82,315,315,0,0,0,0,4,53,18,23594,25198,26554,27914,40918,40918,Montana,Montana,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,1431,1349,82,1431,0,1349,82,1,1,1,4,0,80,1,9,2,2,58,1,1,1,4,0,80,1,9,2,2,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54,67,67,100,99,21,21,5,0,99,64,63,3,0,26941
Montana State University-Billings,0,0,0,0,0,0,0,0,0,0,0,0,0,5056,3441,1615,4550,3227,1323,736,650,86,506,214,292,246,0,0,5242,5470,5711,5745,17835,29178,Montana,Montana,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (medium programs),4969,3372,1597,4465,504,3162,1303,4,1,1,4,0,83,2,1,3,1,62,4,1,1,4,0,82,3,1,3,1,61,3,1,1,3,1,86,2,2,2,2,74,692,91,64,8,4,1,1,0,12,21,27,90,76,44,44,10,23,54,60,60,1,4257,0
University of Great Falls,1206,877,151,0,0,0,0,0,0,0,0,0,0,1122,716,406,1027,664,363,152,150,2,95,52,43,4,73,17,18956,19580,20288,20960,32654,32654,Montana,Montana,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,1138,716,422,1046,92,665,381,3,2,2,6,0,77,1,6,2,2,67,3,2,2,7,0,77,1,6,2,3,68,4,0,1,1,0,82,1,9,2,0,64,68,45,78,51,4,3,2,1,17,28,29,97,97,46,46,13,0,96,65,65,5,0,9626
Montana Tech of the University of Montana,586,521,262,30,80,500,620,550,610,450,580,21,27,2010,1726,284,1844,1661,183,262,259,3,166,65,101,39,89,50,6162,6420,6435,6464,18724,30866,Montana,Montana,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,2010,1726,284,1844,166,1661,183,2,1,1,2,0,81,0,4,9,1,33,2,1,1,1,0,81,0,4,10,1,33,2,3,5,5,0,73,0,8,4,3,36,213,80,45,17,7,3,0,0,20,42,48,89,78,30,30,4,28,63,44,44,2,12290,0
Montana State University,12581,10630,2914,38,71,500,630,510,630,490,600,21,27,14852,11549,3303,13174,11012,2162,2914,2345,569,1678,537,1141,28,84,27,6168,6428,6705,6752,19452,33417,Montana,Montana,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Research Universities (very high research activity),14852,11549,3303,13174,1678,11012,2162,1,1,1,3,0,86,3,1,4,1,46,1,1,1,3,0,86,3,1,3,1,45,2,1,0,2,0,80,4,3,8,1,51,0,0,0,0,0,0,0,0,20,41,49,87,79,25,25,14,10,69,47,47,3,8171,0
The University of Montana,4820,4542,1967,47,68,490,620,480,590,470,590,21,26,14525,10582,3943,12254,9446,2808,1946,1772,174,2271,1136,1135,346,94,43,5476,5722,5985,6045,19106,34780,Montana,Montana,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),14525,10582,3943,12254,2271,9446,2808,3,2,1,4,0,77,4,7,4,2,54,3,1,1,4,0,78,4,7,3,1,54,3,7,1,2,0,70,3,8,7,7,58,1366,70,564,29,31,2,2,0,24,42,48,89,80,40,40,6,11,61,57,56,2,10021,0
Montana State University-Northern,376,376,200,8,65,385,490,385,505,370,485,17,22,1334,918,416,1250,917,333,200,179,21,84,1,83,115,100,53,5480,5480,5480,5480,17380,29212,Montana,Montana,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,1334,918,416,1250,84,917,333,11,1,1,2,0,77,1,6,1,1,52,11,1,1,2,0,77,1,6,1,2,50,17,0,0,0,0,75,0,7,1,0,80,183,92,13,7,4,2,0,0,15,24,29,88,82,54,49,17,34,37,63,63,2,3270,0
Rocky Mountain College,1396,933,238,45,70,450,560,450,570,430,555,19,25,1068,1024,44,988,947,41,238,238,0,80,77,3,1,67,26,21100,22134,22892,23718,35488,35488,Montana,Montana,Rocky Mountains CO ID MT UT WY,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,1067,1024,43,988,79,947,41,2,1,3,4,1,81,3,2,5,1,49,2,1,2,4,1,80,3,2,5,1,48,1,1,4,0,0,91,0,0,3,1,54,116,49,112,47,10,4,0,0,19,38,40,100,100,37,35,24,0,100,74,74,8,0,20707
The University of Montana-Western,0,0,0,0,0,0,0,0,0,0,0,0,0,1480,1204,276,1480,1204,276,274,251,23,0,0,0,50,0,0,3696,3947,4111,4141,15386,26105,Montana,Montana,Rocky Mountains CO ID MT UT WY,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,1455,1196,259,1455,0,1196,259,2,1,1,2,1,88,2,4,0,1,58,2,1,1,2,1,88,2,4,0,1,58,0,0,0,0,0,0,0,0,0,0,0,182,72,72,28,0,0,0,0,27,41,45,87,78,47,47,4,25,72,63,63,3,2635,0
Bellevue University,0,0,0,0,0,0,0,0,0,0,0,0,0,9788,7806,1982,6202,5195,1007,152,87,65,3586,2611,975,0,0,0,6150,6540,6300,6300,0,0,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),9788,7798,1990,6202,3586,5180,1022,0,2,13,6,0,54,2,19,2,3,52,0,2,11,7,0,53,2,23,2,2,50,0,3,17,5,0,57,2,13,2,4,54,0,0,0,0,0,0,0,0,23,35,39,100,50,0,0,0,0,50,50,50,0,0,6889
Chadron State College,0,0,0,0,0,0,0,0,0,0,0,0,0,3093,1916,1177,2447,1776,671,466,460,6,646,140,506,0,0,0,5076,5340,5600,5600,16440,16470,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,3056,1912,1144,2432,624,1772,660,1,1,3,5,0,75,2,11,1,1,58,1,1,3,6,0,75,2,11,1,1,57,1,2,3,4,0,75,2,11,1,3,58,234,51,220,48,9,2,0,0,17,31,33,87,78,38,38,5,11,63,56,55,2,7436,0
Concordia University-Nebraska,1299,929,282,22,84,430,570,460,610,0,0,21,27,2155,1717,438,1457,1126,331,282,281,1,698,591,107,0,72,30,22115,23060,23800,24750,34550,34550,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (smaller programs),2206,1725,481,1508,698,1134,374,0,1,4,3,0,83,1,5,2,1,60,0,1,3,4,0,83,1,5,2,2,51,1,1,5,2,0,83,1,5,1,1,79,117,41,159,56,6,2,0,0,42,63,64,100,100,28,28,20,11,100,73,73,8,0,22578
Creighton University,5336,4090,966,30,86,520,640,540,660,500,620,24,30,8019,6711,1308,4076,3815,261,966,963,3,3943,2896,1047,1,77,24,30578,31894,33330,34330,48058,48058,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),8019,6711,1308,4076,3943,3815,261,0,9,4,5,0,73,3,3,2,9,57,0,9,3,7,0,73,4,2,2,10,59,1,9,5,4,0,74,2,4,2,9,54,198,20,747,77,21,2,0,0,67,76,76,100,99,19,19,8,3,99,82,81,9,0,41179
Doane College-Crete,1822,1307,287,10,90,430,515,450,535,425,490,21,26,1113,1106,7,1113,1106,7,287,287,0,0,0,0,0,72,22,22170,23590,25080,26180,38380,38380,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1113,1106,7,1113,0,1106,7,0,2,4,6,0,84,2,2,1,2,50,0,2,4,6,0,84,2,2,1,2,50,0,0,0,0,0,0,0,0,0,0,0,209,73,75,26,3,1,0,0,51,60,60,100,100,35,34,19,18,100,93,93,8,0,91376
Grace University,260,152,96,14,82,400,465,423,528,410,498,19,24,481,372,109,410,341,69,96,96,0,71,31,40,10,58,63,15808,16626,17366,18256,28958,28958,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,481,372,109,410,71,341,69,1,3,9,9,0,76,0,1,0,3,54,1,3,9,10,0,75,0,1,0,3,52,1,3,10,1,0,83,0,1,0,3,65,0,0,0,0,0,0,0,0,23,30,48,100,100,44,44,6,24,100,69,69,1,0,4927
Hastings College,1529,1126,345,7,99,450,540,460,530,0,0,21,26,1144,1076,68,1118,1060,58,345,345,0,26,16,10,0,74,31,22620,23734,24900,25520,37152,37152,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1144,1076,68,1118,26,1060,58,1,2,3,5,1,85,2,1,1,2,49,1,2,3,5,1,85,2,1,1,2,49,0,0,0,4,0,92,0,0,4,0,54,0,0,0,0,0,0,0,0,43,56,58,100,100,32,32,19,19,99,77,75,3,0,66487
University of Nebraska at Kearney,2589,2197,1022,2,91,420,520,440,550,0,0,20,25,7052,5034,2018,5502,4777,725,1022,1007,15,1550,257,1293,0,85,47,5912,6320,6565,6542,20010,25838,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),7052,5034,2018,5502,1550,4777,725,0,1,2,7,0,80,1,2,7,1,60,0,1,2,8,0,78,1,1,9,1,57,0,0,2,4,0,89,1,3,1,0,68,879,86,74,7,69,7,0,0,21,44,53,87,75,35,35,5,12,65,51,51,3,11,0
Midland University,1676,1145,367,0,95,0,0,0,0,0,0,18,23,1288,1199,89,1192,1164,28,367,367,0,96,35,61,0,68,32,23664,24810,25994,27146,37780,37780,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1288,1199,89,1192,96,1164,28,0,1,5,3,1,70,6,12,2,2,50,0,1,5,3,1,71,6,11,2,2,50,0,0,7,0,1,64,7,18,3,1,52,0,0,0,0,0,0,0,0,41,49,49,100,99,42,42,26,24,99,84,83,10,0,7362
University of Nebraska at Omaha,4955,3507,1889,0,95,0,0,0,0,0,0,20,26,15227,10374,4853,12335,9511,2824,1889,1794,95,2892,863,2029,0,71,54,5880,6280,6510,6550,19250,29590,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Doctoral/Research Universities,15227,10374,4853,12335,2892,9511,2824,0,3,6,8,0,73,3,3,5,3,53,0,3,6,9,0,72,3,3,3,3,52,0,3,4,4,0,75,2,2,11,3,57,0,0,0,0,0,0,0,0,14,35,42,88,61,36,36,1,11,52,47,47,2,377,0
Nebraska Wesleyan University,2315,1780,378,6,96,470,610,520,600,0,0,22,26,2149,1639,510,1927,1605,322,378,378,0,222,34,188,0,77,21,23474,24656,25918,27242,39492,39492,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,2149,1639,510,1927,222,1605,322,0,2,3,4,0,81,1,7,1,2,64,0,2,3,4,0,82,2,6,1,2,62,0,1,3,3,0,77,0,15,0,2,81,305,80,69,18,5,1,0,0,55,67,68,100,100,26,26,26,23,100,69,69,7,0,24545
University of Nebraska-Lincoln,10929,6999,4420,7,93,490,660,520,670,0,0,22,28,24445,20880,3565,19376,18102,1274,4420,4396,24,5069,2778,2291,6,64,63,7224,7563,7984,8060,22246,35574,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),24445,20880,3565,19376,5069,18102,1274,0,2,2,4,0,77,2,3,9,2,47,0,2,2,5,0,80,2,2,6,2,46,0,2,3,3,0,67,1,5,19,2,52,3209,73,959,22,167,4,85,2,32,61,67,87,67,24,24,12,12,64,51,50,4,8271,0
Peru State College,0,0,0,0,0,0,0,0,0,0,0,0,0,2436,1265,1171,2171,1197,974,279,273,6,265,68,197,0,0,0,5252,5648,6008,6188,16556,16556,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Distant,Master's Colleges and Universities (larger programs),2422,1255,1167,2158,264,1186,972,1,1,4,4,0,79,2,9,0,1,61,1,1,5,5,0,78,2,9,0,1,59,0,0,3,1,0,90,2,3,0,0,74,216,78,62,22,0,0,0,0,19,30,40,92,81,46,46,5,18,70,73,73,2,4472,0
College of Saint Mary,335,191,89,0,94,0,0,0,0,0,0,20,26,970,777,193,731,639,92,89,89,0,239,138,101,57,57,47,23134,24254,25214,26934,36252,36252,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (smaller programs),970,777,193,735,235,639,96,0,2,6,10,0,80,2,0,0,2,97,0,2,6,12,0,77,3,0,1,2,99,0,0,7,3,0,87,2,0,0,0,91,55,62,33,37,1,1,0,0,27,38,42,100,100,32,32,23,23,100,71,71,7,0,9994
Union College,1287,673,178,25,84,0,0,440,570,440,570,19,26,911,803,108,821,713,108,178,178,0,90,90,0,10,52,26,18150,18780,19880,20470,31990,31990,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,911,803,108,821,90,713,108,0,3,5,6,1,62,12,3,7,4,60,0,3,6,7,1,60,12,3,7,4,57,0,3,2,0,0,84,6,3,1,3,79,0,0,0,0,0,0,0,0,25,35,38,100,99,42,42,0,6,99,82,82,6,0,18228
Wayne State College,0,0,0,0,0,0,0,0,0,0,0,0,0,3451,2830,621,2946,2753,193,697,696,1,505,77,428,0,0,0,5071,5318,5520,5574,15500,19700,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (larger programs),3506,2815,691,2991,515,2735,256,1,0,2,6,0,76,2,12,1,1,57,1,0,3,7,0,79,2,8,1,1,57,1,0,1,2,0,57,1,37,1,0,55,611,88,79,11,1,0,0,0,25,41,46,92,74,43,43,12,55,26,70,69,4,4753,0
York College,546,267,94,13,87,370,510,380,500,0,0,17,22,477,442,35,467,442,25,94,94,0,10,0,10,6,49,35,14998,15300,15600,15600,26250,26250,Nebraska,Nebraska,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,470,442,28,459,11,442,17,2,1,14,7,0,72,0,3,1,2,46,2,1,14,7,0,72,0,3,1,2,46,9,9,0,0,0,73,0,9,0,9,36,31,33,60,64,1,1,2,2,18,31,36,91,91,46,46,38,14,90,68,67,19,0,23403
University of Nevada-Las Vegas,7343,6250,3773,77,34,440,550,450,560,420,530,19,24,27848,18781,9067,23099,16523,6576,3773,3585,188,4749,2258,2491,0,85,60,5808,6428,6705,6690,22195,36105,Nevada,Nevada,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (high research activity),27848,18795,9053,23097,4751,16523,6574,0,15,7,21,1,41,7,2,4,17,56,0,16,8,23,2,38,8,2,4,18,56,1,9,6,11,1,57,5,7,5,10,56,3050,81,653,17,69,2,1,0,15,34,43,92,85,40,40,2,68,48,38,37,2,7827,0
University of Nevada-Reno,7857,6597,2994,82,56,480,590,480,600,460,560,21,26,18776,14208,4568,15694,12934,2760,2994,2960,34,3082,1274,1808,0,84,45,5561,5630,6602,6610,22600,36510,Nevada,Nevada,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (high research activity),18776,14208,4568,15694,3082,12934,2760,1,6,3,15,0,65,5,1,3,7,52,1,7,3,16,1,64,6,1,2,7,53,0,6,2,8,0,68,3,4,9,6,52,2097,68,952,31,32,1,5,0,16,41,51,94,88,31,31,1,73,53,43,42,5,14224,0
Great Basin College,0,0,0,0,0,0,0,0,0,0,0,0,0,2419,673,1746,2403,672,1731,612,255,357,16,1,15,222,0,0,2243,2513,2700,2700,15070,21715,Nevada,Nevada,Far West AK CA HI NV OR WA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate/Associate's Colleges,3181,907,2274,3164,17,906,2258,3,2,2,15,1,67,4,7,0,3,64,3,2,2,15,1,67,4,7,0,3,64,0,0,0,0,6,94,0,0,0,6,65,0,0,0,0,0,0,0,0,27,44,52,59,50,33,26,7,24,24,12,11,1,126,0
Sierra Nevada College,0,0,0,0,0,0,0,0,0,0,0,0,0,972,788,184,547,494,53,91,91,0,425,294,131,0,0,0,24515,25370,27654,28483,45759,45759,Nevada,Nevada,Far West AK CA HI NV OR WA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (medium programs),955,770,185,529,426,476,53,2,2,4,3,1,65,0,21,3,2,58,2,1,1,1,1,71,0,17,5,2,43,2,2,8,5,1,57,0,25,0,3,76,0,0,0,0,0,0,0,0,37,49,55,93,90,39,39,6,6,89,69,69,4,0,5444
Colby-Sawyer College,3400,2826,421,0,0,0,0,0,0,0,0,0,0,1415,1386,29,1415,1386,29,399,399,0,0,0,0,5,83,15,32640,34110,35810,37300,52800,52800,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate Colleges--Diverse Fields,1409,1386,23,1409,0,1386,23,0,1,5,3,0,63,1,15,12,1,70,0,1,5,3,0,63,1,15,12,1,70,0,0,0,0,0,0,0,0,0,0,0,106,27,217,54,59,15,17,4,48,52,53,99,97,40,40,35,15,97,82,81,18,0,23226
Dartmouth College,23110,2260,1098,69,31,670,780,680,780,680,790,30,34,6342,6185,157,4276,4200,76,1115,1115,0,2066,1985,81,0,10,49,40437,42996,45042,46752,63279,63279,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Research Universities (very high research activity),6342,6185,157,4276,2066,4200,76,1,12,5,7,0,46,4,8,16,12,47,2,14,6,7,0,46,5,10,9,14,49,0,9,3,5,0,47,2,4,30,9,42,39,4,956,86,97,9,17,2,87,93,95,61,45,12,12,11,1,44,49,26,37,0,581104
Franklin Pierce University,3546,3004,538,95,6,440,530,440,550,420,520,16,21,2187,1783,404,1671,1443,228,492,492,0,516,340,176,24,85,18,28800,29450,29950,31000,45898,45898,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Master's Colleges and Universities (smaller programs),2204,1809,395,1671,533,1465,206,0,2,3,4,0,74,2,14,1,2,57,0,1,4,5,0,74,2,13,2,1,56,1,4,2,1,0,74,1,17,1,4,61,0,0,0,0,0,0,0,0,39,44,44,100,100,31,30,14,17,88,88,87,13,0,2399
New England College,5723,5149,388,0,0,0,0,0,0,0,0,0,0,2232,2147,85,1483,1431,52,385,384,1,749,716,33,1,90,8,29054,30400,31744,33000,48430,48430,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Master's Colleges and Universities (medium programs),2224,2087,137,1478,746,1416,62,1,1,13,5,0,71,1,3,4,1,58,1,1,18,6,0,68,1,1,4,1,55,1,1,4,3,0,79,0,8,5,1,66,0,0,0,0,0,0,0,0,34,38,40,95,93,55,53,32,15,77,83,83,11,0,5433
Southern New Hampshire University,4432,3486,830,53,0,430,520,440,540,430,530,0,0,26611,12718,13893,16709,9169,7540,1924,1327,597,9902,3549,6353,209,79,24,26442,27234,28050,28884,43056,43056,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),28389,13179,15210,18083,10306,9399,8684,0,1,5,1,0,27,0,61,4,1,60,0,1,5,2,0,28,0,61,2,1,60,0,1,5,1,0,25,0,62,6,1,59,0,0,0,0,0,0,0,0,47,54,55,94,88,38,38,13,14,70,78,78,12,0,1025
University of New Hampshire-Main Campus,17938,13963,2869,96,18,490,590,510,610,0,0,0,0,14946,13333,1613,12534,12060,474,2869,2869,0,2412,1273,1139,156,78,21,13672,15250,16422,16496,30300,43020,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Research Universities (high research activity),14913,13336,1577,12516,2397,12063,453,0,2,1,3,0,78,2,11,3,2,54,0,2,1,3,0,79,2,11,1,2,54,0,2,1,2,0,72,1,11,11,2,58,1258,44,1597,56,14,0,0,0,64,78,80,84,64,23,23,22,8,64,74,73,15,16309,0
Keene State College,6144,5029,1258,94,0,430,540,440,540,440,540,0,0,4921,4580,341,4802,4541,261,1249,1245,4,119,39,80,10,82,25,10140,11800,12776,12776,25084,32469,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (smaller programs),4923,4580,343,4799,124,4538,261,0,1,1,3,0,81,2,13,0,1,58,0,1,1,3,0,81,2,13,0,1,57,1,2,0,4,0,84,0,10,0,2,77,474,38,782,62,2,0,0,0,52,62,63,96,72,26,26,21,6,70,81,80,23,4033,0
University of New Hampshire at Manchester,193,141,94,85,8,450,580,450,560,430,560,0,0,957,600,357,841,599,242,94,89,5,116,1,115,37,73,67,11226,12640,13757,13762,0,0,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,926,599,327,833,93,599,234,0,2,2,4,0,68,2,22,0,2,52,0,2,2,4,0,73,2,16,0,2,49,0,0,0,0,0,23,0,77,0,0,77,93,99,1,1,0,0,0,0,30,56,67,88,60,29,29,21,0,52,68,66,16,1799,0
Plymouth State University,5120,3967,930,93,10,430,530,430,540,420,520,18,23,5146,4096,1050,4065,3794,271,930,923,7,1081,302,779,0,77,23,9906,11518,12560,12610,26555,33975,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),5236,4107,1129,4065,1171,3795,270,0,2,3,2,0,77,1,12,2,2,52,0,1,2,3,0,78,1,13,1,1,48,0,5,5,1,0,76,0,8,4,5,68,439,47,464,50,15,2,12,1,41,54,56,89,65,31,31,27,7,62,78,78,16,2123,0
Rivier University,914,816,223,97,12,430,500,430,510,430,510,17,21,2277,1050,1227,1591,891,700,223,216,7,686,159,527,140,89,27,24895,25885,26905,28055,43227,43227,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),2346,1055,1291,1591,755,891,700,0,3,3,4,0,77,1,11,0,3,81,0,2,3,5,0,77,1,12,0,2,82,1,4,2,3,0,79,1,10,0,4,80,0,0,0,0,0,0,0,0,43,55,59,100,99,33,33,32,22,99,87,87,28,0,17682
Saint Anselm College,3829,2820,508,60,13,540,610,520,620,520,620,23,27,1923,1878,45,1923,1878,45,508,508,0,0,0,0,0,74,18,31575,32540,33775,35204,50394,50394,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Baccalaureate Colleges--Arts & Sciences,1923,1878,45,1923,0,1878,45,0,1,2,3,0,78,2,14,1,1,59,0,1,2,3,0,78,2,14,1,1,59,0,0,0,0,0,0,0,0,0,0,0,103,20,400,79,5,1,0,0,71,74,74,98,97,14,14,11,7,96,77,76,16,0,51629
Granite State College,0,0,0,0,0,0,0,0,0,0,0,0,0,2058,1017,1041,1723,918,805,97,69,28,335,99,236,98,0,0,6435,6810,7065,7065,0,0,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Public, 4-year or above",Four or more years,Public,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,2058,1017,1041,1723,335,918,805,1,0,1,2,0,83,2,11,0,0,71,1,1,1,2,0,82,2,12,0,1,70,0,0,1,2,0,88,1,8,0,0,77,90,92,8,8,0,0,0,0,9,9,9,70,53,53,53,20,9,0,70,70,0,1215,0
Thomas More College of Liberal Arts,0,0,0,0,0,0,0,0,0,0,0,0,0,80,80,0,80,80,0,15,15,0,0,0,0,0,0,0,16100,17600,19200,19800,31400,31400,New Hampshire,New Hampshire,New England CT ME MA NH RI VT,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Baccalaureate Colleges--Arts & Sciences,80,80,0,80,0,80,0,0,4,1,4,0,83,0,5,4,4,50,0,4,1,4,0,83,0,5,4,4,50,0,0,0,0,0,0,0,0,0,0,0,0,0,13,93,1,7,0,0,46,46,46,100,100,24,24,12,8,100,44,44,0,0,396
Bloomfield College,3115,1702,382,96,0,370,440,390,470,0,0,0,0,2050,1803,247,2042,1796,246,445,422,23,8,7,1,0,55,22,22400,23700,25050,25880,41130,41130,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1979,1776,203,1972,7,1770,202,0,4,50,21,0,13,1,7,3,4,65,0,4,50,22,0,13,1,7,3,4,65,0,14,57,14,0,0,0,14,0,14,71,365,86,0,0,0,0,60,14,14,31,36,96,95,80,80,20,73,94,89,89,6,0,5474
Caldwell College,2984,1912,330,95,19,410,520,420,540,0,0,16,25,2160,1433,727,1577,1303,274,340,340,0,583,130,453,0,64,17,25602,26890,27890,29000,43800,43800,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),2160,1431,729,1578,582,1303,275,0,1,5,5,0,24,0,62,3,1,72,0,1,5,6,0,19,0,65,4,1,69,0,1,5,3,0,36,0,53,1,1,81,308,83,43,12,22,6,0,0,35,53,53,98,97,51,51,40,58,96,93,93,5,0,3643
Centenary College,1038,944,216,90,6,410,540,410,550,400,540,18,23,2400,1962,438,1708,1610,98,210,208,2,692,352,340,64,91,23,28054,28890,29630,30540,43435,43435,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),2400,1962,438,1708,692,1610,98,0,1,8,8,0,49,1,30,3,1,63,0,1,11,10,0,57,1,16,4,1,60,0,1,3,1,0,28,0,66,1,1,71,0,0,0,0,0,0,0,0,56,57,57,100,99,38,38,15,33,99,79,79,15,0,0
Drew University,3430,2656,400,76,20,490,610,500,610,500,610,22,27,2291,1790,501,1493,1434,59,400,399,1,798,356,442,0,77,15,39873,41304,42920,44068,59362,59362,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,2291,1790,501,1493,798,1434,59,0,4,12,11,0,50,2,14,7,4,59,0,5,10,14,0,55,3,10,3,5,62,0,2,14,6,0,41,0,23,13,2,54,261,65,119,30,0,0,20,5,65,68,69,97,96,31,31,12,22,96,62,62,0,0,78215
Fairleigh Dickinson University-Metropolitan Campus,5193,3812,760,89,0,440,530,450,550,430,540,0,0,8564,3596,4968,6116,2727,3389,651,577,74,2448,869,1579,72,73,20,31060,32538,33792,34882,52036,52036,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),8546,3596,4950,6108,2438,2727,3381,0,5,10,21,0,34,1,20,9,5,60,0,4,10,25,0,29,1,25,5,5,59,0,6,11,12,0,45,0,8,18,6,61,532,82,73,11,46,7,0,0,32,44,47,95,94,55,54,9,45,88,73,73,7,0,4502
Felician College,1567,1382,153,90,8,390,480,380,500,380,480,15,23,1919,1382,537,1606,1348,258,153,152,1,313,34,279,11,88,11,26425,28080,29400,29990,45800,45800,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (smaller programs),1933,1374,559,1621,312,1340,281,1,8,20,23,1,40,2,4,2,9,74,1,8,20,24,1,38,2,4,2,9,72,1,9,18,16,1,46,1,7,1,10,83,0,0,0,0,0,0,0,0,24,43,46,100,98,69,69,30,67,97,84,83,6,0,2755
Fairleigh Dickinson University-College at Florham,3647,2835,586,93,0,450,560,460,570,460,560,0,0,3195,2703,492,2437,2235,202,605,595,10,758,468,290,0,78,21,33410,35002,36352,37348,54502,54502,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),3029,2582,447,2274,755,2116,158,1,6,10,12,0,60,1,8,2,6,57,1,4,11,14,0,60,2,8,1,4,55,0,11,8,8,0,61,0,6,6,11,63,408,80,100,20,4,1,0,0,40,52,54,99,99,40,39,12,33,99,79,79,15,0,7062
Georgian Court University,1276,994,275,94,0,390,500,400,510,380,500,0,0,2257,1471,786,1567,1261,306,275,275,0,690,210,480,0,78,28,26176,27984,28040,29606,43276,43276,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),2257,1471,786,1567,690,1261,306,0,2,11,10,0,56,2,19,1,2,81,0,2,14,11,0,48,2,22,1,2,81,0,1,4,9,0,74,1,10,0,1,83,241,88,25,9,9,3,0,0,25,47,51,99,96,60,60,11,49,91,84,84,9,0,25173
Rowan University,8287,4908,1420,94,0,490,600,510,640,480,580,0,0,12601,9751,2850,10951,9348,1603,1420,1412,8,1650,403,1247,0,59,29,11676,12019,12380,12380,26970,34776,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),13349,10499,2850,10951,2398,9348,1603,0,5,9,9,0,70,2,4,1,5,51,0,4,8,9,0,72,2,3,1,4,49,0,13,10,6,0,59,1,8,2,13,60,0,0,0,0,0,0,0,0,46,65,70,83,57,30,30,16,25,44,62,61,9,10331,0
New Jersey City University,4183,1727,649,72,0,400,493,420,520,0,0,0,0,8443,5205,3238,6438,4777,1661,649,576,73,2005,428,1577,0,41,38,9250,10021,10422,10653,25863,34275,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),8442,5204,3238,6437,2005,4776,1661,0,8,20,32,0,30,1,9,1,8,63,0,8,21,35,0,25,1,9,1,8,60,0,6,16,23,0,44,0,8,3,6,72,640,98,8,1,0,0,2,0,5,19,32,90,78,73,73,16,60,9,48,48,2,973,0
Kean University,4952,3980,1525,73,0,400,490,410,510,0,0,0,0,14404,10081,4323,12078,9251,2827,1525,1493,32,2326,830,1496,0,80,38,9815,10200,10601,10918,26624,32847,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),14404,10081,4323,12078,2326,9251,2827,0,6,19,23,0,42,1,8,1,6,63,0,6,19,24,0,39,2,8,1,6,60,0,5,18,16,0,55,1,3,2,5,76,1437,94,66,4,20,1,2,0,19,39,46,78,55,45,45,8,32,14,64,63,17,1059,0
Monmouth University,5537,4314,906,90,9,480,560,490,590,480,570,22,25,6249,4962,1287,4557,4300,257,906,906,0,1692,662,1030,7,78,21,26356,28000,29710,31018,46152,46152,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),6316,4966,1350,4607,1709,4304,303,0,3,5,8,0,75,2,4,2,3,64,0,3,5,9,0,77,2,4,1,3,59,0,5,7,6,0,69,2,6,5,6,76,713,79,181,20,12,1,0,0,42,59,61,100,98,26,25,13,25,98,69,68,19,0,11156
Montclair State University,13012,8500,3040,96,0,430,520,450,540,430,530,0,0,19464,14702,4762,15431,13356,2075,3040,3030,10,4033,1346,2687,0,65,36,10016,10646,11058,11318,28028,36906,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),19464,14702,4762,15431,4033,13356,2075,0,5,9,21,0,50,3,9,3,5,63,0,5,9,23,0,47,3,9,2,5,61,0,4,9,14,0,60,1,6,4,4,72,2928,96,101,3,11,0,0,0,34,58,63,77,49,41,41,11,32,10,63,62,12,2233,0
New Jersey Institute of Technology,4344,2844,1029,96,7,480,590,550,660,470,590,22,29,10130,7305,2825,7281,5705,1576,1029,957,72,2849,1600,1249,0,65,36,13370,13974,14740,15218,31484,44540,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (high research activity),10130,7305,2825,7317,2813,5709,1608,0,16,8,16,0,28,2,15,15,17,25,0,19,8,19,0,31,2,17,4,19,24,0,10,7,8,0,19,1,11,43,10,30,966,94,39,4,18,2,6,1,23,46,58,87,71,35,35,14,34,47,52,51,10,7963,0
Princeton University,26499,1963,1285,86,33,700,800,710,800,710,790,31,35,7962,7962,0,5248,5248,0,1284,1284,0,2714,2714,0,0,7,65,36640,37000,38650,40170,55832,55832,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Research Universities (very high research activity),8014,7935,79,5323,2691,5244,79,0,15,6,7,0,45,4,4,20,15,45,0,20,8,8,0,47,4,3,11,20,49,0,7,3,4,0,40,2,5,39,7,38,197,15,929,72,157,12,1,0,88,95,97,60,60,14,14,5,1,60,9,4,6,0,2320421
Ramapo College of New Jersey,6297,3480,901,90,13,490,590,510,610,480,590,20,26,5626,4951,675,5397,4928,469,901,901,0,229,23,206,0,55,26,11874,12758,13144,13388,29161,37811,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),5852,5015,837,5614,238,4992,622,0,6,5,13,0,66,1,7,2,6,56,0,6,5,13,0,66,1,7,1,6,56,0,3,4,5,0,74,0,11,3,3,66,842,93,35,4,24,3,0,0,59,71,73,78,45,23,23,10,23,33,54,54,11,2215,0
Rider University,8078,5806,911,90,24,460,570,470,580,460,570,19,25,5370,4123,1247,4419,3792,627,911,911,0,951,331,620,12,72,16,30470,31930,33420,35270,51670,51670,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),5410,4122,1288,4425,985,3791,634,0,4,9,9,0,64,2,6,5,5,60,0,4,10,10,0,64,2,5,4,5,59,0,5,6,5,0,64,1,11,8,5,66,508,67,214,28,25,3,13,2,55,64,66,98,97,29,28,25,24,97,74,73,18,0,11560
Rutgers University-Camden,7437,4357,497,96,0,450,560,480,580,460,560,0,0,6262,4744,1518,4852,3939,913,497,495,2,1410,805,605,0,59,11,12364,12615,12923,13348,28645,42205,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (medium programs),6264,4746,1518,4842,1422,3939,903,0,8,16,10,0,59,3,2,2,8,52,0,9,17,11,0,56,3,2,1,9,55,0,7,11,8,0,67,2,2,3,7,43,463,93,19,4,13,3,1,0,27,48,55,85,67,40,40,8,38,47,66,66,9,12564,0
Rutgers University-New Brunswick,30631,18230,6337,95,0,520,640,570,690,540,650,0,0,47300,39865,7435,30742,28756,1986,6337,6328,9,16558,11109,5449,0,60,35,12559,12754,13073,13499,29468,43492,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),48036,40321,7715,33901,14135,31759,2142,0,22,8,11,0,45,3,3,8,22,54,0,25,8,12,0,45,3,2,4,26,50,0,14,9,8,0,44,1,4,19,14,62,5504,86,476,7,406,6,17,0,57,76,79,76,52,30,29,13,26,49,59,59,9,12376,0
Rutgers University-Newark,13282,7173,1057,98,0,460,550,500,608,480,560,0,0,11979,8023,3956,7756,6244,1512,1057,1054,3,4223,1779,2444,0,54,15,12069,12294,12590,12998,29768,43792,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (high research activity),11212,7559,3653,7217,3995,5827,1390,0,19,16,18,1,32,2,6,7,20,48,0,22,18,23,0,25,3,6,3,22,50,0,12,12,8,2,43,2,6,14,15,43,915,93,26,3,46,5,1,0,32,60,67,80,63,49,49,10,43,35,55,54,5,13352,0
Saint Peter's University,6145,3323,610,99,8,410,490,420,510,400,490,16,21,3183,2321,862,2472,2073,399,610,607,3,711,248,463,15,54,18,28332,29800,31220,32284,47842,47842,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),3194,2316,878,2484,710,2068,416,1,9,27,26,0,28,2,4,2,9,62,1,10,28,28,0,24,2,5,2,10,61,0,7,25,19,0,42,0,4,2,8,67,524,86,72,12,13,2,1,0,34,50,53,100,100,64,64,14,56,99,68,67,2,0,10939
Seton Hall University,10735,8498,1342,90,18,500,600,520,620,500,600,22,27,9903,7141,2762,5839,5380,459,1342,1338,4,4064,1761,2303,0,79,16,31890,33490,34750,35820,50318,50318,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,9903,7141,2762,5839,4064,5380,459,0,7,12,13,0,52,2,10,5,7,59,0,8,13,17,0,49,2,7,4,8,59,0,5,10,7,0,55,1,15,7,5,59,0,0,0,0,0,0,0,0,50,62,64,98,97,27,26,4,21,96,63,60,16,0,27638
College of Saint Elizabeth,2496,1207,124,94,0,380,480,370,480,390,490,0,0,1552,697,855,987,554,433,124,124,0,565,143,422,0,48,10,26887,28221,29907,31095,47147,47147,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),1552,697,855,987,565,554,433,0,3,22,13,0,45,1,13,3,4,89,0,3,26,15,0,39,1,11,4,3,92,0,4,13,10,0,55,0,16,1,5,82,0,0,0,0,0,0,0,0,41,53,56,99,99,72,72,16,64,99,82,79,8,0,17060
Stevens Institute of Technology,4977,1899,622,77,23,570,670,640,720,0,0,27,32,5784,4180,1604,2691,2661,30,622,622,0,3093,1519,1574,0,38,33,39816,41782,43196,44490,60554,60554,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Research Universities (high research activity),5784,4180,1604,2691,3093,2661,30,0,8,2,6,0,36,0,23,26,8,26,0,10,2,9,0,60,0,15,4,10,28,0,7,1,3,0,14,0,29,45,7,25,382,61,222,36,15,2,3,0,45,77,79,98,97,22,21,19,15,97,67,66,16,0,37693
The Richard Stockton College of New Jersey,6126,3805,1069,91,16,480,570,500,600,480,570,20,24,8458,7272,1186,7539,6953,586,1069,1066,3,919,319,600,0,62,28,11533,11963,12322,12322,27929,34322,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Midsize,Master's Colleges and Universities (medium programs),8458,7272,1186,7539,919,6953,586,0,5,6,9,0,75,3,1,0,5,61,0,5,6,10,0,74,3,1,0,6,59,0,3,4,7,0,80,2,3,0,3,76,1046,98,22,2,0,0,1,0,42,61,65,87,59,32,32,7,28,45,70,69,19,2730,0
Thomas Edison State College,0,0,0,0,0,0,0,0,0,0,0,0,0,20877,176,20701,19596,176,19420,0,0,0,1281,0,1281,703,0,0,4883,5322,5508,5700,0,0,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Master's Colleges and Universities (smaller programs),20877,138,20739,19596,1281,138,19458,1,4,15,8,1,58,1,11,1,5,48,1,4,15,8,1,59,1,11,1,5,47,0,4,17,13,0,57,1,7,1,4,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,0
The College of New Jersey,11145,4805,1404,93,0,550,660,580,680,560,670,0,0,7340,6653,687,6653,6455,198,1404,1402,2,687,198,489,0,43,29,13293,13887,14378,14730,29652,40057,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),7340,6653,687,6653,687,6455,198,0,9,5,11,0,66,1,8,0,9,60,0,9,5,11,0,66,1,7,0,9,57,0,4,8,5,0,69,1,13,0,4,84,1304,93,96,7,4,0,0,0,72,82,84,83,52,19,19,2,16,45,52,52,12,3480,0
William Paterson University of New Jersey,8935,6086,1294,99,0,450,540,470,560,0,0,0,0,11414,8577,2837,10027,8271,1756,1294,1289,5,1387,306,1081,0,68,21,11238,11464,11694,11918,27580,35120,New Jersey,New Jersey,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),11414,8575,2839,10027,1387,8269,1758,0,6,13,23,0,49,2,6,1,7,57,0,6,14,24,0,46,2,6,1,7,55,0,5,6,14,0,66,1,7,2,5,75,1266,98,27,2,2,0,0,0,16,42,50,87,62,40,40,8,42,30,69,69,10,690,0
Eastern New Mexico University-Main Campus,2245,1419,659,13,93,410,540,410,540,0,0,17,22,5847,3002,2845,4567,2759,1808,661,654,7,1280,243,1037,17,63,46,3900,4147,4350,4558,16149,21660,New Mexico,New Mexico,Southwest AZ NM OK TX,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (smaller programs),5847,3002,2845,4567,1280,2759,1808,3,1,4,33,0,47,2,6,3,2,60,3,1,4,34,0,45,2,7,3,1,56,2,2,3,27,0,55,2,5,3,2,75,539,82,112,17,9,1,1,0,12,25,29,99,95,55,55,24,72,44,43,43,0,4320,0
New Mexico Highlands University,0,0,0,0,0,0,0,0,0,0,0,0,0,3690,2224,1466,2396,1646,750,353,349,4,1294,578,716,0,0,0,2972,3284,3504,4000,16592,18974,New Mexico,New Mexico,Southwest AZ NM OK TX,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),3690,2224,1466,2396,1294,1646,750,6,1,5,52,0,23,2,5,6,1,63,8,1,6,56,0,19,2,2,6,1,60,4,1,3,44,0,29,1,10,6,1,68,199,56,145,41,3,1,6,2,9,14,18,95,88,61,61,16,53,68,39,38,2,962,0
New Mexico Institute of Mining and Technology,1088,450,318,38,89,550,670,570,680,0,0,23,29,2134,1652,482,1604,1418,186,318,316,2,530,234,296,1,41,71,4941,5301,5496,5714,18762,30121,New Mexico,New Mexico,Southwest AZ NM OK TX,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (medium programs),2134,1651,483,1604,530,1418,186,3,4,2,23,0,60,3,1,5,4,34,3,3,2,26,0,59,3,0,3,3,30,2,5,2,13,0,61,2,2,13,5,44,249,78,60,19,0,0,9,3,19,38,44,96,94,34,32,2,67,84,35,34,1,16052,0
University of New Mexico-Main Campus,11467,7405,3424,19,90,470,610,470,600,0,0,19,25,27021,19893,7128,20852,16340,4512,3518,3471,47,6169,3553,2616,0,65,46,5506,5809,6050,6846,20094,33936,New Mexico,New Mexico,Southwest AZ NM OK TX,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),28592,20668,7924,22416,6176,17091,5325,5,3,2,40,0,40,3,3,4,3,56,6,3,3,44,0,37,3,2,2,3,56,4,4,2,27,0,48,2,4,10,4,56,0,0,0,0,0,0,0,0,15,39,48,98,96,39,38,0,78,52,35,34,2,15249,0
New Mexico State University-Main Campus,5365,4571,1918,23,84,410,540,420,540,400,520,18,24,16765,13006,3759,13582,11297,2285,1918,1902,16,3183,1709,1474,25,85,42,5400,5827,6513,6220,18255,31679,New Mexico,New Mexico,Southwest AZ NM OK TX,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Midsize,Research Universities (high research activity),16765,13006,3759,13582,3183,11297,2285,2,1,3,49,0,33,1,4,7,2,54,2,1,3,52,0,32,1,4,4,1,53,2,2,3,34,0,35,2,6,17,2,58,1400,73,441,23,39,2,38,2,16,37,43,97,95,46,46,6,69,39,42,42,2,6784,0
Northern New Mexico College,0,0,0,0,0,0,0,0,0,0,0,0,0,1201,794,407,1173,793,380,168,150,18,28,1,27,99,0,0,2696,2822,2827,4060,18787,26250,New Mexico,New Mexico,Southwest AZ NM OK TX,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Baccalaureate/Associate's Colleges,1681,822,859,1653,28,821,832,13,1,1,68,0,11,3,2,0,1,57,13,1,1,69,0,11,3,2,0,1,57,4,4,0,39,0,46,0,7,0,4,71,160,95,4,2,0,0,4,2,0,0,0,91,91,82,70,15,79,8,8,8,0,2436,0
University of the Southwest,0,0,0,0,0,0,0,0,0,0,0,0,0,1021,417,604,357,231,126,51,50,1,664,186,478,0,0,0,14500,13608,14280,14280,25380,25380,New Mexico,New Mexico,Southwest AZ NM OK TX,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,923,359,564,318,605,201,117,3,1,24,21,0,37,0,13,0,2,66,3,0,13,40,1,25,0,18,1,1,50,2,2,30,11,0,44,0,11,0,2,75,0,0,0,0,0,0,0,0,6,9,14,100,100,60,54,6,23,100,73,73,0,0,9412
Western New Mexico University,0,0,0,0,0,0,0,0,0,0,0,0,0,3558,1882,1676,2942,1708,1234,410,388,22,616,174,442,119,0,0,3812,4030,4314,4723,20803,28843,New Mexico,New Mexico,Southwest AZ NM OK TX,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (medium programs),3560,1669,1891,2849,711,1510,1339,5,1,4,46,0,27,0,16,1,1,61,4,1,4,51,0,24,0,14,1,1,61,5,1,3,25,0,40,0,22,2,2,64,298,74,98,24,0,0,7,2,12,15,17,97,92,67,67,3,46,5,47,47,1,5247,0
Vaughn College of Aeronautics and Technology,837,645,324,94,6,413,519,472,574,0,0,0,0,1784,1416,368,1773,1416,357,324,320,4,11,0,11,199,77,50,17500,18400,19460,20450,43726,43726,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate/Associate's Colleges,1741,1308,433,1724,17,1308,416,1,10,20,35,4,17,6,6,2,14,12,1,10,20,35,3,17,6,6,2,14,12,0,0,24,18,12,41,0,6,0,12,24,0,0,0,0,0,0,0,0,48,56,56,94,91,75,75,34,67,85,75,75,0,0,1722
Adelphi University,8654,5897,918,74,18,500,600,520,620,510,610,19,24,7645,6034,1611,5040,4531,509,918,903,15,2605,1503,1102,14,68,16,27900,28460,29320,30800,47110,47110,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,7645,6034,1611,5040,2605,4531,509,0,7,12,13,0,53,2,8,7,7,73,0,8,11,13,0,53,2,9,4,8,69,0,4,14,11,0,52,1,6,11,5,80,780,85,92,10,45,5,1,0,53,61,63,96,95,32,32,10,39,94,58,58,15,0,20248
Alfred University,3417,2385,535,92,30,490,590,510,610,0,0,22,27,2431,2079,352,1960,1909,51,535,535,0,471,170,301,0,70,22,25976,26884,27794,25430,39948,39948,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Master's Colleges and Universities (larger programs),2431,2079,352,1960,471,1909,51,0,2,10,7,0,60,2,16,4,2,54,0,2,8,7,0,66,3,12,3,2,51,0,2,16,9,0,35,1,30,7,2,67,427,80,104,19,4,1,0,0,45,61,62,100,100,40,40,40,50,100,81,81,58,0,38886
Bard College,5466,2056,489,0,0,0,0,0,0,0,0,0,0,2327,2203,124,2004,1907,97,482,482,0,323,296,27,286,38,24,41670,43306,44798,46370,62572,62572,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,2355,2229,126,2014,341,1916,98,1,4,5,2,0,61,0,16,11,4,56,1,4,6,2,0,61,0,14,12,4,56,0,0,2,1,0,59,0,29,9,0,60,0,0,0,0,0,0,0,0,60,72,74,75,70,27,23,22,16,69,57,55,5,0,51449
Barnard College,5606,1151,580,73,47,620,730,620,710,650,740,28,32,2489,2464,25,2489,2464,25,580,576,4,0,0,0,0,21,50,40546,42184,43502,44790,61512,61512,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,2489,2463,26,2489,0,2463,26,0,15,5,11,0,57,5,0,7,15,100,0,15,5,11,0,57,5,0,7,15,100,0,0,0,0,0,0,0,0,0,0,0,166,29,361,62,53,9,0,0,82,88,90,49,40,18,18,4,12,39,33,33,2,0,99262
Boricua College,0,0,0,0,0,0,0,0,0,0,0,0,0,1075,1075,0,1007,1007,0,185,185,0,68,68,0,163,0,0,9525,11025,11025,11025,0,0,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,1118,1118,0,1050,68,1050,0,0,0,15,83,0,1,0,0,0,0,77,0,0,15,83,0,1,0,0,0,0,77,0,0,12,84,0,4,0,0,0,0,82,0,0,0,0,0,0,0,0,29,34,34,96,96,95,93,5,84,1,7,7,0,0,787
Canisius College,4322,3134,682,94,45,480,590,500,610,0,0,22,27,4537,3443,1094,3084,2825,259,682,680,2,1453,618,835,25,73,22,30077,30713,32030,33332,48102,48102,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),4537,3443,1094,3084,1453,2825,259,0,2,7,3,0,75,1,8,4,2,54,0,2,7,3,0,73,2,8,4,2,50,0,2,6,2,0,79,1,7,3,2,62,0,0,0,0,0,0,0,0,58,67,67,99,99,37,37,23,55,98,74,73,9,0,21589
Cazenovia College,2440,1902,345,0,0,0,0,0,0,0,0,0,0,1077,937,140,1077,937,140,346,346,0,0,0,0,3,78,18,25482,26736,28022,29410,43290,43290,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,1077,937,140,1077,0,937,140,1,1,8,7,1,72,4,6,0,2,72,1,1,8,7,1,72,4,6,0,2,72,0,0,0,0,0,0,0,0,0,0,0,286,83,58,17,1,0,0,0,53,58,59,100,100,47,47,36,60,99,85,84,14,0,26373
Clarkson University,6747,4320,757,89,41,520,620,570,665,495,600,24,28,3726,3602,124,3110,3084,26,757,757,0,616,518,98,0,64,18,34760,36780,38610,40540,57514,57514,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Research Universities (high research activity),3726,3602,124,3110,616,3084,26,0,3,2,4,0,77,2,2,9,3,30,0,3,2,4,0,82,2,2,4,4,28,0,2,2,3,0,52,2,3,36,2,37,523,69,217,29,17,2,0,0,61,72,73,100,99,30,29,28,49,99,81,81,19,0,47891
Colgate University,8374,2209,759,66,34,620,720,650,740,0,0,30,32,2900,2877,23,2890,2871,19,759,759,0,10,6,4,0,26,34,41870,42920,44640,46380,60050,60050,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,2900,2877,23,2890,10,2871,19,0,3,4,8,0,68,4,4,8,3,55,0,3,4,8,0,68,4,4,8,3,55,0,0,0,0,0,70,0,0,30,0,60,179,24,500,66,75,10,5,1,87,91,91,41,41,12,12,3,7,41,19,19,0,0,264911
Metropolitan College of New York,667,366,113,0,0,0,0,0,0,0,0,0,0,1199,1105,94,872,810,62,110,108,2,327,295,32,60,55,31,16720,16720,17230,17530,0,0,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),1255,1164,91,911,344,851,60,1,2,59,18,0,6,2,7,5,2,70,1,2,59,20,1,5,2,8,3,3,71,1,2,58,13,0,8,2,6,11,2,67,109,95,6,5,0,0,0,0,18,19,19,95,95,82,82,4,71,79,79,79,0,0,415
Columbia University in the City of New York,31851,2362,1415,90,32,690,780,700,790,690,780,31,34,27034,22739,4295,7970,7374,596,1553,1509,44,19064,15365,3699,0,7,60,43304,45290,47246,49138,64144,64144,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (very high research activity),26957,22731,4226,7970,18987,7374,596,0,13,5,8,0,36,3,8,28,13,51,1,17,7,14,0,39,4,4,14,17,47,0,11,4,6,0,34,2,9,34,11,52,324,21,961,64,224,15,0,0,86,92,93,57,49,15,15,8,6,49,16,15,3,0,316753
Concordia College-New York,1358,910,153,86,18,420,500,415,505,415,480,16,20,953,870,83,887,814,73,153,153,0,66,56,10,2,67,17,25570,26620,27520,28095,41175,41175,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,953,868,85,887,66,812,75,0,3,22,22,0,36,2,1,14,3,68,0,3,22,23,0,34,2,1,15,3,67,0,2,21,14,0,55,2,5,3,2,80,99,65,34,22,19,12,1,1,28,38,39,94,94,58,58,7,52,94,76,76,2,0,10341
Cooper Union for the Advancement of Science and Art,3193,247,186,86,12,610,710,610,780,610,730,29,33,904,891,13,852,851,1,179,179,0,52,40,12,0,8,75,36650,39150,40250,41400,60075,60075,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,920,903,17,868,52,863,5,1,19,5,9,0,36,4,16,11,19,36,1,18,6,9,0,36,4,16,10,18,36,2,25,0,10,0,33,0,10,21,25,31,83,47,82,46,13,7,0,0,68,82,82,100,100,16,15,1,15,100,26,25,1,0,704474
Cornell University,39999,6222,3223,82,39,640,740,680,780,650,750,30,34,21593,21528,65,14393,14380,13,3223,3223,0,7200,7148,52,0,16,52,39666,41541,43413,45358,61618,61618,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Research Universities (very high research activity),21593,21528,65,14393,7200,14380,13,0,14,5,9,0,40,4,9,19,14,49,0,16,6,11,0,42,4,10,10,16,51,0,10,3,5,0,34,2,7,39,10,44,971,30,1859,58,346,11,47,1,87,92,93,64,54,15,15,12,14,50,29,28,6,0,193396
CUNY Bernard M Baruch College,19863,4931,1185,91,0,530,630,600,690,0,0,0,0,17462,11344,6118,14049,10509,3540,1259,1251,8,3413,835,2578,0,25,24,4970,5550,5910,6210,27562,34072,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),17505,11222,6283,14082,3423,10396,3686,0,31,10,14,0,32,1,0,12,31,49,0,34,9,16,0,28,1,0,12,34,48,0,19,10,10,0,47,1,0,13,19,52,1154,92,10,1,51,4,39,3,39,60,67,70,68,46,46,13,54,15,6,6,0,9000,0
CUNY Brooklyn College,19843,6346,1148,89,0,480,580,520,620,0,0,0,0,16452,9759,6693,13287,9254,4033,1212,1200,12,3165,505,2660,0,32,18,5051,5584,5884,6184,24906,31416,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),17004,10061,6943,13596,3408,9543,4053,0,15,24,16,0,40,1,0,4,15,61,0,17,24,17,0,37,1,0,3,17,59,0,8,23,12,0,48,0,0,8,8,67,1145,96,20,2,14,1,14,1,24,44,51,70,67,52,52,12,57,6,8,8,0,5346,0
College of Staten Island CUNY,9785,9761,2556,77,0,440,530,470,560,0,0,0,0,14400,9879,4521,13436,9759,3677,2840,2580,260,964,120,844,513,100,26,4978,5508,5858,6158,24832,31342,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),14441,9900,4541,13465,976,9784,3681,0,11,12,19,0,54,1,0,3,11,57,0,11,13,20,0,52,1,0,3,11,55,0,7,7,9,0,71,1,0,5,7,76,2767,99,17,1,16,1,7,0,27,46,51,71,65,55,55,10,57,1,13,13,0,433,0
CUNY City College,22171,7560,1397,93,0,460,590,530,640,0,0,0,0,15454,9784,5670,12627,9354,3273,1365,1353,12,2827,430,2397,0,34,18,4929,5459,5759,6089,26631,33141,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),15331,9721,5610,12501,2830,9274,3227,0,21,18,32,0,20,1,0,9,21,53,0,23,18,33,0,17,1,0,7,24,52,0,10,18,24,0,33,0,0,15,10,58,1400,97,20,1,10,1,14,1,9,32,42,79,76,63,63,21,69,5,8,8,0,17183,0
CUNY Graduate School and University Center,0,0,0,0,0,0,0,0,0,0,0,0,0,6544,4240,2304,1380,308,1072,5,0,5,5164,3932,1232,0,0,0,0,0,0,0,0,0,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),6736,4454,2282,1347,5389,296,1051,0,4,14,32,0,36,0,0,13,4,61,0,6,35,21,0,37,0,0,0,6,68,0,4,9,35,0,36,0,0,16,4,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15356,0
CUNY Hunter College,30758,9140,1971,94,0,520,620,540,640,0,0,0,0,22840,13142,9698,16630,11789,4841,1996,1931,65,6210,1353,4857,0,30,22,4999,5529,5829,6129,20181,26691,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),23019,13087,9932,16689,6330,11747,4942,0,20,11,22,1,39,2,0,6,20,68,0,24,10,25,1,32,2,0,6,25,65,0,9,13,17,0,56,1,0,4,9,76,1900,96,56,3,19,1,1,0,22,42,50,69,65,50,50,13,56,6,8,8,0,4005,0
CUNY John Jay College of Criminal Justice,13753,4683,1908,93,0,420,510,440,530,0,0,0,0,15229,10914,4315,13421,10508,2913,1851,1841,10,1808,406,1402,104,34,41,4929,5459,5759,6059,30885,37395,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),15010,10764,4246,13217,1793,10374,2843,0,10,20,41,1,25,1,0,3,11,57,0,11,19,43,1,22,1,0,3,12,56,0,7,20,22,0,45,0,0,5,7,63,1785,96,3,0,14,1,59,3,25,39,43,77,73,64,64,19,66,0,9,9,0,483,0
CUNY Lehman College,15518,3612,551,84,0,460,530,480,570,0,0,0,0,11767,5840,5927,9643,5571,4072,566,557,9,2124,269,1855,0,23,15,4940,5508,5808,6108,24470,30980,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),12085,5916,6169,9886,2199,5643,4243,0,6,28,50,0,11,0,0,4,6,70,0,6,28,53,0,8,0,0,4,6,68,0,5,27,34,0,26,0,0,7,5,75,563,96,3,1,0,0,22,4,15,30,37,86,83,74,74,13,71,8,7,7,0,821,0
CUNY Medgar Evers College,7563,6913,1045,46,0,360,450,390,475,0,0,0,0,6837,4331,2506,6837,4331,2506,1081,1022,59,0,0,0,513,91,15,4902,5432,5732,6032,0,0,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Baccalaureate/Associate's Colleges,6477,4267,2210,6477,0,4267,2210,0,2,83,9,0,2,1,0,3,2,74,0,2,83,9,0,2,1,0,3,2,74,0,0,0,0,0,0,0,0,0,0,0,1033,99,0,0,5,0,7,1,5,12,15,91,88,84,84,15,75,0,8,8,0,81,0
CUNY New York City College of Technology,16870,12957,2861,70,0,390,490,453,540,0,0,0,0,16967,10324,6643,16967,10324,6643,3633,3118,515,0,0,0,1076,77,22,4939,5469,5769,6069,0,0,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Baccalaureate/Associate's Colleges,16860,10318,6542,16860,0,10318,6542,0,18,32,31,0,13,1,0,5,18,44,0,18,32,31,0,13,1,0,5,18,44,0,0,0,0,0,0,0,0,0,0,0,3306,99,8,0,37,1,2,0,3,20,25,86,84,77,77,15,77,0,6,6,0,1018,0
CUNY Queens College,19032,7045,1449,86,0,480,570,540,610,0,0,0,0,18849,11181,7668,15345,10699,4646,1401,1376,25,3504,482,3022,0,37,21,5077,5607,5907,6207,26179,32689,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),18974,11249,7725,15351,3623,10769,4582,0,23,7,25,0,39,1,0,5,23,59,0,25,7,27,0,35,1,0,5,25,56,0,13,8,20,0,54,0,0,4,13,71,1267,93,20,1,72,5,5,0,25,47,56,61,58,46,46,13,52,4,7,7,0,2768,0
CUNY York College,13319,4675,1111,83,0,400,470,430,510,0,0,0,0,8285,5188,3097,8239,5142,3097,1018,953,65,46,46,0,0,35,24,4912,5496,5796,6096,0,0,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,8307,5199,3108,8261,46,5153,3108,1,23,42,22,1,7,1,0,4,24,65,1,23,42,22,1,7,1,0,4,24,65,0,22,24,11,0,39,0,0,4,22,87,987,99,2,0,3,0,2,0,5,20,26,81,80,72,72,20,72,1,4,4,0,110,0
D'Youville College,1171,926,258,92,47,480,580,470,560,450,540,20,25,3130,2428,702,2000,1637,363,258,258,0,1130,791,339,0,79,28,21060,21760,22240,22850,37570,37570,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),3150,2401,749,2023,1127,1614,409,1,3,10,4,0,65,2,3,13,3,69,1,3,12,5,0,68,2,3,6,3,73,0,3,6,2,0,59,1,3,26,3,63,0,0,0,0,0,0,0,0,19,36,41,100,99,38,38,2,51,99,82,82,16,0,12120
Daemen College,3061,1489,411,0,0,0,0,0,0,0,0,0,0,2780,2127,653,2156,1720,436,411,409,2,624,407,217,0,49,28,21460,22310,23130,24090,37690,37690,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),2871,2231,640,2156,715,1720,436,0,2,11,4,0,75,1,5,2,2,74,0,2,13,5,0,72,1,5,1,3,73,0,2,4,2,0,82,0,4,5,2,77,0,0,0,0,0,0,0,0,27,46,49,100,100,42,41,16,68,99,85,85,15,0,3367
Dominican College of Blauvelt,1594,1146,286,88,11,410,490,400,480,390,480,18,23,1998,1441,557,1527,1280,247,286,286,0,471,161,310,2,72,25,21990,22940,23970,24790,39890,39890,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (smaller programs),1998,1441,557,1527,471,1280,247,0,12,11,22,0,26,2,28,0,12,66,0,6,13,27,0,25,2,26,0,6,66,0,28,4,6,0,27,0,34,0,28,65,0,0,0,0,0,0,0,0,21,34,36,99,99,50,50,33,48,99,81,75,5,0,657
Dowling College,2675,2094,388,0,0,0,0,0,0,0,0,0,0,3000,1725,1275,2100,1425,675,247,232,15,900,300,600,0,78,19,24880,25908,27124,28390,43962,43962,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),3198,1737,1461,2314,884,1455,859,0,2,9,7,1,49,0,28,4,2,56,0,2,8,8,0,49,0,29,4,2,56,0,1,11,5,2,50,0,25,6,3,58,217,88,11,4,0,0,19,8,18,30,34,93,93,48,45,20,53,90,69,68,3,0,827
Elmira College,2324,1854,324,92,37,470,570,480,580,0,0,20,27,1542,1200,342,1408,1188,220,318,318,0,134,12,122,1,80,17,35900,36950,38150,38150,50800,50800,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,1542,1200,342,1408,134,1188,220,0,1,3,3,0,66,2,21,4,1,72,0,1,3,3,0,67,2,19,4,1,72,0,0,1,1,0,51,1,45,1,0,75,0,0,0,0,0,0,0,0,60,63,63,99,99,33,33,3,32,99,79,79,0,0,25291
Fashion Institute of Technology,4449,1995,1233,0,0,0,0,0,0,0,0,0,0,9724,7421,2303,9531,7302,2229,1302,1281,21,193,119,74,1928,45,62,4164,4459,4790,5105,21773,30623,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (smaller programs),9755,7377,2378,9566,189,7257,2309,0,10,9,16,0,46,3,2,13,11,85,0,10,9,16,0,46,3,2,13,11,85,1,8,2,12,0,40,2,19,17,8,81,769,59,423,32,110,8,2,0,0,0,0,69,43,33,33,7,27,15,46,45,6,3499,0
Fordham University,36189,17055,1967,82,34,570,670,590,680,580,680,26,30,15098,12016,3082,8345,7694,651,1967,1944,23,6753,4322,2431,0,47,12,38602,40292,42057,43902,63438,63438,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (high research activity),15097,12015,3082,8345,6752,7694,651,0,8,6,12,0,56,3,4,11,8,58,0,9,4,14,0,61,3,3,6,9,54,0,6,8,10,0,50,2,5,18,6,62,766,39,1063,54,121,6,17,1,76,80,81,92,92,20,20,10,21,92,60,60,6,0,39837
Hamilton College,5017,1364,491,58,25,640,730,660,740,650,730,29,33,1926,1905,21,1926,1905,21,491,491,0,0,0,0,0,27,36,41280,42640,44350,46080,59590,59590,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Baccalaureate Colleges--Arts & Sciences,1926,1905,21,1926,0,1905,21,0,7,4,8,0,62,3,12,5,7,51,0,7,4,8,0,62,3,12,5,7,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,92,93,58,54,18,18,3,15,54,36,36,2,0,417158
Hartwick College,5392,4542,528,50,15,500,620,510,610,480,600,23,27,1615,1576,39,1615,1576,39,528,528,0,0,0,0,0,84,12,34630,36040,37460,38930,50815,50815,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,1618,1579,39,1618,0,1579,39,1,2,6,6,0,69,0,14,3,2,59,1,2,6,6,0,69,0,14,3,2,59,0,0,0,0,0,0,0,0,0,0,0,375,71,136,26,14,3,3,1,54,57,57,100,100,36,36,23,42,100,74,74,15,0,40691
Hilbert College,865,703,191,0,0,0,0,0,0,0,0,0,0,1057,931,126,1007,885,122,188,185,3,50,46,4,11,81,27,18530,18940,19440,19940,30140,30140,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1070,928,142,1020,50,884,136,2,0,9,3,0,72,3,10,1,1,55,2,0,9,2,0,72,3,10,1,1,55,0,0,16,4,0,64,8,6,2,0,58,175,93,12,6,1,1,0,0,31,37,39,98,96,57,57,5,74,95,84,84,10,0,5887
Hobart William Smith Colleges,4385,2168,643,0,0,0,0,0,0,0,0,0,0,2348,2336,12,2344,2332,12,642,642,0,4,4,0,0,49,30,41710,42915,44438,46165,59850,59850,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,2372,2328,44,2368,4,2324,44,1,2,4,6,0,68,0,14,5,2,54,1,2,4,6,0,68,0,14,5,2,54,0,0,0,0,0,50,0,50,0,0,100,0,0,0,0,0,0,0,0,74,79,79,81,77,17,17,10,19,77,53,52,10,0,73420
Hofstra University,22733,13346,1488,72,27,530,630,540,630,0,0,23,28,10914,9394,1520,6848,6380,468,1630,1624,6,4066,3014,1052,0,59,11,31800,34150,35950,37400,54289,54289,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,10928,9383,1545,6826,4102,6378,448,0,7,8,10,1,56,2,6,9,8,56,0,8,9,13,1,58,3,6,3,9,53,0,6,8,6,0,51,1,7,20,6,60,848,52,701,43,62,4,5,0,50,61,62,96,95,23,23,12,21,92,61,61,13,0,34752
Houghton College,807,735,223,83,38,490,630,490,605,470,600,21,28,1024,956,68,1005,947,58,223,223,0,19,9,10,2,91,30,25360,26094,26924,27728,39590,39590,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Remote,Baccalaureate Colleges--Arts & Sciences,1100,1032,68,1081,19,1023,58,0,1,3,2,0,84,3,1,7,1,64,0,1,3,2,0,84,3,1,6,1,64,0,0,0,0,0,84,5,0,11,0,37,0,0,0,0,0,0,0,0,65,72,73,100,100,45,44,23,47,100,72,71,15,0,36659
Iona College,5911,5445,922,83,16,450,550,450,560,0,0,20,24,4241,3389,852,3539,3110,429,922,922,0,702,279,423,0,92,17,28850,30192,31540,32770,49295,49295,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),4241,3389,852,3539,702,3110,429,0,2,7,16,0,53,1,18,3,2,55,0,2,7,17,0,54,1,16,2,2,54,0,2,6,9,0,47,0,29,7,2,60,674,73,233,25,13,1,2,0,53,61,63,98,98,31,31,10,40,97,74,74,11,0,18893
Ithaca College,15658,10429,1789,0,0,0,0,0,0,0,0,0,0,6723,6562,161,6234,6131,103,1789,1789,0,489,431,58,0,67,17,33630,35278,37000,38400,55587,55587,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Small,Master's Colleges and Universities (larger programs),6723,6562,161,6234,489,6131,103,0,3,4,7,0,69,3,11,3,3,57,0,3,5,7,0,69,3,11,2,3,56,0,2,1,6,0,70,2,9,9,2,71,0,0,0,0,0,0,0,0,69,75,76,92,88,19,19,9,23,87,71,71,0,0,34570
Keuka College,1375,1207,228,0,0,0,0,0,0,0,0,0,0,2017,1700,317,1829,1514,315,224,224,0,188,186,2,0,88,19,24010,25235,26505,27465,43005,43005,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (smaller programs),2036,1658,378,1830,206,1514,316,1,1,8,3,0,76,1,7,4,1,77,1,1,8,3,0,76,1,7,3,1,77,0,0,5,2,0,77,1,7,6,0,80,0,0,0,0,0,0,0,0,36,47,48,100,100,49,46,23,69,98,93,93,17,0,6276
Le Moyne College,5924,3667,622,93,45,480,570,500,600,0,0,21,26,3319,2538,781,2785,2401,384,622,622,0,534,137,397,0,62,17,27340,28380,29460,30460,44900,44900,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Master's Colleges and Universities (larger programs),3319,2538,781,2785,534,2401,384,1,3,5,5,0,78,2,6,0,3,60,1,3,6,6,0,77,2,6,1,3,59,0,2,4,2,0,81,0,10,0,2,67,0,0,0,0,0,0,0,0,63,73,74,100,100,53,34,37,54,100,77,76,17,0,43179
LIU Brooklyn,5695,4949,879,86,9,400,500,400,540,390,500,17,22,8399,6177,2222,5011,4207,804,884,869,15,3388,1970,1418,14,87,18,30162,31606,32818,34120,50514,50514,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),8483,6261,2222,5006,3477,4195,811,0,13,30,14,0,23,1,12,6,13,71,0,16,32,16,0,20,1,12,2,16,70,0,9,26,12,0,27,1,12,13,10,71,715,82,136,16,25,3,1,0,8,16,24,97,97,71,71,54,54,96,66,65,6,0,5940
LIU Post,6001,4841,659,84,19,440,520,440,540,420,530,19,23,10563,4822,5741,7985,3669,4316,661,632,29,2578,1153,1425,3,81,14,30210,31646,32862,34070,50934,50934,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),10599,4824,5775,7983,2616,3661,4322,0,5,8,11,0,56,1,11,7,5,61,0,6,7,12,0,57,1,11,6,6,58,0,5,8,9,0,54,1,12,11,5,73,503,76,62,9,94,14,0,0,22,34,39,96,96,38,38,23,45,95,57,56,6,0,7258
LIU Brentwood,0,0,0,0,0,0,0,0,0,0,0,0,0,274,133,141,24,16,8,0,0,0,250,117,133,0,0,0,0,0,0,0,0,0,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),270,130,140,23,247,15,8,0,1,7,10,0,74,1,7,0,1,86,0,9,17,17,0,39,4,13,0,9,61,0,0,6,9,0,77,1,6,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
Manhattan College,7268,4809,757,84,15,480,580,490,610,480,580,23,27,3883,3392,491,3403,3195,208,757,755,2,480,197,283,0,66,16,26920,29700,32535,35725,52005,52005,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),3883,3392,491,3403,480,3195,208,0,4,4,17,0,57,2,14,3,4,46,0,4,4,18,0,60,2,9,2,4,44,0,2,3,7,0,36,0,47,5,2,54,0,0,0,0,0,0,0,0,60,72,74,92,91,31,31,3,35,91,67,64,13,0,18273
Manhattanville College,3930,3016,476,43,0,480,590,490,590,470,580,0,0,2620,1935,685,1737,1642,95,482,480,2,883,293,590,0,77,16,34350,35370,35370,35370,52240,52240,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),2750,1900,850,1719,1031,1611,108,0,1,6,10,0,31,1,42,8,1,66,0,1,7,12,0,23,1,46,9,1,64,0,1,5,8,0,45,1,36,5,1,68,0,0,0,0,0,0,0,0,54,58,58,99,98,39,39,11,39,98,70,69,7,0,4845
Marist College,10351,3876,1149,0,0,0,0,0,0,0,0,0,0,6365,5118,1247,5566,4921,645,1149,1149,0,799,197,602,0,37,30,27740,28890,30090,31290,48390,48390,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),6365,5121,1244,5566,799,4924,642,0,3,4,8,0,69,2,13,2,3,58,0,2,4,8,0,70,2,12,1,3,59,0,3,8,7,0,62,1,16,2,3,54,515,45,613,53,21,2,0,0,70,80,80,88,86,14,14,10,13,85,63,60,8,0,8436
Marymount Manhattan College,4147,3095,399,84,28,480,590,450,560,470,590,21,26,1833,1593,240,1833,1593,240,425,397,28,0,0,0,13,75,13,23536,24708,25648,26640,48740,48740,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,1833,1593,240,1833,0,1593,240,1,4,10,16,0,58,1,6,5,4,77,1,4,10,16,0,58,1,6,5,4,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,43,44,92,89,30,30,18,15,88,86,86,10,0,9214
Medaille College,1505,817,443,83,19,390,480,370,490,0,0,0,0,2308,2097,211,1728,1586,142,443,436,7,580,511,69,96,54,54,20570,21598,22678,23812,37312,37312,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),2390,2185,205,1727,663,1585,142,0,1,18,4,1,60,3,5,7,2,69,0,1,20,4,1,63,3,5,2,2,67,1,2,14,4,2,53,1,4,19,4,77,0,0,0,0,0,0,0,0,38,48,50,92,91,61,60,7,69,89,90,90,9,0,476
Mercy College,6546,3747,833,0,0,0,0,0,0,0,0,0,0,11635,7051,4584,8192,5577,2615,846,831,15,3443,1474,1969,55,57,22,17010,17360,17556,17576,34278,34278,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),11648,7017,4631,8154,3494,5547,2607,0,4,24,29,0,35,2,5,1,4,73,0,3,24,33,0,31,2,6,0,4,69,0,4,22,20,0,46,1,5,1,4,80,739,89,94,11,1,0,0,0,23,32,35,95,92,71,71,3,68,87,78,78,6,0,11882
Molloy College,3242,2356,501,90,29,480,560,490,580,470,570,20,25,4455,2903,1552,3375,2693,682,501,495,6,1080,210,870,43,73,21,22130,23300,24420,25710,43718,43718,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),4455,2903,1552,3375,1080,2693,682,0,8,14,13,1,62,1,2,0,8,75,0,7,13,14,1,62,1,2,0,8,74,0,9,19,9,0,61,0,1,1,10,79,492,98,9,2,0,0,0,0,39,62,66,97,93,36,30,22,51,92,97,97,3,0,7569
Mount Saint Mary College,3551,3054,449,92,24,450,540,460,550,0,0,20,24,2556,1811,745,2203,1742,461,449,448,1,353,69,284,0,86,15,23300,24410,25340,26250,42290,42290,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),2556,1811,745,2203,353,1742,461,1,2,7,12,0,64,1,13,0,2,71,1,2,7,12,0,63,1,13,0,3,70,0,1,7,9,0,68,0,15,0,1,73,0,0,0,0,0,0,0,0,41,50,52,99,99,32,32,14,42,99,75,75,10,0,2752
College of Mount Saint Vincent,2416,1766,386,88,12,420,500,410,500,420,510,17,23,1985,1522,463,1702,1500,202,390,390,0,283,22,261,0,73,22,26910,27810,29170,30290,44835,44835,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (smaller programs),1938,1539,399,1669,269,1489,180,0,9,17,32,0,26,5,8,3,9,73,0,9,17,34,0,27,5,6,2,9,72,0,8,14,22,0,23,3,18,12,8,80,0,0,0,0,0,0,0,0,37,49,52,100,100,62,62,15,67,99,89,89,11,0,5766
Nazareth College,3838,2625,423,0,0,0,0,0,0,0,0,0,0,2823,2293,530,2034,1901,133,423,423,0,789,392,397,0,68,16,26334,27422,28330,29624,44290,44290,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),2823,2293,530,2034,789,1901,133,1,2,5,5,0,72,1,13,2,2,75,1,3,5,4,0,72,1,12,2,3,73,1,2,5,5,0,71,0,14,3,2,79,387,91,30,7,6,1,0,0,59,67,68,100,100,31,31,14,50,100,82,82,14,0,21791
The College of New Rochelle,1554,885,532,15,1,450,520,450,535,440,510,22,25,3929,2837,1092,3210,2726,484,532,511,21,719,111,608,0,57,60,28010,29100,30380,31260,47550,47550,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),3966,2865,1101,3225,741,2755,470,0,2,50,13,0,9,1,25,0,2,89,0,2,52,13,0,6,1,26,0,2,90,1,2,43,12,0,22,0,20,0,2,89,474,96,17,3,1,0,0,0,16,25,26,100,100,89,89,10,82,95,46,46,1,0,0
The New School,4978,3315,1038,52,15,505,635,510,605,0,0,22,28,10091,8374,1717,6634,5855,779,1038,996,42,3457,2519,938,411,67,31,36729,38198,39368,40426,59691,59691,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,10301,8415,1886,6777,3524,5878,899,0,8,6,9,0,38,3,5,29,8,69,0,10,5,10,0,35,3,5,31,11,72,0,4,8,9,0,43,3,6,26,4,64,197,19,502,48,330,32,9,1,50,62,65,95,94,26,26,13,7,94,43,43,6,0,22045
New York University,57845,15066,5207,78,22,620,720,630,740,640,730,28,32,43952,34078,9874,22566,21263,1303,5261,5213,48,21386,12815,8571,96,26,35,40082,41606,43204,44848,63540,63540,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (very high research activity),44599,35096,9503,22615,21984,21365,1250,0,15,5,8,0,38,2,13,19,15,58,0,18,5,10,0,39,3,11,14,18,60,0,11,5,6,0,38,1,15,24,11,57,1246,24,3173,61,779,15,9,0,77,82,84,55,48,20,20,3,10,46,42,41,3,0,66851
Niagara University,3716,2465,700,94,40,460,550,470,570,0,0,21,25,4052,3340,712,3225,2863,362,700,698,2,827,477,350,3,66,28,25650,26400,27230,28200,42350,42350,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),4056,3342,714,2896,1160,2719,177,1,1,5,4,0,64,1,7,17,1,61,1,1,6,4,0,75,2,7,5,1,58,0,1,3,2,0,37,0,8,49,1,68,0,0,0,0,0,0,0,0,60,65,65,98,98,38,38,8,55,98,78,77,11,0,22001
New York Institute of Technology,5433,4024,841,87,15,440,550,490,600,0,0,20,24,7604,6306,1298,4510,3971,539,837,825,12,3094,2335,759,23,74,21,25470,27290,28940,30780,48552,48552,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),7545,6028,1517,4456,3089,3704,752,0,15,7,10,0,26,1,24,17,15,43,0,12,8,12,0,19,1,35,13,13,37,0,19,7,6,0,37,1,8,22,19,51,0,0,0,0,0,0,0,0,25,43,47,97,92,42,42,6,47,90,56,55,4,0,15730
Nyack College,700,677,264,72,13,400,535,370,520,0,0,17,22,3082,2033,1049,1831,1515,316,264,248,16,1251,518,733,9,97,39,20500,21500,22500,23250,36532,36532,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),3082,2033,1049,1831,1251,1515,316,0,12,32,26,0,20,2,2,5,12,59,0,10,29,28,0,24,2,2,5,10,61,0,15,37,24,0,15,1,2,6,15,56,0,0,0,0,0,0,0,0,24,39,42,100,100,58,58,15,51,100,89,89,9,0,3829
Pace University-New York,12885,9900,1848,90,9,470,570,470,570,0,0,21,25,12624,9148,3476,8289,7116,1173,1804,1758,46,4335,2032,2303,47,77,19,33702,35032,36614,38069,56999,56999,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,12624,9148,3476,8289,4335,7116,1173,0,9,11,13,0,46,3,6,12,9,61,0,9,11,16,0,47,3,6,8,9,59,0,9,12,8,0,45,2,6,19,9,63,0,0,0,0,0,0,0,0,34,49,51,99,99,43,42,19,33,99,70,69,8,0,11184
Paul Smiths College of Arts and Science,970,725,240,78,20,450,530,430,530,0,0,20,25,982,970,12,982,970,12,240,240,0,0,0,0,80,75,33,22985,23695,24408,25261,40021,40021,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate Colleges--Diverse Fields,981,969,12,981,0,969,12,0,0,1,3,0,68,1,25,0,0,34,0,0,1,3,0,68,1,25,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,36,37,99,99,48,48,16,59,98,84,84,18,0,20754
Polytechnic Institute of New York University,3444,2591,451,87,18,550,660,640,740,550,650,28,32,4890,4008,882,2155,2033,122,451,451,0,2735,1975,760,0,75,17,36284,37882,39566,41328,59570,59570,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (high research activity),4890,4008,882,2155,2735,2033,122,0,19,4,6,0,19,0,9,43,19,26,0,34,6,9,0,29,0,12,10,34,24,0,8,2,3,0,11,0,7,69,8,28,0,0,0,0,0,0,0,0,33,52,57,94,93,42,42,16,40,93,57,57,8,0,30868
Rensselaer Polytechnic Institute,16150,6654,1411,74,26,620,720,670,768,0,0,27,31,6616,6515,101,5379,5377,2,1411,1411,0,1237,1138,99,0,41,21,40680,42704,44475,46269,61820,61820,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Research Universities (very high research activity),6714,6565,149,5452,1262,5423,29,0,9,2,6,0,60,5,2,16,9,30,0,10,2,7,0,64,6,2,8,10,30,0,4,2,2,0,39,2,2,49,4,30,421,30,867,61,122,9,1,0,65,83,85,95,95,15,15,10,13,94,63,62,12,0,88229
Roberts Wesleyan College,814,591,206,89,36,450,590,470,580,440,560,20,25,1734,1584,150,1314,1224,90,206,203,3,420,360,60,0,73,35,24369,25322,26324,27364,40888,40888,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),1735,1585,150,1315,420,1225,90,0,1,13,5,0,73,4,1,3,1,72,0,1,13,6,0,74,3,1,3,1,70,0,1,14,4,0,70,7,0,2,1,78,0,0,0,0,0,0,0,0,53,60,61,100,100,44,44,41,64,100,83,83,10,0,12730
Rochester Institute of Technology,16354,9839,2784,66,34,540,640,570,680,520,630,25,31,16591,14127,2464,13880,12106,1774,2784,2768,16,2711,2021,690,176,60,28,30717,32037,33258,34424,47627,47627,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),16583,14119,2464,13880,2703,12106,1774,0,5,4,5,0,56,2,15,13,5,32,0,6,5,6,0,61,2,16,5,6,32,0,3,2,2,0,30,1,8,54,3,35,1295,47,1289,46,146,5,54,2,28,56,66,95,90,31,31,22,35,89,71,71,10,0,47198
University of Rochester,17244,6153,1472,67,35,600,700,650,750,620,700,29,32,11019,9283,1736,6177,5837,340,1472,1472,0,4842,3446,1396,0,36,24,40282,41826,43666,45372,61340,61340,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Research Universities (very high research activity),11020,9284,1736,6177,4843,5837,340,0,8,4,5,0,50,2,10,21,8,52,0,10,5,6,0,54,3,7,15,10,52,0,5,4,3,0,44,1,12,30,6,51,0,0,0,0,0,0,0,0,77,84,85,89,88,19,18,17,17,87,56,51,6,0,162764
The Sage Colleges,2237,1267,297,0,0,0,0,0,0,0,0,0,0,2839,1852,987,1704,1446,258,297,295,2,1135,406,729,1,57,23,27850,28000,28000,28000,42470,42470,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),2832,1852,980,1699,1133,1446,253,0,3,10,6,0,66,2,12,0,3,81,0,3,13,8,0,61,3,12,0,3,79,1,3,4,4,0,74,2,11,1,4,83,259,87,32,11,1,0,5,2,52,57,58,98,97,60,60,9,71,97,89,89,7,0,9469
St Bonaventure University,2754,2203,438,92,61,460,580,470,600,450,570,21,27,2244,2037,207,1826,1780,46,438,438,0,418,257,161,0,80,20,26895,27890,28727,29589,42359,42359,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Master's Colleges and Universities (larger programs),2244,2037,207,1826,418,1780,46,0,3,4,5,0,70,1,13,2,3,53,0,4,5,6,0,66,1,15,2,4,51,1,0,2,1,0,86,1,6,3,0,63,0,0,0,0,0,0,0,0,54,66,67,99,99,30,29,19,39,99,71,71,13,0,24874
St Francis College,2815,1811,568,95,0,430,510,420,520,420,520,0,0,2874,2506,368,2819,2481,338,568,566,2,55,25,30,15,64,31,17280,18100,19200,20700,43200,43200,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,2819,2481,338,2764,55,2456,308,0,3,19,22,1,37,2,10,5,4,56,0,3,20,22,1,37,2,9,5,4,56,0,5,2,11,0,38,0,33,11,5,44,0,0,0,0,0,0,0,0,27,48,52,98,97,46,46,4,50,91,46,46,0,0,25980
St Lawrence University,4424,2054,631,0,0,0,0,0,0,0,0,0,0,2506,2410,96,2414,2397,17,629,629,0,92,13,79,0,46,31,41155,42735,44400,46040,59550,59550,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Arts & Sciences,2506,2410,96,2414,92,2397,17,1,2,3,4,0,79,2,1,8,2,56,0,2,3,4,0,80,2,0,8,2,55,8,1,1,3,0,55,2,28,1,1,72,0,0,0,0,0,0,0,0,77,80,80,95,94,20,20,8,22,94,55,54,1,0,104324
The College of Saint Rose,4651,3605,621,0,0,0,0,0,0,0,0,0,0,4542,3303,1239,2891,2664,227,621,619,2,1651,639,1012,0,78,17,24138,25464,26622,27684,42234,42234,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (larger programs),4542,3303,1239,2891,1651,2664,227,0,2,8,6,0,67,4,10,2,2,69,1,2,7,5,0,72,5,7,1,2,66,0,2,10,6,0,60,3,15,4,2,73,513,83,100,16,8,1,0,0,53,64,66,99,99,38,38,30,47,98,81,81,15,0,7914
St Thomas Aquinas College,1841,1514,337,95,20,420,520,410,530,410,510,17,20,1972,1307,665,1801,1259,542,337,332,5,171,48,123,3,82,22,22410,23720,25110,26340,41120,41120,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (smaller programs),1972,1307,665,1801,171,1259,542,0,3,7,15,0,61,1,11,1,3,54,0,3,7,16,0,59,2,11,1,3,53,0,4,4,6,0,84,0,2,1,4,68,224,66,79,23,0,0,34,10,36,52,53,97,94,36,36,8,37,89,68,68,6,0,28754
Sarah Lawrence College,2165,1335,344,0,0,0,0,0,0,0,0,0,0,1795,1710,85,1483,1452,31,431,431,0,312,258,54,0,62,26,43564,45212,46924,48696,64122,64122,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1782,1701,81,1471,311,1441,30,0,4,4,9,0,57,5,10,11,4,74,0,4,4,9,0,55,5,12,11,4,72,0,4,7,7,0,66,4,2,11,4,83,0,0,0,0,0,0,0,0,62,68,69,78,70,15,14,2,4,70,63,62,6,0,44780
Siena College,8082,5500,734,77,38,500,600,520,620,480,590,22,27,3216,3059,157,3161,3008,153,765,765,0,55,51,4,0,68,13,26510,29295,30200,31368,47265,47265,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,3207,3059,148,3151,56,3007,144,0,4,4,6,0,81,2,1,1,4,53,0,4,4,7,0,80,2,1,2,4,53,0,5,2,2,0,91,0,0,0,5,36,598,78,161,21,7,1,0,0,74,79,80,98,98,24,24,9,35,98,76,76,12,0,42117
Skidmore College,8285,2904,660,78,31,560,680,570,670,570,690,26,30,2702,2647,55,2684,2647,37,660,660,0,18,0,18,0,35,23,41184,42380,44170,45874,60900,60900,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Small,Baccalaureate Colleges--Arts & Sciences,2702,2647,55,2684,18,2647,37,0,6,4,9,0,63,4,8,7,6,61,0,6,4,9,0,63,4,8,7,6,61,0,6,11,11,0,61,0,11,0,6,72,182,28,411,62,66,10,1,0,83,85,86,57,46,14,13,13,13,45,31,31,2,0,110095
Saint Joseph's College-New York,3148,2373,547,88,24,470,570,480,580,460,560,21,25,5354,3699,1655,4529,3591,938,547,544,3,825,108,717,0,75,23,17565,18425,20125,21878,0,0,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),5354,3699,1655,4529,825,3591,938,0,3,11,11,0,59,1,10,6,3,70,1,3,10,12,0,59,1,10,5,3,69,0,2,15,9,0,59,0,8,7,2,76,0,0,0,0,0,0,0,0,56,70,72,96,95,34,34,12,50,92,48,47,2,0,10819
Saint John Fisher College,4016,2521,521,96,47,480,570,510,600,460,560,22,27,3987,3350,637,2959,2738,221,521,521,0,1028,612,416,0,63,21,25270,26260,27370,28430,41370,41370,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Doctoral/Research Universities,3987,3350,637,2959,1028,2738,221,0,3,5,4,0,81,1,4,1,3,61,0,3,4,4,0,83,1,4,0,3,60,0,5,8,4,0,76,2,3,1,6,65,495,95,26,5,0,0,0,0,65,71,72,100,100,29,29,11,52,100,84,84,14,0,15525
St John's University-New York,51634,27449,2792,93,19,480,590,490,620,0,0,21,27,20729,13719,7010,15773,10908,4865,2794,2789,5,4956,2811,2145,19,53,10,31980,33875,35520,37260,56971,56971,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Doctoral/Research Universities,20729,13719,7010,15773,4956,10908,4865,0,16,14,15,0,42,3,4,7,16,56,0,16,15,16,0,40,3,4,4,17,55,0,13,9,11,0,47,1,4,15,13,62,0,0,0,0,0,0,0,0,36,47,55,98,97,43,43,8,40,97,83,82,7,0,25196
SUNY College of Technology at Alfred,5761,3165,1101,69,24,470,570,530,610,0,0,21,26,3549,3216,333,3549,3216,333,1101,1094,7,0,0,0,828,55,35,6218,6542,6874,7294,23239,29899,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate/Associate's Colleges,3555,3222,333,3555,0,3222,333,0,1,10,6,0,79,2,1,1,1,40,0,1,10,6,0,79,2,1,1,1,40,0,0,0,0,0,0,0,0,0,0,0,1042,95,55,5,3,0,1,0,39,47,49,94,82,56,55,18,67,78,79,78,8,1175,0
SUNY College of Technology at Canton,3391,2653,780,0,0,0,0,0,0,0,0,0,0,3520,2938,582,3520,2938,582,780,772,8,0,0,0,434,78,29,6297,6539,6859,7181,21416,25586,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate/Associate's Colleges,3512,2938,574,3512,0,2938,574,1,1,13,7,0,69,1,4,2,1,56,1,1,13,7,0,69,1,4,2,1,56,0,0,0,0,0,0,0,0,0,0,0,754,97,18,2,8,1,0,0,23,29,29,96,85,67,66,11,77,81,86,86,6,2677,0
SUNY College of Technology at Delhi,4846,2843,935,0,0,0,0,0,0,0,0,0,0,3375,2627,748,3375,2627,748,935,933,2,0,0,0,553,59,33,6405,6780,7090,7200,21090,25260,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate/Associate's Colleges,3308,2590,718,3308,0,2590,718,0,2,14,12,0,64,2,5,1,2,53,0,2,14,12,0,64,2,5,1,2,53,0,0,0,0,0,0,0,0,0,0,0,893,97,17,2,10,1,1,0,28,43,45,91,77,59,59,9,71,74,82,82,5,1295,0
SUNY College of Agriculture and Technology at Cobleskill,2765,2021,781,80,6,450,540,450,540,0,0,16,22,2470,2321,149,2470,2321,149,781,773,8,0,0,0,361,73,39,7672,7768,8262,7149,22661,32111,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Baccalaureate/Associate's Colleges,2453,2267,186,2453,0,2267,186,0,1,11,10,0,76,0,0,1,1,52,0,1,11,10,0,76,0,0,1,1,52,0,0,0,0,0,0,0,0,0,0,0,700,90,60,8,1,0,14,2,29,40,44,90,77,54,54,14,67,73,78,78,7,1523,0
Farmingdale State College,5401,2843,1190,93,19,430,510,450,540,0,0,19,23,8162,6074,2088,8162,6074,2088,1122,1109,13,0,0,0,417,53,42,6093,6444,6793,7125,22185,31635,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,8162,6074,2088,8162,0,6074,2088,0,7,10,15,0,61,2,1,3,8,42,0,7,10,15,0,61,2,1,3,8,42,0,0,0,0,0,0,0,0,0,0,0,1103,99,4,0,12,1,0,0,21,41,43,68,51,33,33,9,45,45,42,42,2,771,0
Morrisville State College,4049,2388,858,89,23,420,500,420,530,0,0,17,21,3026,2665,361,3026,2665,361,852,841,11,0,0,0,438,59,36,6522,7520,8277,7412,23352,32802,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Distant,Baccalaureate/Associate's Colleges,3028,2668,360,3028,0,2668,360,1,1,18,7,0,68,2,2,1,1,48,1,1,18,7,0,68,2,2,1,1,48,0,0,0,0,0,0,0,0,0,0,0,805,95,38,4,8,1,0,0,21,25,25,94,85,65,65,5,76,11,82,82,4,479,0
SUNY at Albany,21178,11744,2568,91,26,490,580,520,610,0,0,22,26,17316,14376,2940,12816,12039,777,2567,2565,2,4500,2337,2163,0,55,22,6830,7172,7525,8040,22419,32739,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),17338,14398,2940,12822,4516,12055,767,0,7,12,11,0,55,2,5,8,7,52,0,8,14,13,0,53,3,4,5,8,48,0,4,5,5,0,62,2,5,18,4,61,2239,87,201,8,121,5,5,0,56,64,66,79,59,37,36,12,45,56,64,63,4,2600,0
SUNY at Binghamton,28232,12104,2664,93,33,590,675,630,710,580,670,27,30,16080,14399,1681,13010,12577,433,2665,2588,77,3070,1822,1248,0,43,22,6881,7216,7645,8144,22832,33152,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Midsize,Research Universities (high research activity),16077,14383,1694,12997,3080,12559,438,0,12,5,8,0,52,2,4,16,12,47,0,14,5,10,0,54,2,4,11,14,47,0,5,3,4,0,45,1,8,35,5,50,2038,77,295,11,296,11,4,0,69,79,81,61,43,24,24,6,35,37,47,47,5,4893,0
University at Buffalo,23093,13053,3669,72,32,500,600,550,660,0,0,23,28,29882,24880,5002,19881,18176,1705,3669,3650,19,10001,6704,3297,0,57,28,7136,7482,7989,8211,23316,35256,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (very high research activity),29850,24816,5034,19831,10019,18091,1740,0,11,6,5,0,48,1,7,22,11,47,0,13,7,7,0,49,2,6,17,13,46,0,6,3,2,0,47,0,9,32,6,50,3052,84,162,4,434,12,5,0,52,68,72,75,59,31,31,15,42,27,52,52,7,19863,0
Stony Brook University,30300,11963,2709,88,26,550,650,600,700,540,650,26,30,24199,20084,4115,16047,14933,1114,2709,2708,1,8152,5151,3001,0,39,23,6580,6994,7560,7995,22127,34067,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (very high research activity),24143,20044,4099,15992,8151,14892,1100,0,19,6,9,0,38,2,11,16,19,49,0,24,6,10,0,37,2,9,11,24,46,0,8,5,6,0,41,1,14,25,8,56,0,0,0,0,0,0,0,0,45,63,66,80,69,34,34,6,41,54,50,49,4,6730,0
SUNY College of Environmental Science and Forestry,1538,777,288,89,48,520,620,540,640,0,0,23,27,2307,1977,330,1722,1648,74,288,285,3,585,329,256,47,51,37,5941,6269,6593,7033,24093,33543,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Doctoral/Research Universities,2229,1966,263,1702,527,1647,55,0,2,1,2,0,82,2,2,8,3,45,0,3,1,2,0,87,2,2,2,3,43,1,2,2,1,0,63,1,2,29,2,51,224,78,55,19,9,3,0,0,51,69,71,90,84,32,23,21,38,82,61,61,5,10676,0
SUNY Institute of Technology at Utica-Rome,1954,929,274,93,22,450,550,500,580,0,0,22,26,2209,1345,864,1533,1150,383,274,274,0,676,195,481,0,48,29,6114,6439,6764,7090,23065,32515,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Midsize,Master's Colleges and Universities (medium programs),2480,1620,860,1804,676,1425,379,0,3,7,5,0,78,2,0,5,4,46,0,3,7,5,0,81,2,0,1,3,41,0,4,6,2,0,71,1,0,14,4,58,266,97,2,1,7,3,0,0,32,45,48,92,83,46,45,15,63,82,65,64,6,1367,0
SUNY College at Brockport,8570,4091,1085,94,41,470,570,490,590,450,550,21,26,8128,6729,1399,7090,6411,679,1081,1080,1,1038,318,720,0,48,27,6176,6508,6881,7222,20952,30402,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Fringe,Master's Colleges and Universities (larger programs),8128,6729,1399,7090,1038,6411,679,0,1,8,4,0,75,2,8,1,1,56,0,1,8,5,0,74,2,9,1,1,55,0,1,7,3,0,80,2,6,1,1,67,1048,97,22,2,9,1,1,0,48,64,67,87,68,40,38,10,50,64,74,73,11,1042,0
Buffalo State SUNY,11256,5463,1324,78,0,440,520,450,540,0,0,0,0,11091,8799,2292,9355,8293,1062,1324,1320,4,1736,506,1230,0,49,24,6053,6353,6694,7022,21493,30853,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Master's Colleges and Universities (larger programs),11091,8799,2292,9355,1736,8293,1062,0,2,18,8,0,63,3,0,5,2,59,0,2,20,9,0,63,3,0,1,2,57,0,1,8,3,0,59,1,1,26,1,70,1283,97,12,1,29,2,0,0,25,45,49,87,72,51,50,27,63,68,70,69,4,2738,0
SUNY College at Cortland,11518,5394,1207,87,19,480,550,500,580,0,0,21,25,7109,6538,571,6405,6284,121,1207,1206,1,704,254,450,0,47,22,6215,6574,6942,7327,22634,32084,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (larger programs),7110,6537,573,6400,710,6281,119,0,1,4,9,0,73,2,10,1,1,57,0,1,4,10,0,71,2,11,1,1,56,0,1,2,2,0,92,0,1,3,1,62,1141,95,59,5,7,1,0,0,47,67,70,84,57,31,26,14,44,55,73,73,11,3788,0
SUNY at Fredonia,5883,3032,1007,82,27,470,570,470,580,0,0,21,26,5405,5161,244,5103,4958,145,1006,1005,1,302,203,99,0,52,33,6333,6688,7058,7400,21638,31088,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (medium programs),5391,5149,242,5092,299,4945,147,0,2,5,5,0,81,1,4,3,2,56,0,2,5,5,0,81,1,4,3,2,55,1,2,2,1,0,80,0,1,13,2,77,1052,96,33,3,14,1,0,0,45,63,64,87,65,37,35,10,51,25,75,74,14,4444,0
SUNY College at Geneseo,9164,4184,997,57,42,580,690,600,700,0,0,27,29,5382,5210,172,5236,5139,97,1134,1131,3,146,71,75,0,46,24,6401,6758,7068,7430,21672,31122,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (smaller programs),5644,5452,192,5504,140,5386,118,0,6,3,6,0,75,2,5,3,7,58,0,7,3,6,0,75,2,4,3,7,58,0,1,0,2,0,66,0,29,2,1,77,1096,97,24,2,11,1,1,0,66,77,78,59,42,18,18,7,37,36,43,42,4,3910,0
State University of New York at New Paltz,12892,5620,1119,92,25,510,610,520,610,510,600,23,27,7554,6489,1065,6551,6019,532,1122,1122,0,1003,470,533,0,44,20,6135,6458,6758,7083,21403,30853,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),7578,6538,1040,6570,1008,6060,510,0,4,5,11,0,67,0,9,3,4,64,0,5,5,11,0,67,0,9,3,5,63,0,3,2,4,0,71,0,9,9,3,71,1035,94,54,5,14,1,1,0,51,68,70,73,48,29,29,17,46,45,59,59,3,2054,0
SUNY Oneonta,10261,5205,1119,91,40,500,580,520,600,490,580,22,25,6055,5795,260,5820,5688,132,1119,1119,0,235,107,128,0,51,21,6231,6559,6896,7230,21680,31130,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (smaller programs),6034,5808,226,5800,234,5675,125,0,2,3,8,0,82,0,4,1,2,61,0,2,3,9,0,82,0,3,1,2,60,0,2,0,3,0,80,0,13,0,2,78,1086,97,24,2,9,1,0,0,54,69,70,79,53,27,27,6,41,50,63,63,5,6137,0
SUNY College at Oswego,10351,5034,1508,96,33,520,590,520,590,0,0,22,26,8097,7304,793,7306,6949,357,1506,1504,2,791,355,436,0,49,30,6186,6510,6841,7181,21991,31441,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (larger programs),8117,7306,811,7328,789,6954,374,0,2,6,8,0,80,2,0,2,2,52,0,2,6,9,0,79,2,0,2,2,52,0,2,2,4,0,89,2,0,1,2,59,1439,96,56,4,10,1,1,0,40,56,58,91,78,40,40,13,52,44,73,73,5,2181,0
SUNY College at Potsdam,4764,3257,821,0,0,0,0,0,0,0,0,0,0,4042,3817,225,3707,3596,111,821,818,3,335,221,114,0,68,25,6183,6506,6842,7174,21109,30559,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (larger programs),4042,3817,225,3707,335,3596,111,1,1,6,8,0,72,3,6,2,1,59,1,1,7,8,0,72,3,6,1,1,57,2,0,2,1,0,75,0,8,12,0,76,794,97,21,3,6,1,0,0,30,49,51,91,77,47,46,12,59,73,77,77,6,4926,0
SUNY at Purchase College,8405,2790,775,95,22,500,600,480,580,490,600,21,26,4131,3896,235,4017,3794,223,775,773,2,114,102,12,0,33,28,6504,6829,7230,7573,24672,34122,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,4353,3949,404,4239,114,3847,392,0,3,8,17,0,55,4,10,2,3,56,0,3,8,18,0,56,4,9,2,3,56,0,3,2,3,0,18,2,52,22,3,54,611,79,150,19,12,2,2,0,50,58,60,82,60,36,34,14,42,26,69,69,4,12326,0
SUNY College at Old Westbury,3341,1939,410,82,7,450,530,470,550,430,520,19,22,4364,3655,709,4158,3556,602,421,420,1,206,99,107,0,58,21,5966,6324,6624,6624,19284,28534,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,4367,3657,710,4161,206,3558,603,0,9,29,21,0,34,3,3,1,10,58,0,9,30,21,0,33,3,2,1,10,58,0,8,5,14,0,60,1,12,1,8,58,402,97,2,0,11,3,0,0,20,32,36,77,64,52,52,16,61,59,53,49,9,44,0
SUNY College at Plattsburgh,8193,3739,954,89,29,460,550,470,570,0,0,20,24,6051,5458,593,5639,5186,453,954,953,1,412,272,140,0,46,26,6164,6502,6828,7179,21309,30759,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (larger programs),6051,5458,593,5639,412,5186,453,0,2,6,8,0,72,2,4,6,2,57,0,2,6,8,0,71,2,4,6,2,56,0,2,2,3,0,87,1,2,3,2,74,858,90,36,4,58,6,2,0,41,58,60,91,77,37,34,14,50,76,70,69,7,2624,0
SUNY Empire State College,1484,1195,433,0,0,0,0,0,0,0,0,0,0,10718,4225,6493,9795,4134,5661,373,188,185,923,91,832,790,81,36,5195,5545,5915,6265,0,0,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Master's Colleges and Universities (medium programs),11823,4309,7514,10827,996,4218,6609,1,2,14,10,0,64,2,5,3,2,62,0,2,14,10,0,64,2,4,3,2,62,1,3,11,7,1,64,0,11,3,3,65,351,94,10,3,12,3,0,0,8,13,16,94,87,79,78,7,66,16,54,53,1,1849,0
SUNY Maritime College,1279,818,331,90,38,450,570,480,600,430,560,20,26,1761,1616,145,1603,1521,82,331,331,0,158,95,63,11,64,40,6157,6457,6782,7109,22614,32064,New York,New York,Mid East DE DC MD NJ NY PA,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,1755,1612,143,1601,154,1517,84,0,4,3,9,0,68,1,11,4,4,12,0,4,4,9,0,71,1,9,3,4,11,0,4,3,7,0,45,0,29,12,4,23,250,76,73,22,6,2,1,0,25,44,50,76,45,20,20,7,32,33,59,58,7,2048,0
Syracuse University,28269,13990,3487,81,33,500,620,540,650,520,630,23,28,21267,19092,2175,15097,14422,675,3487,3476,11,6170,4670,1500,6,49,25,36302,37668,39004,40458,57450,57450,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Research Universities (high research activity),21267,19092,2175,15097,6170,14422,675,1,7,8,9,0,53,2,5,16,7,54,1,8,9,11,0,55,3,5,9,8,55,0,3,5,4,0,49,1,5,33,4,51,1226,35,1881,54,379,11,1,0,69,79,81,74,70,27,26,18,18,69,58,58,7,0,49259
Teachers College at Columbia University,0,0,0,0,0,0,0,0,0,0,0,0,0,5150,3150,2000,0,0,0,0,0,0,5150,3150,2000,0,0,0,0,0,0,0,0,0,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (high research activity),5149,3169,1980,0,5149,0,0,0,7,8,9,4,40,2,15,16,11,76,0,0,0,0,0,0,0,0,0,0,0,0,7,8,9,4,40,2,15,16,11,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63758
Touro College,1732,1016,859,0,0,0,0,0,0,0,0,0,0,13353,7784,5569,6609,5054,1555,637,596,41,6744,2730,4014,620,59,85,14050,14550,14850,15250,28472,28472,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),13868,8105,5763,6827,7041,5139,1688,0,9,13,10,0,57,1,8,2,9,70,0,4,15,10,0,61,0,7,3,4,69,0,14,12,10,0,53,1,10,1,14,72,556,73,197,26,0,0,11,1,31,42,48,84,84,66,61,4,61,61,17,17,0,0,991
Excelsior College,0,0,0,0,0,0,0,0,0,0,0,0,0,39689,0,39689,37668,0,37668,0,0,0,2021,0,2021,1723,0,0,0,0,0,0,0,0,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (medium programs),39897,0,39897,37440,2457,0,37440,1,3,22,9,1,59,2,3,1,4,56,1,3,22,9,1,59,2,3,1,4,57,1,4,21,8,0,62,2,2,1,4,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42
Union College,5725,2134,559,45,22,590,680,630,720,590,690,28,31,2246,2225,21,2246,2225,21,559,559,0,0,0,0,0,37,26,42042,43602,45219,46785,60150,60150,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,2246,2225,21,2246,0,2225,21,0,6,4,7,0,75,2,0,7,6,46,0,6,4,7,0,75,2,0,7,6,46,0,0,0,0,0,0,0,0,0,0,0,166,30,347,62,46,8,0,0,82,87,88,81,77,14,14,14,14,75,60,59,11,0,172819
United States Merchant Marine Academy,0,0,0,0,0,0,0,0,0,0,0,0,0,991,964,27,964,964,0,218,218,0,27,0,27,0,0,0,0,0,0,1032,9768,9768,New York,New York,US Service schools,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,985,958,27,958,27,958,0,1,6,3,8,0,81,0,1,1,6,15,1,6,3,8,0,80,0,1,1,6,15,0,4,0,4,0,93,0,0,0,4,15,0,0,0,0,0,0,0,0,62,74,74,18,10,10,10,0,0,0,10,10,0,0,0
Utica College,3689,3151,489,87,23,410,520,420,530,400,500,18,23,4022,2447,1575,2875,2234,641,488,486,2,1147,213,934,0,85,16,28620,29996,31930,33320,48650,48650,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (medium programs),4028,2444,1584,2881,1147,2230,651,1,7,10,7,0,67,2,5,3,7,60,1,3,10,8,0,69,2,4,3,3,61,0,18,8,5,0,62,1,6,0,18,59,413,85,64,13,10,2,1,0,30,44,47,99,98,47,47,9,58,97,84,84,17,0,6923
Vassar College,7597,1832,666,75,40,660,740,650,730,660,750,30,33,2477,2437,40,2477,2437,40,665,665,0,0,0,0,0,24,36,43190,44705,46270,47890,61320,61320,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,2477,2437,40,2477,0,2437,40,0,9,6,11,0,61,6,0,7,9,56,0,9,6,11,0,61,6,0,7,9,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,93,94,71,60,23,23,6,11,60,35,34,3,0,351860
Wagner College,2942,2056,430,64,14,530,630,520,640,520,620,22,27,2229,1973,256,1826,1753,73,430,430,0,403,220,183,0,70,21,34100,35820,37540,39220,53924,53924,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),2245,1985,260,1842,403,1765,77,0,3,6,8,0,68,2,9,3,3,66,0,2,6,9,0,66,2,11,3,3,65,0,5,8,4,0,77,1,4,1,5,69,170,40,239,56,19,4,2,0,53,61,61,99,99,21,21,9,20,99,69,68,14,0,36002
Wells College,2214,1321,161,88,32,480,600,470,590,460,560,21,26,534,524,10,534,524,10,161,161,0,0,0,0,0,60,12,32180,33410,34700,35900,49800,49800,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate Colleges--Arts & Sciences,534,524,10,534,0,524,10,1,2,11,8,0,63,3,8,4,2,66,1,2,11,8,0,63,3,8,4,2,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,58,58,100,100,57,56,34,58,100,85,84,20,0,55802
Yeshiva University,1575,1294,857,66,36,550,680,550,690,540,670,23,29,6620,5528,1092,2850,2750,100,873,871,2,3770,2778,992,291,82,66,33050,35200,36500,37600,55075,55075,New York,New York,Mid East DE DC MD NJ NY PA,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (very high research activity),6747,5585,1162,2887,3860,2782,105,0,4,2,3,0,62,1,16,11,4,52,0,0,0,0,0,92,0,1,6,0,47,0,6,3,5,0,40,2,28,15,6,56,0,0,0,0,0,0,0,0,60,81,85,84,83,26,17,20,12,83,34,28,28,0,180152
Appalachian State University,12248,7744,3028,88,19,520,620,540,620,500,590,24,28,17657,15928,1729,15841,15022,819,2883,2883,0,1816,906,910,0,63,39,5251,5538,6059,6462,19058,31266,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (larger programs),17838,16021,1817,16025,1813,15115,910,0,1,3,4,0,86,2,2,1,1,55,0,1,3,4,0,86,2,2,1,1,53,0,1,4,2,0,89,1,2,2,1,70,2581,90,261,9,36,1,5,0,42,64,69,67,39,24,24,4,30,34,45,44,2,4526,0
Barton College,2933,1225,217,77,63,410,500,430,520,390,480,18,22,1073,904,169,1065,898,167,217,215,2,8,6,2,0,42,18,21784,22982,24180,25396,39254,39254,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,1065,906,159,1057,8,900,157,1,1,25,4,0,59,3,6,2,1,69,1,1,25,4,0,59,3,6,2,1,69,0,0,25,0,0,75,0,0,0,0,100,177,82,37,17,3,1,0,0,41,47,48,100,100,53,52,17,63,100,80,79,10,0,24393
Belmont Abbey College,2197,1485,283,66,37,428,540,440,530,0,0,18,24,1647,1549,98,1647,1549,98,283,282,1,0,0,0,0,68,19,23002,26182,27622,18500,32564,32564,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Baccalaureate Colleges--Diverse Fields,1647,1549,98,1647,0,1549,98,0,1,27,2,0,37,0,30,2,1,58,0,1,27,2,0,37,0,30,2,1,58,0,0,0,0,0,0,0,0,0,0,0,163,57,119,42,4,1,0,0,33,38,38,100,99,36,36,20,35,90,78,78,3,0,5529
Bennett College,1639,1354,194,0,0,0,0,0,0,0,0,0,0,680,609,71,680,609,71,194,194,0,0,0,0,0,83,14,15844,16794,16794,17355,31035,31035,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Large,Baccalaureate Colleges--Arts & Sciences,680,609,71,680,0,609,71,0,0,89,2,0,0,1,6,0,0,100,0,0,89,2,0,0,1,6,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,39,44,100,96,84,84,29,58,59,94,94,7,0,16115
Brevard College,2299,1032,245,76,48,420,520,430,530,0,0,18,22,701,690,11,701,690,11,242,242,0,0,0,0,0,45,24,22250,22860,23900,25200,37000,37000,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,701,690,11,701,0,690,11,1,1,10,0,0,75,2,5,6,1,38,1,1,10,0,0,75,2,5,6,1,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,41,43,99,99,44,44,1,42,98,67,67,3,0,34639
Campbell University,11714,8180,788,84,43,380,655,385,645,390,650,17,27,6144,4859,1285,4451,3446,1005,775,770,5,1693,1413,280,98,70,10,22520,24720,25000,26240,42580,42580,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Master's Colleges and Universities (larger programs),6122,4981,1141,4465,1657,3537,928,1,3,15,5,0,59,2,14,2,3,52,1,2,17,6,0,55,2,16,2,2,50,1,5,8,3,0,71,1,9,2,5,58,0,0,0,0,0,0,0,0,39,46,49,100,100,38,38,8,58,94,90,90,6,0,20894
Catawba College,3226,1309,342,100,0,430,540,440,560,0,0,0,0,1310,1210,100,1298,1210,88,335,335,0,12,0,12,0,41,26,25160,25160,26040,26820,40743,40743,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Baccalaureate Colleges--Diverse Fields,1310,1211,99,1298,12,1210,88,1,1,21,3,0,70,1,0,3,1,53,1,1,21,3,0,70,1,0,3,1,52,0,0,8,8,0,83,0,0,0,0,100,0,0,0,0,0,0,0,0,41,50,53,99,99,41,41,23,53,97,71,71,6,0,40089
Chowan University,3708,2282,474,72,39,360,430,340,440,340,420,14,17,1367,1285,82,1361,1285,76,474,474,0,6,0,6,3,62,21,20070,21020,21950,22510,31780,31780,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1367,1285,82,1361,6,1285,76,1,0,70,3,0,21,4,1,1,0,53,1,0,70,3,0,21,4,1,1,0,53,0,0,67,17,0,0,0,0,17,0,100,0,0,0,0,0,0,0,0,15,22,24,100,100,74,74,1,41,100,95,89,6,0,18888
Davidson College,4745,1215,483,79,52,630,730,600,710,610,710,29,33,1788,1788,0,1788,1788,0,483,483,0,0,0,0,0,26,40,36683,38866,40809,42849,57458,57458,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,1788,1788,0,1788,0,1788,0,1,5,7,6,0,69,4,3,6,5,50,1,5,7,6,0,69,4,3,6,5,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,92,92,62,55,13,13,2,8,55,18,18,1,0,292976
Duke University,30374,4077,1714,79,45,670,760,690,790,680,780,30,34,15320,14900,420,6620,6600,20,1732,1732,0,8700,8300,400,0,13,42,40243,41938,43623,45376,61748,61748,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Research Universities (very high research activity),15467,14894,573,6646,8821,6629,17,0,14,7,5,0,50,2,3,18,14,50,1,21,10,6,0,49,2,3,9,21,50,0,9,5,4,0,51,3,3,24,9,50,0,0,0,0,0,0,0,0,87,93,94,64,48,15,14,4,3,47,39,38,3,0,364661
East Carolina University,15535,9658,4015,85,15,480,550,500,570,450,540,21,24,26887,20971,5916,21507,18500,3007,4495,4463,32,5380,2471,2909,0,62,42,4797,5364,5869,6143,20831,34944,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Doctoral/Research Universities,26887,20971,5916,21508,5379,18500,3008,1,3,15,5,0,71,3,2,1,3,60,1,3,16,5,0,70,3,2,1,3,59,1,3,11,3,0,76,2,4,2,3,65,3823,85,653,15,11,0,8,0,31,52,56,73,49,33,32,8,36,39,61,61,8,5852,0
Elizabeth City State University,3925,2243,527,96,3,380,450,400,470,370,440,16,18,2421,2222,199,2336,2146,190,323,320,3,85,76,9,0,57,23,3640,3814,4150,4429,13161,24018,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,2421,2155,266,2336,85,2146,190,1,0,73,1,0,16,1,9,0,0,59,1,0,74,1,0,15,1,9,0,0,59,0,2,54,0,0,38,0,6,0,2,71,299,93,24,7,0,0,0,0,21,38,42,97,92,77,77,9,80,43,75,75,2,1815,0
Elon University,9949,5370,1474,78,22,560,660,560,660,560,660,23,26,6305,6052,253,5599,5464,135,1474,1474,0,706,588,118,0,54,27,26827,27881,28980,30149,43546,43546,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Midsize,Master's Colleges and Universities (smaller programs),6305,6052,253,5599,706,5464,135,0,2,7,4,0,81,2,2,2,2,59,0,2,6,5,0,82,2,2,2,2,59,2,4,8,3,0,74,1,8,0,4,57,261,18,1175,80,20,1,19,1,77,81,82,68,56,8,7,7,6,55,34,33,4,0,27116
Fayetteville State University,4010,2204,612,89,7,380,450,400,470,360,430,17,19,6256,4373,1883,5476,4018,1458,719,699,20,780,355,425,0,55,28,3476,4109,4324,4605,14854,25650,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Midsize,Master's Colleges and Universities (medium programs),6179,4325,1854,5410,769,3971,1439,2,2,65,6,0,18,1,6,1,2,70,2,1,66,6,0,16,1,6,1,1,69,2,2,58,4,0,29,2,2,1,2,74,652,92,43,6,5,1,7,1,12,27,32,96,94,78,78,27,80,78,82,82,0,3374,0
Gardner-Webb University,5481,2640,435,77,51,440,550,460,570,430,550,19,25,4682,2783,1899,2572,2087,485,435,435,0,2110,696,1414,44,48,16,22410,23510,24450,25830,37620,37620,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (larger programs),4656,2784,1872,2587,2069,2089,498,1,1,21,2,0,68,0,6,1,1,68,1,1,16,2,0,68,0,10,2,1,65,0,1,27,2,0,68,0,1,1,1,71,299,69,124,29,11,3,0,0,43,55,55,100,98,39,39,9,46,95,69,67,11,0,13056
Greensboro College,1314,1029,200,83,43,390,500,400,520,380,480,15,21,839,773,66,801,763,38,200,200,0,38,10,28,0,78,19,24070,24970,25600,26306,39376,39376,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,1012,781,231,974,38,771,203,1,1,27,3,0,52,3,13,0,1,52,1,1,28,2,0,53,3,12,0,1,51,0,0,0,26,0,32,0,42,0,0,74,0,0,0,0,0,0,0,0,15,28,31,100,100,70,46,70,45,100,93,93,13,0,19158
Guilford College,3030,2066,407,65,28,460,610,480,580,450,580,20,26,2302,1928,374,2302,1928,374,407,392,15,0,0,0,0,68,20,28800,30430,31380,32470,45395,45395,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,2302,1928,374,2302,0,1928,374,0,3,24,5,0,61,3,1,2,3,56,0,3,24,5,0,61,3,1,2,3,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,57,99,98,41,38,3,35,91,70,67,3,0,34506
High Point University,7663,4918,1257,85,42,490,580,500,600,480,580,21,26,4199,4021,178,3999,3955,44,1160,1160,0,200,66,134,0,64,26,0,0,0,30715,43900,43900,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,4199,4017,182,3999,200,3953,46,1,1,7,3,0,83,1,2,1,1,60,1,1,6,3,0,84,1,2,1,1,59,1,3,23,3,0,62,4,5,1,3,76,0,0,0,0,0,0,0,0,58,62,62,73,68,11,11,6,6,66,47,45,9,0,10066
Johnson C Smith University,4777,1752,232,78,50,363,470,370,450,0,0,15,19,1387,1323,64,1387,1323,64,232,232,0,0,0,0,0,37,13,16542,17368,18236,18236,32136,32136,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Large,Baccalaureate Colleges--Arts & Sciences,1387,1323,64,1387,0,1323,64,0,0,73,6,0,1,2,14,4,0,59,0,0,73,6,0,1,2,14,4,0,59,0,0,0,0,0,0,0,0,0,0,0,112,48,114,49,6,3,0,0,32,40,44,89,83,61,61,18,31,63,72,72,5,0,0
Lees-McRae College,1751,1164,226,0,0,0,0,0,0,0,0,0,0,890,883,7,890,883,7,226,226,0,0,0,0,0,66,19,22414,22564,23950,24150,39250,39250,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Baccalaureate Colleges--Diverse Fields,890,883,7,890,0,883,7,0,0,5,1,0,39,1,52,2,0,60,0,0,5,1,0,39,1,52,2,0,60,0,0,0,0,0,0,0,0,0,0,0,153,68,67,30,5,2,1,0,30,38,38,100,100,38,38,8,40,100,73,73,5,0,24342
Lenoir-Rhyne University,4762,3241,310,63,42,430,530,450,550,0,0,18,23,1816,1509,307,1409,1296,113,310,310,0,407,213,194,0,68,10,25290,26524,27718,29310,43360,43360,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,1898,1519,379,1491,407,1306,185,0,2,12,4,0,70,2,8,2,2,62,1,2,13,5,0,69,2,7,1,2,58,0,1,8,2,0,75,0,10,3,1,74,0,0,0,0,0,0,0,0,40,48,49,99,99,45,45,3,58,99,71,71,4,0,39732
Livingstone College,3270,2329,395,58,35,320,410,320,410,310,390,13,16,1175,1165,10,1175,1165,10,395,395,0,0,0,0,0,71,17,14358,15408,15408,16024,25920,25920,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,Suburb: Midsize,Baccalaureate Colleges--Diverse Fields,1175,1164,11,1175,0,1164,11,1,0,91,1,0,0,0,7,0,0,44,1,0,91,1,0,0,0,7,0,0,44,0,0,0,0,0,0,0,0,0,0,0,277,70,118,30,0,0,0,0,11,17,20,98,89,86,86,19,64,68,91,91,2,0,1610
Mars Hill University,2899,1869,419,74,49,410,510,420,530,0,0,17,23,1023,916,107,1009,902,107,419,417,2,14,14,0,0,64,22,21997,23318,24536,25636,38224,38224,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,1440,1333,107,1426,14,1319,107,2,1,19,3,0,71,0,4,0,1,50,2,1,19,3,0,71,0,4,0,1,50,0,0,0,0,0,100,0,0,0,0,93,263,63,140,33,16,4,0,0,26,38,38,99,99,58,58,10,55,97,83,81,3,0,27581
Meredith College,1762,1098,415,68,31,460,570,470,570,0,0,20,25,1863,1593,270,1562,1481,81,415,415,0,301,112,189,0,62,38,26200,27770,29186,30562,41878,41878,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Diverse Fields,1872,1602,270,1571,301,1490,81,1,3,12,3,0,72,3,4,4,3,98,1,3,11,3,0,72,3,3,4,3,100,1,2,14,3,0,68,2,8,2,2,88,0,0,0,0,0,0,0,0,50,61,62,100,100,37,35,4,53,100,72,71,12,0,43193
Methodist University,4079,2497,452,77,9,420,520,440,540,400,490,18,23,2463,2100,363,2243,1962,281,548,544,4,220,138,82,6,61,18,24148,25550,27070,27830,47311,47311,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Diverse Fields,2463,2100,363,2243,220,1962,281,1,2,19,7,0,52,4,10,6,2,48,1,1,20,7,0,50,4,9,6,2,46,1,4,7,3,0,63,2,20,1,4,64,319,57,195,35,44,8,0,0,18,40,43,99,98,48,41,20,38,91,71,70,12,0,8641
Montreat College,700,380,109,73,47,400,550,420,530,0,0,17,23,926,635,291,745,463,282,113,104,9,181,172,9,35,54,29,22292,23198,22784,23520,35690,35690,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (smaller programs),926,635,291,743,183,462,281,2,1,21,3,0,58,2,10,3,1,60,2,1,19,3,0,59,2,11,4,1,57,2,1,32,2,0,55,1,6,1,1,70,0,0,0,0,0,0,0,0,26,37,39,100,100,43,43,31,41,100,77,77,3,0,13183
Mount Olive College,2117,1054,333,62,11,400,490,420,530,0,0,17,20,3414,1386,2028,3414,1386,2028,236,200,36,0,0,0,205,50,32,15500,16300,16800,17300,27850,27850,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,3414,1386,2028,3414,0,1386,2028,2,1,33,4,0,47,0,10,3,1,67,2,1,33,4,0,47,0,10,3,1,67,0,0,0,0,0,0,0,0,0,0,0,175,74,39,17,0,0,22,9,26,35,37,100,98,40,40,22,43,93,66,66,3,0,9058
North Carolina A & T State University,4480,3120,1849,86,24,400,480,420,500,390,470,17,21,10474,8847,1627,8830,7947,883,1774,1731,43,1644,900,744,0,70,59,4416,4668,5059,5422,15929,27010,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Large,Doctoral/Research Universities,10561,9086,1475,8872,1689,8098,774,0,1,82,2,0,7,2,3,4,1,55,0,1,85,2,0,4,2,3,2,1,54,0,2,62,2,0,18,1,2,13,2,57,1417,80,329,19,24,1,7,0,16,35,43,95,78,64,62,15,51,55,83,83,5,3808,0
University of North Carolina at Asheville,3036,1944,553,84,16,550,650,550,640,520,620,24,27,3636,3129,507,3588,3129,459,596,594,2,48,0,48,0,64,28,4729,5393,5916,6241,18765,32587,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Baccalaureate Colleges--Arts & Sciences,3784,3129,655,3736,48,3129,607,1,1,3,4,0,83,3,4,1,1,57,1,1,3,4,0,83,3,4,1,1,57,0,2,0,4,0,92,0,2,0,2,56,503,84,89,15,2,0,2,0,37,56,60,77,65,26,26,5,40,59,47,47,3,10246,0
University of North Carolina at Chapel Hill,28437,7847,3915,78,24,590,700,610,710,580,690,28,32,29127,24390,4737,18370,17570,800,3946,3943,3,10757,6820,3937,0,28,50,6665,7009,7693,8340,24024,45806,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (very high research activity),29127,24390,4737,18370,10757,17570,800,0,8,8,6,0,64,4,4,5,8,57,0,9,9,7,0,66,4,3,3,9,58,0,6,7,4,0,62,4,6,10,6,56,3264,83,617,16,54,1,11,0,81,88,90,68,48,20,20,3,23,46,32,31,3,80248,0
University of North Carolina at Charlotte,13742,9416,3541,86,20,480,560,500,600,470,550,20,25,26571,20436,6135,21503,18309,3194,3087,3057,30,5068,2127,2941,0,69,38,5138,5440,5873,6107,19080,31609,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Doctoral/Research Universities,26571,20436,6135,21503,5068,18309,3194,0,5,16,7,0,60,3,3,6,5,50,0,5,17,7,0,61,3,3,2,5,48,0,3,14,4,0,57,2,2,19,3,59,2776,90,226,7,65,2,20,1,26,48,54,75,53,37,37,3,41,38,60,59,5,6424,0
University of North Carolina at Greensboro,10112,6069,2516,90,10,460,560,470,560,440,540,21,25,18075,13867,4208,14592,12476,2116,2481,2467,14,3483,1391,2092,0,60,41,4973,5765,6136,6382,19172,32970,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (high research activity),18074,13858,4216,14753,3321,12469,2284,0,4,23,6,0,59,3,2,3,4,66,0,4,25,6,0,56,4,2,3,4,65,0,3,15,3,0,69,1,3,6,3,69,2267,91,149,6,47,2,19,1,30,50,55,80,62,48,48,2,54,54,61,61,2,13884,0
North Carolina Central University,8886,4472,1407,90,9,390,460,400,470,370,450,16,19,8014,6489,1525,6151,5239,912,925,911,14,1863,1250,613,0,50,31,4561,4801,5200,5526,18547,29120,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Midsize,Master's Colleges and Universities (larger programs),8093,6550,1543,6220,1873,5297,923,0,1,77,3,0,11,3,4,1,1,67,0,1,83,3,0,5,3,4,1,1,67,1,2,58,3,0,30,3,2,1,2,69,829,89,100,11,1,0,3,0,15,33,40,97,89,77,76,12,77,67,89,89,0,2872,0
North Carolina State University at Raleigh,20700,10353,4398,76,19,550,640,590,670,520,620,25,30,34008,28368,5640,24772,21814,2958,4188,4182,6,9236,6554,2682,92,50,42,6529,7018,7788,8206,22184,35639,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),34009,26770,7239,24536,9473,21469,3067,0,5,7,4,0,69,2,2,10,5,44,0,5,7,4,0,74,3,2,3,5,44,0,3,6,3,0,56,1,2,27,4,46,3617,84,549,13,141,3,0,0,41,68,74,71,55,22,21,6,30,52,46,45,3,25201,0
North Carolina Wesleyan College,1634,764,222,71,29,370,470,400,500,0,0,15,20,1557,1266,291,1557,1266,291,221,220,1,0,0,0,0,47,29,23050,24890,25760,26632,37812,37812,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Baccalaureate Colleges--Diverse Fields,1602,1232,370,1602,0,1232,370,1,0,49,2,0,30,1,12,3,0,59,1,0,49,2,0,30,1,12,3,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,32,33,84,76,56,55,13,48,68,71,71,3,0,8775
University of North Carolina Wilmington,11184,6061,2053,78,37,540,620,560,630,520,600,22,26,13937,12005,1932,12428,11408,1020,1939,1936,3,1509,597,912,0,54,34,5322,5672,6199,6343,20601,32738,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Master's Colleges and Universities (larger programs),13937,12001,1936,12447,1490,11408,1039,1,2,5,6,0,80,3,2,1,2,61,0,2,5,6,0,80,3,2,1,2,60,1,1,7,3,0,82,2,2,1,1,70,1607,83,309,16,15,1,8,0,52,68,71,69,47,21,21,1,27,43,54,53,4,5626,0
William Peace University,1083,984,328,81,39,410,520,400,510,0,0,16,21,1081,951,130,1081,951,130,330,327,3,0,0,0,0,91,33,25258,25886,23900,23900,38900,38900,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Baccalaureate Colleges--Arts & Sciences,1007,875,132,1007,0,875,132,1,2,35,3,0,45,3,11,0,2,71,1,2,35,3,0,45,3,11,0,2,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,43,43,100,100,67,67,59,74,100,84,84,1,0,50855
University of North Carolina at Pembroke,3087,2224,1020,88,11,410,500,430,510,390,480,18,21,6222,4485,1737,5429,4230,1199,1050,1033,17,793,255,538,0,72,46,4140,4643,4857,5144,17622,26829,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Master's Colleges and Universities (medium programs),6222,4485,1737,5429,793,4230,1199,15,2,33,4,0,40,2,2,1,2,63,15,2,34,4,0,39,2,2,1,2,62,16,1,28,2,0,51,2,0,1,1,71,997,95,41,4,5,0,7,1,15,28,33,92,80,59,59,5,74,10,73,73,0,3278,0
Pfeiffer University,1662,1597,218,89,24,410,520,440,540,400,500,18,22,1852,1040,812,948,855,93,231,231,0,904,185,719,0,96,14,20577,21625,22900,24150,37140,37140,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Distant,Master's Colleges and Universities (larger programs),1860,1041,819,951,909,856,95,0,1,26,3,0,50,1,14,5,1,67,1,1,16,4,0,49,2,23,5,1,60,0,2,36,2,0,51,1,5,4,2,74,0,0,0,0,0,0,0,0,33,48,48,100,100,50,50,32,61,100,83,82,7,0,10373
Queens University of Charlotte,1949,1498,316,81,47,470,560,470,580,460,560,21,26,2285,1579,706,1734,1410,324,316,315,1,551,169,382,49,77,21,23752,25356,27576,29800,44124,44124,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (medium programs),2285,1579,706,1734,551,1410,324,1,3,17,5,0,58,1,10,5,3,71,1,3,18,5,0,55,1,11,6,3,72,0,3,15,3,0,67,1,7,4,3,67,0,0,0,0,0,0,0,0,44,51,52,97,97,45,35,9,34,93,59,58,7,0,42253
Mid-Atlantic Christian University,168,69,37,74,26,340,530,360,500,0,0,14,20,162,129,33,162,129,33,39,39,0,0,0,0,1,41,54,10768,11200,11680,12160,25090,25090,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,162,129,33,162,0,129,33,1,1,25,4,0,69,0,0,0,1,52,1,1,25,4,0,69,0,0,0,1,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,50,60,100,100,58,58,3,56,89,94,94,0,0,16582
Saint Augustine's University,2560,1725,327,52,47,330,423,335,435,0,0,13,17,1299,1265,34,1299,1265,34,327,323,4,0,0,0,0,67,19,17160,17160,17160,17890,31642,31642,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Large,Baccalaureate Colleges--Diverse Fields,1299,1265,34,1299,0,1265,34,0,0,97,0,0,1,0,1,2,0,50,0,0,97,0,0,1,0,1,2,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,29,29,85,80,68,68,38,48,39,70,70,2,0,11458
Salem College,854,497,174,73,50,510,620,490,580,0,0,22,27,1159,842,317,951,824,127,179,179,0,208,18,190,0,58,35,21965,22720,23839,24566,41600,41600,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Baccalaureate Colleges--Arts & Sciences,1187,845,342,979,208,827,152,0,3,24,6,0,58,3,6,1,3,94,0,3,23,7,0,56,3,7,1,3,95,0,2,27,2,0,66,1,1,0,2,89,0,0,0,0,0,0,0,0,61,64,64,99,99,51,51,7,46,99,79,78,2,0,50593
Shaw University,6207,3382,507,0,0,0,0,0,0,0,0,0,0,2064,1875,189,1925,1784,141,531,528,3,139,91,48,6,54,15,12580,13226,14414,16480,29378,29378,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,Yes,No,City: Large,Baccalaureate Colleges--Diverse Fields,2062,1875,187,1923,139,1784,139,0,0,70,1,1,1,0,26,1,1,56,0,0,69,0,1,1,0,27,1,1,56,0,0,85,2,0,1,0,12,0,0,59,0,0,0,0,0,0,0,0,16,26,30,98,94,86,86,34,61,48,95,95,5,0,4647
St Andrews University,898,579,178,67,49,430,510,450,530,400,490,18,23,638,585,53,597,556,41,178,178,0,41,29,12,0,64,31,21614,21614,22674,23332,40000,40000,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,635,592,43,595,40,558,37,2,1,14,1,0,61,1,10,9,1,54,2,1,14,1,0,61,1,10,10,1,53,0,0,13,3,0,75,0,3,8,0,65,0,0,0,0,0,0,0,0,4,42,42,100,100,42,42,10,33,97,75,74,4,0,18744
Wake Forest University,11121,3915,1232,0,0,0,0,0,0,0,0,0,0,7602,7368,234,4823,4756,67,1230,1230,0,2779,2612,167,0,35,31,39970,41576,43200,44742,60242,60242,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Research Universities (high research activity),7602,7375,227,4823,2779,4756,67,0,4,8,5,0,73,2,1,5,5,50,0,5,7,6,0,76,3,0,4,5,52,0,4,12,5,1,67,1,3,8,4,47,0,0,0,0,0,0,0,0,82,86,86,81,64,18,17,15,28,48,50,44,18,0,143348
Warren Wilson College,1214,845,220,69,44,530,660,480,590,520,610,23,27,893,887,6,830,824,6,220,220,0,63,63,0,0,70,26,25626,26675,27740,29540,43000,43000,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Arts & Sciences,893,887,6,830,63,824,6,1,2,4,4,0,85,2,1,3,2,63,1,1,4,4,0,85,2,0,3,1,61,0,5,2,3,0,81,0,8,2,5,78,0,0,0,0,0,0,0,0,40,51,51,90,84,39,39,3,19,84,61,59,2,0,63362
Wingate University,5323,4221,642,86,47,440,550,470,570,430,530,19,24,3002,2457,545,2009,1953,56,642,642,0,993,504,489,0,79,15,21140,22180,23845,25040,37740,37740,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (smaller programs),3002,2457,545,2009,993,1953,56,1,2,14,2,0,62,2,13,3,3,60,1,2,15,2,0,65,4,8,4,2,59,1,3,11,1,0,58,0,24,2,3,62,0,0,0,0,0,0,0,0,47,51,53,99,95,35,35,1,54,95,66,66,6,0,17933
Winston-Salem State University,5164,2874,685,93,25,410,470,430,490,380,460,16,19,5367,4582,785,4990,4371,619,705,703,2,377,211,166,0,56,24,4088,4584,4941,5468,16708,25521,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,Yes,No,City: Midsize,Master's Colleges and Universities (medium programs),5399,4614,785,4938,461,4317,621,0,1,70,2,0,19,2,4,2,1,71,1,1,72,2,0,18,2,3,2,1,71,0,3,44,2,0,32,0,11,6,3,73,654,90,67,9,7,1,0,0,18,38,46,96,91,74,74,20,73,64,82,82,3,3898,0
Western Carolina University,15231,5736,1558,87,17,460,560,480,570,440,530,20,24,10106,7749,2357,8448,7081,1367,1622,1614,8,1658,668,990,0,38,27,5124,5387,5925,6265,18599,28196,North Carolina,North Carolina,Southeast AL AR FL GA KY LA MS NC SC TN VA WV,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Master's Colleges and Universities (larger programs),10107,7750,2357,8448,1659,7081,1367,1,1,6,4,0,81,3,1,3,1,57,1,1,6,4,0,81,3,1,2,1,55,1,1,5,3,0,83,1,0,5,1,66,1493,92,112,7,8,0,8,0,32,48,51,83,71,39,39,2,46,70,61,60,3,6199,0
Dickinson State University,417,203,165,14,77,425,533,405,505,380,475,18,23,1449,1018,431,1449,1018,431,165,163,2,0,0,0,58,49,81,5393,5608,5718,5846,16044,18396,North Dakota,North Dakota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,1449,1018,431,1449,0,1018,431,1,1,4,5,0,76,2,4,7,1,61,1,1,4,5,0,76,2,4,7,1,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,31,38,82,73,30,29,18,22,54,45,45,6,7753,0
University of Jamestown,1088,619,261,18,82,430,570,430,530,0,0,21,24,979,922,57,937,881,56,262,257,5,42,41,1,0,57,42,16780,17270,17870,18494,28738,28738,North Dakota,North Dakota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,997,923,74,955,42,882,73,1,2,3,5,0,84,0,0,6,2,53,1,2,3,5,0,84,0,0,6,2,53,0,2,0,0,0,98,0,0,0,2,60,0,0,0,0,0,0,0,0,33,50,51,100,100,50,38,49,32,100,79,79,16,0,31554
University of Mary,945,785,440,10,89,450,570,450,560,0,0,20,25,2470,1484,986,1594,1288,306,440,429,11,876,196,680,0,83,56,13024,13424,13876,14730,24121,24121,North Dakota,North Dakota,Plains IA KS MN MO NE ND SD,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Rural: Fringe,Master's Colleges and Universities (larger programs),2910,1744,1166,2044,866,1637,407,2,1,3,3,0,79,1,8,3,1,65,2,1,3,3,0,82,1,7,2,1,64,3,1,4,1,0,74,1,12,5,1,68,217,51,197,47,0,0,9,2,28,36,49,100,100,20,20,20,34,100,64,63,15,0,12374
Mayville State University,0,0,0,0,0,0,0,0,0,0,0,0,0,1094,587,507,1065,587,478,134,132,2,29,0,29,8,0,0,5937,6084,6193,6353,16445,18767,North Dakota,North Dakota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Remote,Baccalaureate Colleges--Diverse Fields,1065,587,478,1036,29,587,449,2,0,7,5,0,79,2,1,3,0,57,2,0,7,5,0,79,2,1,3,0,56,3,0,0,0,0,97,0,0,0,0,79,0,0,0,0,0,0,0,0,21,31,36,95,87,34,34,9,36,77,74,73,14,0,0
Minot State University,959,543,397,10,85,428,500,438,543,0,0,19,24,3533,2273,1260,3254,2151,1103,397,349,48,279,122,157,1,57,73,5637,5763,5920,6086,16196,16196,North Dakota,North Dakota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Master's Colleges and Universities (medium programs),3533,2273,1260,3254,279,2151,1103,2,1,4,4,0,68,3,6,11,2,62,2,1,4,4,0,69,3,6,10,2,61,1,2,5,2,0,58,2,3,28,2,68,286,72,74,19,36,9,1,0,14,32,37,91,85,22,22,6,36,72,44,43,4,5036,0
University of North Dakota,5404,3983,2360,7,94,470,590,500,610,450,550,21,26,15143,11160,3983,11724,9385,2339,1908,1888,20,3419,1775,1644,0,74,59,6934,7092,7254,7508,21162,31448,North Dakota,North Dakota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Small,Research Universities (high research activity),15143,11160,3983,11724,3419,9385,2339,2,1,2,3,0,79,2,4,7,1,47,2,1,2,3,0,81,3,3,6,2,43,3,1,2,3,0,74,2,5,10,1,60,680,36,1202,63,24,1,2,0,24,47,53,88,65,22,21,15,23,48,63,61,18,1000,0
North Dakota State University-Main Campus,5812,4888,2553,4,98,490,625,490,650,450,580,21,26,14629,11798,2831,11948,10707,1241,2553,2524,29,2681,1091,1590,0,84,52,6731,7270,7353,7660,19460,30042,North Dakota,North Dakota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (very high research activity),14629,11798,2831,11948,2681,10707,1241,1,1,2,1,0,81,2,4,8,1,46,1,1,3,1,0,87,2,2,4,1,44,1,2,2,1,0,54,1,15,24,2,52,924,36,1605,63,24,1,0,0,26,46,53,88,58,21,21,15,25,35,64,62,21,28,0
Valley City State University,345,286,186,6,89,420,460,440,510,380,440,18,23,1366,761,605,1211,759,452,186,159,27,155,2,153,0,83,65,6076,6197,6334,6516,16986,25066,North Dakota,North Dakota,Plains IA KS MN MO NE ND SD,"Public, 4-year or above",Four or more years,Public,No,No,Town: Remote,Baccalaureate Colleges--Diverse Fields,1366,761,605,1211,155,759,452,1,1,3,4,0,84,2,1,4,1,57,1,1,3,4,0,83,2,1,4,1,56,0,2,1,1,0,92,3,1,1,2,68,124,67,53,29,8,4,0,0,23,39,46,99,98,37,37,25,35,94,74,74,7,4742,0
University of Akron Main Campus,10575,10204,3812,13,90,450,590,470,610,0,0,18,25,23471,17921,5550,19016,15451,3565,3802,3589,213,4455,2470,1985,641,96,37,9247,9545,9863,10054,23956,32320,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Midsize,Research Universities (high research activity),24932,18340,6592,20477,4455,15870,4607,0,2,13,2,0,72,3,3,5,2,49,0,2,14,2,0,74,3,3,2,2,48,0,2,7,2,0,66,1,3,19,2,56,3588,94,175,5,38,1,1,0,16,34,40,90,77,47,47,11,36,43,68,68,6,8639,0
Ashland University,2931,2180,623,11,94,430,550,440,550,440,530,20,25,5979,3444,2535,3198,2389,809,623,621,2,2781,1055,1726,4,74,29,27412,28582,28858,29836,42833,42833,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Doctoral/Research Universities,5979,3444,2535,3198,2781,2389,809,0,1,13,2,0,79,1,1,4,1,57,1,0,13,2,0,79,1,0,3,1,51,0,1,13,2,0,78,1,1,4,1,62,564,91,47,8,12,2,0,0,42,54,56,97,97,37,37,4,23,97,75,75,19,0,9394
Baldwin Wallace University,4220,2699,762,34,78,470,610,480,590,0,0,21,27,4053,3363,690,3425,3003,422,762,762,0,628,360,268,0,64,28,25260,26396,27060,27840,39230,39230,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),4053,3363,690,3425,628,3003,422,0,1,8,4,0,80,3,1,1,1,56,0,1,9,5,0,80,4,1,1,1,55,0,2,6,3,0,83,1,4,2,2,59,583,76,174,23,8,1,0,0,55,69,71,100,100,41,41,18,28,100,97,97,19,0,33733
Bluffton University,1784,947,250,12,94,430,560,440,580,0,0,19,25,1146,920,226,1053,838,215,250,250,0,93,82,11,0,53,26,24930,26154,27426,28504,41864,41864,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,1146,920,226,1053,93,838,215,0,1,6,3,0,85,1,3,1,1,50,0,1,6,3,0,85,1,3,1,1,50,1,3,0,1,1,87,0,5,1,4,57,0,0,0,0,0,0,0,0,52,58,60,100,100,41,41,28,27,100,97,97,11,0,20012
Bowling Green State University-Main Campus,15689,11370,3348,15,92,440,560,440,570,450,580,19,24,16958,14764,2194,14477,13387,1090,3348,3330,18,2481,1377,1104,0,72,29,9704,10164,10514,10726,23506,30814,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Town: Fringe,Research Universities (high research activity),16958,14764,2194,14477,2481,13387,1090,0,1,9,4,0,76,2,3,4,1,57,0,1,10,4,0,78,2,3,2,1,56,0,2,4,2,0,68,1,6,16,2,61,2850,85,463,14,35,1,0,0,31,51,54,96,87,36,36,6,23,77,75,74,8,9758,0
Capital University,3640,2768,691,20,93,470,600,490,610,440,580,21,27,3628,2980,648,2788,2481,307,691,691,0,840,499,341,0,76,25,29310,30450,31364,31990,44350,44350,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),3628,2980,648,2788,840,2481,307,0,2,9,3,0,79,3,3,1,2,56,0,1,9,3,0,80,4,2,1,1,58,1,3,9,3,0,77,1,4,1,3,51,615,89,66,10,10,1,0,0,52,57,58,100,100,36,36,31,24,100,84,84,11,0,17716
Case Western Reserve University,18418,7713,1252,65,60,600,720,670,760,620,710,29,33,10325,9270,1055,4661,4528,133,1252,1252,0,5664,4742,922,0,42,16,37648,39120,40490,41800,57798,57798,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Research Universities (very high research activity),10325,9270,1055,4661,5664,4528,133,0,14,5,4,0,49,2,9,17,14,49,0,18,5,5,0,53,4,6,9,18,45,0,10,6,2,0,45,1,11,24,11,53,362,29,746,60,144,12,0,0,65,78,80,88,86,20,20,20,9,85,47,46,7,0,186652
Cedarville University,3267,2418,781,51,76,540,640,540,640,520,630,24,29,3463,3164,299,3241,3044,197,781,779,2,222,120,102,0,74,32,23500,24400,25496,26420,35020,35020,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,3462,3163,299,3238,224,3044,194,0,2,2,2,0,86,2,5,1,2,54,0,2,1,2,0,87,2,3,1,2,53,0,2,5,0,0,68,0,22,2,2,66,300,38,464,59,17,2,0,0,61,72,73,97,95,21,20,4,9,95,54,53,10,0,6903
Central State University,7142,2377,420,13,57,370,470,360,450,0,0,15,19,2068,1840,228,2036,1840,196,417,411,6,32,0,32,0,33,18,5480,5672,5870,6058,17804,25256,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,Yes,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,2068,1840,228,2036,32,1840,196,0,0,95,1,0,2,1,1,0,0,53,0,0,95,1,0,2,1,1,0,0,53,0,0,94,3,0,3,0,0,0,0,56,197,47,219,53,1,0,0,0,10,20,25,91,87,81,81,55,8,52,84,83,1,1196,0
University of Cincinnati-Main Campus,16002,11721,4486,89,29,490,620,510,640,490,600,22,28,34379,25873,8506,23706,20332,3374,4486,4431,55,10673,5541,5132,90,73,38,10065,10419,10784,10784,27434,42466,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),34379,25873,8506,23706,10673,20332,3374,0,3,7,3,0,72,2,5,8,3,53,0,3,8,3,0,76,2,4,4,3,50,0,4,7,3,0,61,1,6,18,4,60,3751,84,568,13,167,4,0,0,25,58,63,83,58,23,23,7,14,53,56,56,5,34212,0
Ohio Christian University,1455,1413,719,14,89,400,490,360,490,380,470,17,23,3711,1859,1852,3528,1748,1780,719,362,357,183,111,72,168,97,51,15750,16750,17350,17720,33418,33418,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,3711,1859,1852,3528,183,1748,1780,0,1,28,2,0,54,2,12,0,1,60,0,1,28,2,0,54,2,13,0,1,61,1,0,37,3,0,52,2,5,1,0,51,0,0,0,0,0,0,0,0,16,31,33,61,60,48,48,35,21,49,56,56,2,0,1149
Cleveland State University,6768,4255,1727,22,88,450,570,460,580,0,0,19,25,17741,10862,6879,12376,9027,3349,1774,1729,45,5365,1835,3530,0,63,41,8516,9002,9314,9499,25317,28496,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (high research activity),17497,10825,6672,12133,5364,8998,3135,0,3,18,4,0,62,2,3,8,3,55,0,3,19,5,0,62,3,3,5,3,54,0,3,14,3,0,60,1,4,15,3,58,0,0,0,0,0,0,0,0,8,23,32,92,80,53,53,10,40,45,70,69,5,507,0
University of Dayton,15719,8327,1761,35,81,490,600,530,630,500,590,24,29,10834,9388,1446,7974,7453,521,1761,1761,0,2860,1935,925,0,53,21,29930,31640,33400,35800,49540,49540,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Midsize,Research Universities (high research activity),10835,9390,1445,7975,2860,7455,520,0,1,4,2,0,76,1,3,13,1,49,0,1,3,3,0,81,1,2,9,1,48,0,1,6,1,0,61,0,4,26,1,51,819,46,781,44,169,10,0,0,60,76,77,98,97,13,12,11,6,97,85,84,10,0,41246
Defiance College,1704,1220,241,18,90,380,530,410,550,0,0,18,23,989,766,223,892,732,160,241,240,1,97,34,63,5,72,20,24330,25890,27360,28690,41700,41700,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Diverse Fields,989,766,223,892,97,732,160,2,1,11,5,0,77,0,3,1,1,48,2,1,11,6,0,76,0,2,1,1,48,1,1,7,1,1,84,0,4,1,2,51,0,0,0,0,0,0,0,0,38,45,46,100,100,50,49,28,24,97,84,83,18,0,13467
Denison University,4770,2193,582,22,38,590,660,600,670,0,0,27,31,2274,2253,21,2274,2253,21,582,582,0,0,0,0,0,46,27,38220,40210,42280,43910,56520,56520,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Small,Baccalaureate Colleges--Arts & Sciences,2274,2253,21,2274,0,2253,21,0,3,6,9,0,69,4,2,7,3,58,0,3,6,9,0,69,4,2,7,3,58,0,0,0,0,0,0,0,0,0,0,0,139,24,396,68,47,8,0,0,78,81,81,100,99,19,19,17,6,99,61,60,10,0,305000
The University of Findlay,2260,1544,581,23,94,480,570,480,580,470,560,21,26,4877,3081,1796,3872,2533,1339,581,581,0,1005,548,457,39,68,38,26798,28104,28914,29798,41306,41306,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (larger programs),4880,3041,1839,3872,1008,2490,1382,0,1,3,2,0,82,1,3,7,1,62,0,1,3,2,0,83,2,4,5,1,62,0,1,4,2,0,76,1,3,13,2,60,424,73,156,27,0,0,1,0,44,54,56,100,100,29,28,28,18,100,80,79,21,0,7346
Heidelberg University,0,0,0,0,0,0,0,0,0,0,0,0,0,1403,1087,316,1097,1048,49,352,352,0,306,39,267,0,0,0,22780,23670,24580,26180,38154,38154,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (smaller programs),1241,1094,147,1107,134,1055,52,0,2,7,2,0,74,3,11,0,2,52,1,1,7,2,0,75,3,11,0,1,50,0,6,4,2,0,69,1,16,1,6,71,300,85,50,14,0,0,1,0,35,48,51,100,100,48,47,47,30,99,85,85,17,0,27948
Hiram College,2542,1458,290,22,86,430,600,450,580,430,560,19,25,1311,1126,185,1283,1117,166,290,287,3,28,9,19,0,57,20,27135,28950,30190,30290,43145,43145,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,1311,1117,194,1283,28,1117,166,0,1,13,4,0,71,2,4,4,2,55,0,1,13,4,0,71,2,4,4,2,55,0,0,4,4,0,89,4,0,0,0,68,0,0,0,0,0,0,0,0,57,65,65,100,100,45,45,44,36,99,80,80,10,0,49493
John Carroll University,3721,3101,793,48,79,490,590,500,600,480,600,22,27,3723,3225,498,3052,2962,90,793,792,1,671,263,408,0,83,26,30250,31710,33180,34480,48310,48310,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (larger programs),3711,3213,498,3040,671,2950,90,0,2,6,3,0,82,2,4,1,2,52,0,2,5,4,0,83,2,4,1,2,48,0,2,11,2,0,76,2,4,3,2,70,533,67,255,32,5,1,0,0,65,74,75,100,100,26,26,9,19,100,67,67,7,0,51044
Kent State University at Salem,0,0,0,0,0,0,0,0,0,0,0,0,0,1846,703,1143,1844,703,1141,205,174,31,2,0,2,111,0,0,5110,5288,5472,5554,0,0,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Baccalaureate/Associate's Colleges,1846,703,1143,1844,2,703,1141,1,1,3,2,0,90,1,3,0,1,71,1,1,3,2,0,90,1,3,0,1,71,0,50,0,0,0,50,0,0,0,50,50,204,100,1,0,0,0,0,0,11,27,32,88,67,61,61,3,0,7,70,69,1,0,0
Kent State University at Kent,15970,13259,4111,26,83,470,570,470,570,450,560,20,25,28575,21347,7228,22968,18533,4435,4352,4295,57,5607,2814,2793,0,83,31,9030,9346,9672,9816,24926,32886,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Large,Research Universities (high research activity),28998,21737,7261,22968,6030,18533,4435,0,1,8,3,0,74,2,4,8,1,60,0,1,8,3,0,75,3,3,7,1,59,0,2,5,2,0,69,1,7,14,2,64,3555,82,652,15,136,3,7,0,28,46,52,91,81,37,36,9,26,71,71,70,8,3768,0
Kenyon College,4054,1556,483,65,45,630,720,600,690,630,730,28,32,1699,1693,6,1699,1693,6,482,482,0,0,0,0,0,38,31,40900,42630,44420,45640,60070,60070,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Baccalaureate Colleges--Arts & Sciences,1705,1695,10,1705,0,1695,10,1,6,3,5,0,76,2,3,5,6,54,1,6,3,5,0,76,2,3,5,6,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,89,89,64,59,10,10,0,2,59,34,28,13,0,106676
Lake Erie College,1158,644,205,33,80,430,520,440,540,405,515,19,23,1077,870,207,913,848,65,205,205,0,164,22,142,0,56,32,25674,26550,27368,27368,40364,40364,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (smaller programs),1086,875,211,922,164,852,70,0,1,10,2,0,80,2,2,4,1,48,0,0,10,2,0,79,2,2,4,0,49,0,2,7,1,0,85,1,2,2,2,43,138,67,61,30,6,3,1,0,28,43,45,100,100,41,41,8,24,100,78,78,10,0,27395
Lourdes University,1307,906,227,0,0,0,0,0,0,0,0,0,0,1840,1239,601,1460,925,535,225,215,10,380,314,66,20,69,25,12696,13176,16950,17655,31157,31157,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (smaller programs),2187,1452,735,1806,381,1137,669,0,1,16,6,0,71,2,3,0,1,72,0,1,16,6,0,70,3,3,0,1,70,0,1,14,4,0,76,0,4,1,1,82,0,0,0,0,0,0,0,0,7,24,32,98,94,60,60,26,43,85,96,96,6,0,5695
Malone University,1333,957,316,21,92,460,558,463,578,0,0,19,26,2096,1524,572,1656,1452,204,316,314,2,440,72,368,0,72,33,22444,23420,24536,25678,37934,37934,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Small,Master's Colleges and Universities (medium programs),2074,1525,549,1656,418,1453,203,0,1,7,3,0,85,2,1,1,1,60,0,1,7,3,0,84,2,1,2,1,57,1,0,7,3,0,88,1,0,0,0,68,258,82,56,18,2,1,0,0,46,58,59,100,100,45,44,29,22,100,81,80,14,0,7391
Marietta College,4168,2662,385,34,78,0,0,500,630,440,660,21,27,1539,1429,110,1413,1352,61,385,385,0,126,77,49,1,64,14,28340,29690,30950,31940,44362,44362,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,1542,1429,113,1416,126,1352,64,0,1,5,3,0,72,2,6,11,1,45,0,1,6,3,0,70,2,6,12,1,42,0,1,2,1,0,90,0,6,0,1,81,210,55,149,39,26,7,0,0,44,52,55,99,97,37,37,10,25,97,89,89,15,0,40982
Miami University-Oxford,22520,15034,3644,32,85,540,650,580,680,0,0,25,30,17901,16038,1863,15462,15001,461,3644,3637,7,2439,1037,1402,193,67,24,12786,13153,13594,13800,29701,45491,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Town: Fringe,Research Universities (high research activity),17901,16038,1863,15462,2439,15001,461,0,2,4,3,0,80,3,1,7,2,54,0,2,4,3,0,81,3,1,7,2,52,0,2,4,3,0,75,2,5,10,2,68,2219,61,1264,35,158,4,3,0,68,79,81,77,72,15,13,7,7,71,44,43,6,32353,0
University of Mount Union,2660,1894,552,23,90,440,540,540,580,0,0,20,25,2187,2118,69,2096,2056,40,552,552,0,91,62,29,0,71,29,24800,25700,26650,27380,38895,38895,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,2187,2118,69,2096,91,2056,40,0,1,6,2,0,81,4,4,3,1,51,0,0,6,2,0,81,4,3,3,0,50,0,2,0,0,0,81,2,13,1,2,71,0,0,0,0,0,0,0,0,53,62,63,95,79,34,34,1,23,79,80,80,13,0,60126
Mount Vernon Nazarene University,1279,812,302,14,99,480,620,470,580,0,0,20,26,2229,1667,562,1829,1450,379,302,301,1,400,217,183,2,63,37,21330,22080,22890,23690,35020,35020,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (medium programs),2229,1667,562,1829,400,1450,379,0,0,5,2,0,83,2,6,0,1,65,0,0,5,2,0,83,2,7,0,1,64,1,1,8,3,0,83,2,3,1,1,65,0,0,0,0,0,0,0,0,49,59,60,100,97,37,37,25,25,97,81,81,11,0,7108
College of Mount St Joseph,1197,1048,324,29,88,400,520,380,550,0,0,19,24,2186,1431,755,1655,1222,433,324,312,12,531,209,322,5,88,31,23550,24400,25100,25800,35880,35880,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Master's Colleges and Universities (medium programs),2326,1432,894,1795,531,1223,572,0,0,9,2,0,77,2,9,0,0,66,0,0,9,2,0,76,2,10,0,0,63,0,0,8,2,0,82,2,6,0,0,74,266,82,57,18,0,0,1,0,39,57,57,100,100,36,34,3,22,100,86,86,12,0,15917
Muskingum University,2001,1520,405,13,88,400,520,420,540,380,500,18,24,2169,1501,668,1681,1438,243,406,403,3,488,63,425,0,76,27,20616,21610,22628,23662,35694,35694,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Distant,Master's Colleges and Universities (medium programs),2154,1501,653,1728,426,1438,290,0,0,5,1,0,73,2,14,4,0,59,0,0,6,2,0,79,3,6,5,0,55,0,0,1,0,0,50,0,47,0,0,77,351,87,34,8,17,4,2,0,29,45,48,100,100,53,52,19,40,99,92,92,37,0,31533
Notre Dame College,2468,2227,338,23,80,398,500,418,520,0,0,18,22,2076,1374,702,1794,1374,420,334,330,4,282,0,282,0,90,15,23630,24652,25514,26344,38502,38502,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Suburb: Large,Baccalaureate Colleges--Diverse Fields,2269,1405,864,1989,280,1405,584,0,1,21,1,0,66,1,5,3,2,58,0,1,21,2,0,67,1,4,2,2,55,0,1,23,0,0,61,1,9,4,1,78,0,0,0,0,0,0,0,0,18,36,39,100,99,49,48,3,35,99,83,83,6,0,4022
Oberlin College,7438,2262,781,71,42,650,740,620,715,645,730,28,32,2911,2871,40,2894,2854,40,780,780,0,17,17,0,0,30,35,41577,43210,44905,46870,62132,62132,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Arts & Sciences,2911,2872,39,2894,17,2855,39,0,4,5,7,0,69,5,1,7,4,54,0,4,5,7,0,70,5,1,7,4,55,0,6,0,12,0,59,0,0,24,6,41,0,0,0,0,0,0,0,0,76,88,89,88,83,10,10,9,1,83,38,36,3,0,261456
Ohio Dominican University,2652,1310,239,18,92,440,540,480,580,430,520,20,24,2573,1845,728,2005,1391,614,239,237,2,568,454,114,70,49,18,25280,26790,28104,28932,42087,42087,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,City: Large,Master's Colleges and Universities (larger programs),2573,1845,728,2005,568,1391,614,0,1,20,3,0,70,3,2,1,2,60,0,1,22,3,0,67,3,2,1,1,58,0,2,13,1,0,80,1,2,1,2,69,218,91,15,6,6,3,0,0,29,40,41,100,100,52,49,19,41,100,81,81,9,0,11865
Ohio Northern University,3325,2256,613,95,22,490,620,530,650,500,620,23,29,3619,3098,521,2702,2194,508,613,613,0,917,904,13,0,68,27,33099,34380,35678,36720,50960,50960,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Private not-for-profit, 4-year or above",Four or more years,Private not-for-profit,No,No,Town: Fringe,Baccalaureate Colleges--Diverse Fields,3619,3098,521,2702,917,2194,508,0,2,3,1,0,84,3,1,6,2,51,0,1,3,2,0,83,3,1,7,1,48,0,3,3,1,0,88,2,1,3,3,58,0,0,0,0,0,0,0,0,53,66,69,99,97,29,29,11,17,97,93,93,15,0,44521
Ohio State University-Lima Campus,0,0,0,0,0,0,0,0,0,0,0,0,0,1077,880,197,1059,872,187,392,379,13,18,8,10,65,0,0,6102,6327,7140,7140,0,0,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Baccalaureate Colleges--Diverse Fields,1077,880,197,1059,18,872,187,0,1,4,2,0,87,2,2,0,1,55,0,1,4,2,0,87,2,2,0,1,55,0,0,0,0,0,89,0,11,0,0,83,392,99,2,1,0,0,0,0,20,32,37,94,85,48,48,15,0,65,66,66,3,4775,0
Ohio State University-Mansfield Campus,0,0,0,0,0,0,0,0,0,0,0,0,0,1204,985,219,1155,967,188,496,483,13,49,18,31,87,0,0,6102,6327,7140,7140,22036,37756,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Rural: Fringe,Baccalaureate/Associate's Colleges,1204,985,219,1155,49,967,188,0,1,7,2,0,85,2,2,0,1,57,0,1,7,2,0,85,2,2,0,1,55,0,0,0,0,0,94,0,6,0,0,96,503,100,0,0,0,0,0,0,20,39,42,87,66,42,42,19,1,36,68,67,4,1846,0
Ohio State University-Marion Campus,0,0,0,0,0,0,0,0,0,0,0,0,0,1259,973,286,1230,955,275,440,400,40,29,18,11,69,0,0,6102,6327,7140,7140,0,0,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Town: Distant,Baccalaureate/Associate's Colleges,1259,973,286,1230,29,955,275,0,5,6,2,0,82,2,3,0,5,55,0,5,6,3,0,82,2,3,0,5,54,0,3,0,0,0,93,0,3,0,3,86,444,99,3,1,0,0,0,0,21,40,45,92,85,39,39,16,1,73,53,53,1,4479,0
Ohio State University-Newark Campus,0,0,0,0,0,0,0,0,0,0,0,0,0,2315,1893,422,2263,1883,380,1072,1040,32,52,10,42,100,0,0,6102,6327,7140,7140,22036,37756,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,Suburb: Small,Baccalaureate/Associate's Colleges,2315,1893,422,2263,52,1883,380,0,3,13,3,0,74,4,3,0,3,53,0,3,13,3,0,74,4,3,0,3,52,0,0,2,4,0,94,0,0,0,0,92,1089,100,3,0,0,0,0,0,19,39,43,100,100,43,43,21,0,100,65,65,2,1621,0
Ohio State University-Main Campus,31359,17413,7130,39,83,540,660,610,720,550,660,27,31,57466,50012,7454,44201,40020,4181,7083,7074,9,13265,9992,3273,0,56,41,9420,9735,10037,10037,25479,41199,Ohio,Ohio,Great Lakes IL IN MI OH WI,"Public, 4-year or above",Four or more years,Public,No,No,City: Large,Research Universities (very high research activity),57466,50012,7454,44201,13265,40020,4181,0,6,6,3,0,69,2,3,11,6,49,0,6,6,3,0,72,3,3,8,6,47,0,6,4,3,0,61,1,4,20,6,54,5073,71,1543,22,0,0,514,7,59,81,83,83,72,19,19,6,13,72,46,45,6,52745,0