-
Notifications
You must be signed in to change notification settings - Fork 0
/
101912.html
2094 lines (2045 loc) · 78.8 KB
/
101912.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="pandoc" />
<title>Oakwood University</title>
<script src="institution_files/header-attrs-2.23/header-attrs.js"></script>
<script src="institution_files/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="institution_files/bootstrap-3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<script src="institution_files/bootstrap-3.3.7/js/bootstrap.min.js"></script>
<script src="institution_files/navigation-1.1/tabsets.js"></script>
<link href="institution_files/readthedown-0.1/readthedown.css" rel="stylesheet" />
<link href="institution_files/readthedown-0.1/readthedown_fonts_embed.css" rel="stylesheet" />
<script src="institution_files/readthedown-0.1/readthedown.js"></script>
<script src="institution_files/htmlwidgets-1.6.2/htmlwidgets.js"></script>
<link href="institution_files/datatables-css-0.0.0/datatables-crosstalk.css" rel="stylesheet" />
<script src="institution_files/datatables-binding-0.28/datatables.js"></script>
<link href="institution_files/dt-core-1.13.4/css/jquery.dataTables.min.css" rel="stylesheet" />
<link href="institution_files/dt-core-1.13.4/css/jquery.dataTables.extra.css" rel="stylesheet" />
<script src="institution_files/dt-core-1.13.4/js/jquery.dataTables.min.js"></script>
<link href="institution_files/crosstalk-1.2.0.9000/css/crosstalk.min.css" rel="stylesheet" />
<script src="institution_files/crosstalk-1.2.0.9000/js/crosstalk.min.js"></script>
<link href="institution_files/leaflet-1.3.1/leaflet.css" rel="stylesheet" />
<script src="institution_files/leaflet-1.3.1/leaflet.js"></script>
<link href="institution_files/leafletfix-1.0.0/leafletfix.css" rel="stylesheet" />
<script src="institution_files/proj4-2.6.2/proj4.min.js"></script>
<script src="institution_files/Proj4Leaflet-1.0.1/proj4leaflet.js"></script>
<link href="institution_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css" rel="stylesheet" />
<script src="institution_files/leaflet-binding-2.1.2/leaflet.js"></script>
<script src="institution_files/kePrint-0.0.1/kePrint.js"></script>
<link href="institution_files/lightable-0.0.1/lightable.css" rel="stylesheet" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Q67PXWY3L5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Q67PXWY3L5');
</script>
<!-- tabsets -->
<script>
$(document).ready(function () {
window.buildTabsets("toc");
});
$(document).ready(function () {
$('.tabset-dropdown > .nav-tabs > li').click(function () {
$(this).parent().toggleClass('nav-tabs-open')
});
});
</script>
<!-- code folding -->
<!-- code download -->
<!-- tabsets dropdown -->
<style type="text/css">
.tabset-dropdown > .nav-tabs {
display: inline-table;
max-height: 500px;
min-height: 44px;
overflow-y: auto;
background: white;
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
content: "";
border: none;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs > li.active {
display: block;
}
.tabset-dropdown > .nav-tabs > li.active a {
padding: 0 15px !important;
}
.tabset-dropdown > .nav-tabs > li > a,
.tabset-dropdown > .nav-tabs > li > a:focus,
.tabset-dropdown > .nav-tabs > li > a:hover {
border: none;
display: inline-block;
border-radius: 4px;
background-color: transparent;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
display: block;
float: none;
}
.tabset-dropdown > .nav-tabs > li {
display: none;
margin-left: 0 !important;
}
</style>
</head>
<body class="preload">
<!-- readthedown start -->
<div id="content" data-toggle="wy-nav-shift">
<nav id="nav-top" role="navigation" aria-label="top navigation">
<a role="button" href="#" data-toggle="wy-nav-top"><span class="glyphicon glyphicon-menu-hamburger"></span></a>
</nav>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-bs-toggle="collapse" data-target="#navbar" data-bs-target="#navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">College Tables</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="fields_overview.html">Fields</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
<h1 class="title">Oakwood University</h1>
<!-- readthedown authors -->
<div id="sidebar">
<h2><a href="#content">Oakwood University</a></h2>
<div id="toc">
<ul>
<li><a href="#notes" id="toc-notes">Notes</a></li>
<li><a href="#overview-of-institution"
id="toc-overview-of-institution">Overview of institution</a></li>
<li><a href="#overview-of-location"
id="toc-overview-of-location">Overview of location</a></li>
<li><a href="#similar-institutions"
id="toc-similar-institutions">Similar institutions</a></li>
<li><a href="#map" id="toc-map">Map</a></li>
<li><a href="#enrollment" id="toc-enrollment">Enrollment</a></li>
<li><a href="#student-financing"
id="toc-student-financing">Student financing</a></li>
<li><a href="#teaching" id="toc-teaching">Teaching</a></li>
<li><a href="#student-details" id="toc-student-details">Student
details</a></li>
<li><a href="#institution-finances"
id="toc-institution-finances">Institution finances</a></li>
<li><a href="#graduation-rates"
id="toc-graduation-rates">Graduation rates</a></li>
<li><a href="#freshmen-demographics"
id="toc-freshmen-demographics">Freshmen demographics</a></li>
<li><a href="#freshmen-geography"
id="toc-freshmen-geography">Freshmen geography</a></li>
<li><a href="#tenure-track-faculty"
id="toc-tenure-track-faculty">Tenure track faculty</a></li>
<li><a href="#non-tenure-track-faculty"
id="toc-non-tenure-track-faculty">Non-tenure track
faculty</a></li>
<li><a href="#library-facilities"
id="toc-library-facilities">Library facilities</a></li>
<li><a href="#sat-scores" id="toc-sat-scores">SAT scores</a></li>
<li><a href="#act-scores" id="toc-act-scores">ACT scores</a></li>
<li><a href="#degrees-by-major" id="toc-degrees-by-major">Degrees
by major</a>
<ul>
<li><a href="#bachelors" id="toc-bachelors">Bachelors</a></li>
<li><a href="#masters" id="toc-masters">Masters</a></li>
<li><a href="#doctorate" id="toc-doctorate">Doctorate</a></li>
<li><a href="#certificate"
id="toc-certificate">Certificate</a></li>
<li><a href="#associates" id="toc-associates">Associates</a></li>
</ul></li>
<li><a href="#demographic-cliff"
id="toc-demographic-cliff">Demographic cliff</a></li>
<li><a href="#life-expectancy" id="toc-life-expectancy">Life
expectancy</a></li>
</ul>
</div>
<div id="postamble" data-toggle="wy-nav-shift" class="status">
</div>
</div>
<!-- Don't indent these lines or it will mess pre blocks indentation -->
<div id="main">
<style type="text/css">
img {
max-width: 100%;
}
</style>
<p><a href='https://www2.oakwood.edu/'>Oakwood University</a> is located
in Huntsville, Alabama. It is a private not-for-profit, 4-year or above
institution.</p>
<p><em>From <a
href="https://en.wikipedia.org/wiki/%20Oakwood%20University">Wikipedia</a></em>:
Oakwood University is a private, historically black Seventh-day
Adventist university in Huntsville, Alabama. It is the only HBCU owned
and operated by the Seventh-day Adventist Church. Oakwood University is
accredited by the Southern Association of Colleges and Schools (SACS)
and the Department of Education of the General Conference of Seventh-day
Adventists (through the Adventist Accrediting Association) to award
associate, baccalaureate, and master’s degrees. Oakwood University owns
and operates the Christian radio station WJOU 90.1 FM, formerly
WOCG.</p>
<div id="notes" class="section level1">
<h1>Notes</h1>
<p>These are items that bear looking into more closely.</p>
<ul>
<li><p>California considers the state this institution is in to have one
or more anti-LGBTQ+ laws. It prohibits California-sponsored travel to
this state as a safety measure. See more
<a href='https://oag.ca.gov/ab1887'>here</a>.</p></li>
<li><p>This institution’s full-time undergraduate enrollment has tended
to decrease over time.</p></li>
<li><p>From 2010 to 2021, full time undergraduate enrollment dropped
from 1751 to 1255, a decline of 28.3%</p></li>
</ul>
</div>
<div id="overview-of-institution" class="section level1">
<h1>Overview of institution</h1>
<ul>
<li><p><strong>Institution kind</strong>: Baccalaureate Colleges: Arts
& Sciences Focus</p></li>
<li><p><strong>Undergrad program</strong>: Balanced arts &
sciences/professions, some graduate coexistence</p></li>
<li><p><strong>Graduate program</strong>: Postbaccalaureate: Single
program-Other</p></li>
<li><p><strong>Enrollment profile</strong>: Very high undergraduate (see
more details below)</p></li>
<li><p><strong>Average net price for undergrads on financial
aid</strong>: $22,484 (1.6 times the equivalent cost of
Harvard).</p></li>
<li><p><strong>Average net price for families with $30K-48K
income</strong>: $29,978 (This is $28,582 more expensive than what
Harvard costs for equivalent students).</p></li>
<li><p><strong>Actual price for <em>your</em> family</strong>: Go
<a href='https://oakwood.studentaidcalculator.com/'>here</a> to see what
your family may be asked to pay. It can be MUCH lower than the average
price but also higher for some.</p></li>
<li><p><strong>Size and setting</strong>: Four-year, small, highly
residential</p></li>
<li><p><strong>In state percentage</strong>: 11.3% of first year
students come from Alabama</p></li>
<li><p><strong>In US percentage</strong>: 93.6% of first year students
come from the US (note that 0.0% have no residence reported)</p></li>
<li><p>This is a <strong>Historically Black College or University
(HBCU)</strong></p></li>
<li><p><strong>Graduation rate (within 6 years) for students seeking a
Bachelors</strong>: 49.6% (this is what is usually reported as
“graduation rate”)</p></li>
<li><p><strong>Graduation rate (within 4 years) for students seeking a
Bachelors</strong>: 26.6%</p></li>
<li><p><strong>Percent of students seeking a Bachelors who transfer out
of this institution</strong>: 2.2%</p></li>
<li><p><strong>Student to tenure-stream faculty ratio</strong>: 21.8
(undergrads to tenure-stream faculty) [<a href="tenure.html">Tenure
explained</a>]</p></li>
<li><p><strong>Student to faculty ratio</strong>: 11.8 (undergrads to
all faculty)</p></li>
<li><p><strong>Degrees offered</strong>: Associate’s degree, Bachelor’s
degree, Postbaccalaureate certificate, Master’s degree</p></li>
<li><p><strong>Schedule</strong>: Semester</p></li>
<li><p><strong>Institution provides on campus housing</strong>:
Yes</p></li>
<li><p><strong>Dorm capacity</strong>: There are enough dorm beds for
1110 students</p></li>
<li><p><strong>Freshmen required to live on campus</strong>: No</p></li>
<li><p><strong>Meal plan</strong>: Yes, number of meals in the maximum
meal plan offered</p></li>
<li><p><strong>Covid vaccination requirement for students</strong>: This
institution was never reported as requiring covid vaccination for
students (based on info from <a
href="https://www.chronicle.com/blogs/live-coronavirus-updates/heres-a-list-of-colleges-that-will-require-students-to-be-vaccinated-against-covid-19">here</a>)</p></li>
<li><p><strong>Covid vaccination requirement for faculty/staff</strong>:
This institution was never reported as requiring covid vaccination for
faculty and/or staff (based on info from <a
href="https://www.chronicle.com/blogs/live-coronavirus-updates/heres-a-list-of-colleges-that-will-require-students-to-be-vaccinated-against-covid-19">here</a>)</p></li>
<li><p><strong>Advanced placement (AP) credits used</strong>:
Yes</p></li>
<li><p><strong>Disabilities</strong>: 8 percent of undergrads are
registered as having disabilities.</p></li>
</ul>
</div>
<div id="overview-of-location" class="section level1">
<h1>Overview of location</h1>
<ul>
<li><strong>Abortion in this state</strong>: Most restrictive (based on
<a href="https://states.guttmacher.org/policies/"
class="uri">https://states.guttmacher.org/policies/</a> as of May 10,
2023)</li>
<li><strong>Gun law stringency</strong>: F (higher grade = <a
href="https://worldpopulationreview.com/state-rankings/strictest-gun-laws-by-state">more
stringent</a>)</li>
<li><strong>State rep support for contraception</strong>: 14.3% of US
reps from this state <a
href="https://www.congress.gov/bill/117th-congress/house-bill/8373">voted
in favor</a> of legal protections for contraception.</li>
<li><strong>State rep support for recognizing same-sex and interracial
marriage</strong>: 14.3% of US reps from this state <a
href="https://www.congress.gov/bill/117th-congress/house-bill/8404">voted
in favor</a> of requiring states to recognize same-sex and interracial
marriages performed in other states</li>
<li><strong>Anti-trans legislative risk</strong>: Worst (based on <a
href="https://www.erininthemorning.com/p/june-anti-trans-legislative-risk">Erin
Reed’s work</a>, as of June 25, 2023)</li>
<li><strong>Ecological region</strong>: Central U.S. hardwood
forests</li>
<li><strong>Biome</strong>: Temperate Broadleaf & Mixed Forests</li>
<li><strong>Distance to mountains</strong>: 56.2 miles to Appalachian
Mountains</li>
<li><strong>Climate</strong>: See overview at <a
href="https:/weatherspark.com/y/14628/Average-Weather-in-Huntsville-Alabama-United-States-Year-Round#Figures-Summary">WeatherSpark</a></li>
</ul>
</div>
<div id="similar-institutions" class="section level1">
<h1>Similar institutions</h1>
<p>This is using information about school size, acceptance rate, yield
rate, graduation rate, cost, athletic conference, and similar metrics,
but it can miss important axes of similarity (for example, culinary
versus hair styling schools).</p>
<div class="datatables html-widget html-fill-item-overflow-hidden html-fill-item" id="htmlwidget-de90df859ad34d1e3c0e" style="width:100%;height:auto;"></div>
<script type="application/json" data-for="htmlwidget-de90df859ad34d1e3c0e">{"x":{"filter":"none","vertical":false,"data":[["<a href=\"101912.html\">Oakwood University</a>","<a href=\"245652.html\">St. John's College</a>","<a href=\"177746.html\">Kansas City Art Institute</a>","<a href=\"163976.html\">St. John's College</a>","<a href=\"133492.html\">Eckerd College</a>","<a href=\"102632.html\">University of Alaska Southeast</a>","<a href=\"221661.html\">Southern Adventist University</a>","<a href=\"168740.html\">Andrews University</a>","<a href=\"164216.html\">Washington College</a>","<a href=\"192864.html\">Marymount Manhattan College</a>","<a href=\"200226.html\">Mayville State University</a>","<a href=\"486965.html\">Hussian College-Los Angeles</a>","<a href=\"214795.html\">Pennsylvania State University-Penn State Mont Alto</a>","<a href=\"443410.html\">DigiPen Institute of Technology</a>","<a href=\"384254.html\">Beacon College</a>","<a href=\"141185.html\">Toccoa Falls College</a>","<a href=\"451927.html\">Patrick Henry College</a>","<a href=\"150774.html\">Holy Cross College</a>","<a href=\"181738.html\">Union College</a>","<a href=\"176789.html\">Calvary University</a>","<a href=\"215266.html\">University of Pittsburgh-Bradford</a>","<a href=\"169442.html\">College for Creative Studies</a>","<a href=\"112570.html\">Columbia College Hollywood</a>","<a href=\"217749.html\">Bob Jones University</a>","<a href=\"153320.html\">Faith Baptist Bible College and Theological Seminary</a>","<a href=\"231165.html\">Vermont Technical College</a>","<a href=\"166674.html\">Massachusetts College of Art and Design</a>","<a href=\"110370.html\">California College of the Arts</a>","<a href=\"136774.html\">Ringling College of Art and Design</a>","<a href=\"237136.html\">Appalachian Bible College</a>","<a href=\"138558.html\">Abraham Baldwin Agricultural College</a>","<a href=\"143048.html\">School of the Art Institute of Chicago</a>","<a href=\"157748.html\">The Southern Baptist Theological Seminary</a>","<a href=\"214768.html\">Pennsylvania State University-Penn State Hazleton</a>","<a href=\"230940.html\">Marlboro College</a>","<a href=\"482936.html\">Florida Polytechnic University</a>","<a href=\"488350.html\">Yeshiva Gedolah Shaarei Shmuel</a>","<a href=\"164933.html\">The Boston Conservatory</a>","<a href=\"494685.html\">Urshan College</a>","<a href=\"214810.html\">Pennsylvania State University-Penn State Schuylkill</a>","<a href=\"214731.html\">Pennsylvania State University-Penn State Brandywine</a>","<a href=\"230047.html\">Brigham Young University-Hawaii</a>","<a href=\"174127.html\">Minneapolis College of Art and Design</a>","<a href=\"228468.html\">Southwestern Adventist University</a>","<a href=\"164748.html\">Berklee College of Music</a>","<a href=\"202073.html\">Cleveland Institute of Music</a>","<a href=\"188854.html\">American Musical and Dramatic Academy</a>","<a href=\"164614.html\">Boston Baptist College</a>","<a href=\"230816.html\">Bennington College</a>","<a href=\"142090.html\">Boise Bible College</a>","<a href=\"157030.html\">Kentucky Mountain Bible College</a>","<a href=\"220473.html\">Johnson University</a>","<a href=\"188340.html\">Vaughn College of Aeronautics and Technology</a>","<a href=\"160959.html\">College of the Atlantic</a>","<a href=\"460783.html\">Remington College-Heathrow Campus</a>","<a href=\"202903.html\">Gods Bible School and College</a>","<a href=\"176910.html\">Central Christian College of the Bible</a>","<a href=\"239309.html\">Milwaukee Institute of Art & Design</a>","<a href=\"179548.html\">Stephens College</a>","<a href=\"161509.html\">Maine College of Art & Design</a>","<a href=\"131876.html\">Trinity Washington University</a>","<a href=\"124292.html\">Thomas Aquinas College</a>","<a href=\"216311.html\">Talmudical Yeshiva of Philadelphia</a>","<a href=\"187912.html\">New Mexico Military Institute</a>","<a href=\"489937.html\">Carolina University</a>","<a href=\"439862.html\">Pacific Islands University</a>","<a href=\"233295.html\">Randolph-Macon College</a>","<a href=\"434414.html\">Michigan Jewish Institute</a>","<a href=\"146825.html\">MacMurray College</a>","<a href=\"169983.html\">Kettering University</a>","<a href=\"214625.html\">Pennsylvania State University-Penn State New Kensington</a>","<a href=\"440396.html\">New Saint Andrews College</a>","<a href=\"196103.html\">SUNY College of Environmental Science and Forestry</a>","<a href=\"214698.html\">Pennsylvania State University-Penn State Beaver</a>","<a href=\"147369.html\">Moody Bible Institute</a>","<a href=\"215637.html\">Walnut Hill College</a>","<a href=\"176035.html\">Mississippi University for Women</a>","<a href=\"133085.html\">Clearwater Christian College</a>","<a href=\"230852.html\">Champlain College</a>","<a href=\"491525.html\">Union Bible College</a>","<a href=\"141060.html\">Spelman College</a>","<a href=\"205124.html\">Rabbinical College Telshe</a>","<a href=\"445708.html\">Johnson & Wales University-Charlotte</a>","<a href=\"155496.html\">Manhattan Christian College</a>","<a href=\"207209.html\">Langston University</a>","<a href=\"487746.html\">Yeshiva Zichron Aryeh</a>","<a href=\"214759.html\">Pennsylvania State University-Penn State Fayette- Eberly</a>","<a href=\"183275.html\">Thomas More College of Liberal Arts</a>","<a href=\"214652.html\">Pennsylvania State University-Penn State Scranton</a>","<a href=\"119270.html\">Musicians Institute</a>","<a href=\"385619.html\">Everglades University</a>","<a href=\"193052.html\">Mesivta Torah Vodaath Rabbinical Seminary</a>","<a href=\"192271.html\">LIM College</a>","<a href=\"441900.html\">Nevada State College</a>","<a href=\"167057.html\">The New England Conservatory of Music</a>","<a href=\"441609.html\">Yeshiva Shaarei Torah of Rockland</a>","<a href=\"190503.html\">Culinary Institute of America</a>","<a href=\"217013.html\">Wilson College</a>","<a href=\"431983.html\">Yeshiva of the Telshe Alumni</a>","<a href=\"163532.html\">Ner Israel Rabbinical College</a>"],[72,63,60,53,70,56,74,82,70,77,61,33,76,46,57,62,82,86,98,59,73,54,50,86,56,56,79,78,69,46,75,81,80,86,83,55,50,46,72,74,87,88,66,58,55,33,22,64,67,79,48,81,74,61,66,65,21,68,64,72,97,83,73,41,46,74,84,66,62,86,80,86,65,64,98,79,99,62,62,82,51,84,82,48,null,50,80,90,82,79,60,72,84,79,43,56,98,93,38,82],[45,42,38,27,17,57,40,28,13,9,54,46,49,54,38,33,53,40,16,84,34,35,36,65,66,33,20,9,28,64,52,14,68,49,28,34,88,33,91,47,32,61,39,21,43,30,21,57,22,74,52,61,52,29,76,77,47,35,23,22,31,60,94,84,38,47,18,91,21,20,46,71,21,22,57,59,41,42,11,65,14,89,11,75,null,100,45,47,41,42,50,89,22,36,22,60,36,22,67,90],[50,72,62,75,68,34,57,73,75,59,31,49,53,57,72,53,71,68,61,44,39,62,53,67,60,41,74,65,80,71,42,65,40,50,46,56,53,59,31,47,47,71,66,45,69,71,68,80,68,54,58,63,45,67,34,60,52,53,53,44,41,86,47,null,50,50,72,20,47,70,47,64,76,46,53,67,45,50,68,50,76,62,54,37,29,60,43,90,41,68,58,33,58,29,83,100,89,53,67,35],[30,22,32,13,51,22,43,39,39,47,21,100,null,86,60,60,37,37,45,34,null,42,73,37,26,43,32,55,61,18,15,null,35,null,21,3,44,67,90,null,null,7,42,34,53,26,64,27,33,22,20,17,62,31,99,17,9,71,24,39,39,20,45,11,56,22,25,100,51,45,null,58,11,null,14,80,26,60,61,6,14,26,54,22,9,4,null,11,null,96,97,13,87,24,33,40,51,37,17,12],[22,9,16,8,14,9,null,7,12,18,19,null,26,null,null,34,null,33,11,null,35,null,null,null,null,11,16,18,null,null,22,17,9,21,6,null,null,null,null,29,29,null,null,14,null,null,null,null,null,null,null,null,53,null,null,null,null,null,20,null,25,null,null,7,null,null,16,null,23,19,31,null,13,30,null,null,19,null,null,null,16,9,null,null,33,null,34,null,30,null,null,25,null,31,null,null,null,17,null,24],[29978,14996,25646,19008,26620,4677,20683,17509,19748,32450,10206,33727,null,35868,37198,18641,null,16969,22238,6302,11804,32383,32692,11346,15153,18880,19485,24239,47026,16047,5862,41804,null,null,null,6138,null,null,5504,null,null,11566,23758,16879,51745,null,40524,21993,23093,12278,7622,15132,38624,14407,null,9143,11412,21589,22207,30172,13006,16870,7300,3677,12853,null,20027,null,null,30263,null,null,16041,null,19072,28614,12149,null,28413,null,43094,7907,24304,27935,11209,null,null,12883,null,37287,30744,3350,34175,14196,43965,null,23166,19301,null,5488],[1255,356,713,470,1981,477,2100,1198,1015,1533,619,231,591,1041,418,817,351,431,561,176,1092,1218,448,2285,269,757,1556,1178,1635,136,2407,2515,639,592,151,1292,99,559,374,490,1208,2728,667,610,5494,208,1656,32,699,74,53,570,1021,360,344,149,82,881,366,390,996,497,117,374,380,66,1459,836,570,1452,489,188,1278,548,1511,245,1627,395,2220,56,2363,51,1231,129,1708,28,570,89,896,475,2212,369,1128,2055,392,102,2724,586,88,261],[58,56,null,45,null,57,102,616,0,null,3,13,0,45,null,11,null,null,89,37,null,52,null,87,22,1,102,345,null,0,null,672,1596,null,null,59,null,229,null,null,0,null,38,5,639,135,10,null,113,null,null,124,1,1,null,0,23,null,147,67,118,null,null,null,39,0,null,null,null,110,0,27,192,null,203,null,175,3,35,null,null,20,5,null,70,null,0,null,null,11,349,161,133,32,351,null,110,18,null,171],["Alabama","New Mexico","Missouri","Maryland","Florida","Alaska","Tennessee","Michigan","Maryland","New York","North Dakota","California","Pennsylvania","Washington","Florida","Georgia","Virginia","Indiana","Nebraska","Missouri","Pennsylvania","Michigan","California","South Carolina","Iowa","Vermont","Massachusetts","California","Florida","West Virginia","Georgia","Illinois","Kentucky","Pennsylvania","Vermont","Florida","New Jersey","Massachusetts","Missouri","Pennsylvania","Pennsylvania","Hawaii","Minnesota","Texas","Massachusetts","Ohio","New York","Massachusetts","Vermont","Idaho","Kentucky","Tennessee","New York","Maine","Florida","Ohio","Missouri","Wisconsin","Missouri","Maine","District of Columbia","California","Pennsylvania","New Mexico","North Carolina","Guam","Virginia","Michigan","Illinois","Michigan","Pennsylvania","Idaho","New York","Pennsylvania","Illinois","Pennsylvania","Mississippi","Florida","Vermont","Indiana","Georgia","Ohio","North Carolina","Kansas","Oklahoma","New York","Pennsylvania","New Hampshire","Pennsylvania","California","Florida","New York","New York","Nevada","Massachusetts","New York","New York","Pennsylvania","New York","Maryland"],["Decreasing","Approximately stable","Approximately stable","Approximately stable","Approximately stable","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Approximately stable","Approximately stable","Decreasing","Increasing","Increasing","Approximately stable","Unknown or not applicable","Approximately stable","Approximately stable","Approximately stable","Decreasing","Increasing","Approximately stable","Decreasing","Approximately stable","Decreasing","Approximately stable","Approximately stable","Increasing","Approximately stable","Approximately stable","Approximately stable","Increasing","Decreasing","Decreasing","Approximately stable","Increasing","Approximately stable","Unknown or not applicable","Decreasing","Approximately stable","Approximately stable","Increasing","Approximately stable","Increasing","Decreasing","Approximately stable","Decreasing","Approximately stable","Decreasing","Decreasing","Approximately stable","Approximately stable","Approximately stable","Increasing","Decreasing","Decreasing","Increasing","Decreasing","Increasing","Approximately stable","Increasing","Approximately stable","Decreasing","Approximately stable","Approximately stable","Increasing","Approximately stable","Approximately stable","Approximately stable","Decreasing","Approximately stable","Approximately stable","Decreasing","Decreasing","Decreasing","Approximately stable","Approximately stable","Approximately stable","Approximately stable","Approximately stable","Approximately stable","Decreasing","Decreasing","Approximately stable","Approximately stable","Decreasing","Approximately stable","Approximately stable","Decreasing","Increasing","Increasing","Decreasing","Increasing","Approximately stable","Approximately stable","Approximately stable","Increasing","Approximately stable","Decreasing"]],"container":"<table class=\"display\">\n <thead>\n <tr>\n <th>Institution<\/th>\n <th>Admission percentage total<\/th>\n <th>Yield percentage total<\/th>\n <th>Grad rate in six years<\/th>\n <th>Percent of revenue from tuition and fees<\/th>\n <th>Student to tenure track faculty ratio<\/th>\n <th>Average net price for 30K to 48K family income<\/th>\n <th>Undergrad full time<\/th>\n <th>Grad full time<\/th>\n <th>State<\/th>\n <th>Full-time undergrad enrollment trend<\/th>\n <\/tr>\n <\/thead>\n<\/table>","options":{"columnDefs":[{"className":"dt-right","targets":[1,2,3,4,5,6,7,8]}],"order":[],"autoWidth":false,"orderClasses":false},"selection":{"mode":"multiple","selected":null,"target":"row","selectable":null}},"evals":[],"jsHooks":[]}</script>
</div>
<div id="map" class="section level1">
<h1>Map</h1>
<div class="leaflet html-widget html-fill-item-overflow-hidden html-fill-item" id="htmlwidget-42d700372fe14a12abed" style="width:768px;height:480px;"></div>
<script type="application/json" data-for="htmlwidget-42d700372fe14a12abed">{"x":{"options":{"crs":{"crsClass":"L.CRS.EPSG3857","code":null,"proj4def":null,"projectedBounds":null,"options":{}}},"calls":[{"method":"addTiles","args":["https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",null,null,{"minZoom":0,"maxZoom":18,"tileSize":256,"subdomains":"abc","errorTileUrl":"","tms":false,"noWrap":false,"zoomOffset":0,"zoomReverse":false,"opacity":1,"zIndex":1,"detectRetina":false,"attribution":"© <a href=\"https://openstreetmap.org\">OpenStreetMap<\/a> contributors, <a href=\"https://creativecommons.org/licenses/by-sa/2.0/\">CC-BY-SA<\/a>"}]},{"method":"addMarkers","args":[34.756344,-86.652705,null,null,null,{"interactive":true,"draggable":false,"keyboard":true,"title":"","alt":"","zIndexOffset":0,"opacity":1,"riseOnHover":false,"riseOffset":250},null,null,null,null,null,{"interactive":false,"permanent":false,"direction":"auto","opacity":1,"offset":[0,0],"textsize":"10px","textOnly":false,"className":"","sticky":true},null]}],"setView":[[34.756344,-86.652705],16,[]],"limits":{"lat":[34.756344,34.756344],"lng":[-86.652705,-86.652705]}},"evals":[],"jsHooks":[]}</script>
</div>
<div id="enrollment" class="section level1">
<h1>Enrollment</h1>
<table class="table table-striped table-hover table-condensed" style="margin-left: auto; margin-right: auto;">
<thead>
<tr>
<th style="text-align:left;">
</th>
<th style="text-align:center;">
Oakwood University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Undergrads (full time)
</td>
<td style="text-align:center;">
1,255 (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_1.png alt=‘Line plot from 1,751 to
1,255 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
↓<br />-56 per year
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads (part time)
</td>
<td style="text-align:center;">
123 (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_2.png alt=‘Line plot from 116 to
123 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Grad students (full time)
</td>
<td style="text-align:center;">
58 (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_3.png alt=‘Line plot from 44 to 58
from 2010 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />1.9 per year
</td>
</tr>
<tr>
<td style="text-align:left;">
Grad students (part time)
</td>
<td style="text-align:center;">
16 (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_4.png alt=‘Line plot from 4 to 16
from 2010 to 2021’ >
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Admission rate (undergrads)
</td>
<td style="text-align:center;">
72% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_5.png alt=‘Line plot from 48 to 72
from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Yield rate (percent of applicants offered undergraduate admission who
accept)
</td>
<td style="text-align:center;">
45% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_6.png alt=‘Line plot from 37 to 45
from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Graduation rate (bachelors in 6 years)
</td>
<td style="text-align:center;">
50% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_7.png alt=‘Line plot from 40 to 50
from 2010 to 2021’ >
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Transfer out rate (bachelors)
</td>
<td style="text-align:center;">
2.2% (2020)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_8.png alt=‘Line plot from 12 to 2.2
from 2018 to 2020’ >
</td>
<td style="text-align:center;">
</td>
</tr>
</tbody>
</table>
</div>
<div id="student-financing" class="section level1">
<h1>Student financing</h1>
<p>At many universities, almost no students pay the listed tuition and
fees (“sticker price”): instead, their financial aid package lowers this
dramatically, but how much students pay can vary substantially based on
family income and other factors. The tuition below is the average across
many students receiving aid: your family may be asked to pay less or
more than this.</p>
<table class="table table-striped table-hover table-condensed" style="margin-left: auto; margin-right: auto;">
<thead>
<tr>
<th style="text-align:left;">
</th>
<th style="text-align:center;">
Oakwood University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Average net price (for students awarded aid)
</td>
<td style="text-align:center;">
$22,484 (2020)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_9.png alt=‘Line plot from 25,949 to
22,484 from 2011 to 2020’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting federal aid
</td>
<td style="text-align:center;">
49% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_10.png alt=‘Line plot from 46 to 49
from 2014 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting any aid
</td>
<td style="text-align:center;">
94% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_11.png alt=‘Line plot from 95 to 94
from 2014 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting Pell grants
</td>
<td style="text-align:center;">
48% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_12.png alt=‘Line plot from 46 to 48
from 2014 to 2021’ >
</td>
</tr>
</tbody>
</table>
</div>
<div id="teaching" class="section level1">
<h1>Teaching</h1>
<table class="table table-striped table-hover table-condensed" style="margin-left: auto; margin-right: auto;">
<thead>
<tr>
<th style="text-align:left;">
</th>
<th style="text-align:center;">
Oakwood University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Undergrads per tenure track instructor (lower is better)
</td>
<td style="text-align:center;">
22 (2020)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_14.png alt=‘Line plot from 22 to 22
from 2012 to 2020’ >
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads per instructor (lower is better)
</td>
<td style="text-align:center;">
12 (2020)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_15.png alt=‘Line plot from 17 to 12
from 2012 to 2020’ >
</td>
<td style="text-align:center;">
↓<br />-0.6 per year
</td>
</tr>
<tr>
<td style="text-align:left;">
Total instructors
</td>
<td style="text-align:center;">
105 (2020)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_16.png alt=‘Line plot from 110 to
105 from 2012 to 2020’ >
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Tenure track instructors
</td>
<td style="text-align:center;">
57 (2020)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_17.png alt=‘Line plot from 82 to 57
from 2012 to 2020’ >
</td>
<td style="text-align:center;">
↓<br />-3.6 per year
</td>
</tr>
<tr>
<td style="text-align:left;">
Non-tenure track instructors
</td>
<td style="text-align:center;">
48 (2020)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_18.png alt=‘Line plot from 28 to 48
from 2012 to 2020’ >
</td>
<td style="text-align:center;">
↑<br />2.8 per year
</td>
</tr>
</tbody>
</table>
</div>
<div id="student-details" class="section level1">
<h1>Student details</h1>
<table class="table table-striped table-hover table-condensed" style="margin-left: auto; margin-right: auto;">
<thead>
<tr>
<th style="text-align:left;">
</th>
<th style="text-align:center;">
Oakwood University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Dorm capacity
</td>
<td style="text-align:center;">
1,110 (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_13.png alt=‘Line plot from 1,264 to
1,110 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Percent of undergrads with registered disabilities (≤3 is rounded up to
3)
</td>
<td style="text-align:center;">
8% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_100.png alt=‘Line plot from 3 to 8
from 2010 to 2021’ >
</td>
</tr>
</tbody>
</table>
</div>
<div id="institution-finances" class="section level1">
<h1>Institution finances</h1>
<table class="table table-striped table-hover table-condensed" style="margin-left: auto; margin-right: auto;">
<thead>
<tr>
<th style="text-align:left;">
</th>
<th style="text-align:center;">
Oakwood University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Revenue from tution and fees
</td>
<td style="text-align:center;">
30% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_19.png alt=‘Line plot from 41 to 30
from 2011 to 2021’ >
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Revenue minus expenses
</td>
<td style="text-align:center;">
$8.3 M (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_20.png alt=‘Line plot from 4.0 M to
8.3 M from 2011 to 2021’ >
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Revenue
</td>
<td style="text-align:center;">
$62 M (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_21.png alt=‘Line plot from 46 M to
62 M from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />$1.1 M per year
</td>
</tr>
<tr>
<td style="text-align:left;">
Expenses
</td>
<td style="text-align:center;">
$53 M (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_22.png alt=‘Line plot from 42 M to
53 M from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />$1.1 M per year
</td>
</tr>
<tr>
<td style="text-align:left;">
Assets
</td>
<td style="text-align:center;">
$115 M (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_23.png alt=‘Line plot from 71 M to
115 M from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />$3.9 M per year
</td>
</tr>
</tbody>
</table>
</div>
<div id="graduation-rates" class="section level1">
<h1>Graduation rates</h1>
<p>Graduation rates for bachelor’s degrees within 150% of normal time (6
years for a 4-year degree). Note that this uses US federal demographic
data: it only has two genders and a specified set of ethnicities and
races. For groups with small numbers, the graduation rate may be highly
variable year to year (do all three people in this group graduate this
year or just two of three, for example).</p>
<table class="table table-striped table-hover table-condensed" style="margin-left: auto; margin-right: auto;">
<thead>
<tr>
<th style="text-align:left;">
</th>
<th style="text-align:center;">
Oakwood University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Total
</td>
<td style="text-align:center;">
50% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_39.png alt=‘Line plot from 40 to 50
from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Men
</td>
<td style="text-align:center;">
42% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_40.png alt=‘Line plot from 35 to 42
from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Women
</td>
<td style="text-align:center;">
55% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_41.png alt=‘Line plot from 44 to 55
from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
American Indian or Alaska Native men
</td>
<td style="text-align:center;">
0% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_42.png alt=‘Line plot from 0 to 0
from 2017 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
American Indian or Alaska Native women
</td>
<td style="text-align:center;">
33% (2020)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_43.png alt=‘Line plot from 100 to
33 from 2014 to 2020’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Asian men
</td>
<td style="text-align:center;">
0% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_44.png alt=‘Line plot from 100 to 0
from 2015 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Asian women
</td>
<td style="text-align:center;">
0% (2020)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_45.png alt=‘Line plot from 100 to 0
from 2011 to 2020’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Black or African American men
</td>
<td style="text-align:center;">
44% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_46.png alt=‘Line plot from 27 to 44
from 2011 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Black or African American women
</td>
<td style="text-align:center;">
58% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_47.png alt=‘Line plot from 41 to 58
from 2011 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Hispanic men
</td>
<td style="text-align:center;">
33% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_48.png alt=‘Line plot from 33 to 33
from 2012 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Hispanic women
</td>
<td style="text-align:center;">
67% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_49.png alt=‘Line plot from 0 to 67
from 2011 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
White men
</td>
<td style="text-align:center;">
0% (2019)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_52.png alt=‘Line plot from 0 to 0
from 2019 to 2019’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
White women
</td>
<td style="text-align:center;">
0% (2021)
</td>
<td style="text-align:center;">
<img src=images/OakwoodUniversity_53.png alt=‘Line plot from 0 to 0
from 2019 to 2021’ >
</td>
</tr>
<tr>