-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path100706.html
2445 lines (2396 loc) · 93.8 KB
/
100706.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>University of Alabama in Huntsville</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">University of Alabama in Huntsville</h1>
<!-- readthedown authors -->
<div id="sidebar">
<h2><a href="#content">University of Alabama in Huntsville</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://www.uah.edu/'>University of Alabama in
Huntsville</a> is located in Huntsville, Alabama. It is a public, 4-year
or above institution.</p>
<p><em>From <a
href="https://en.wikipedia.org/wiki/%20University%20of%20Alabama%20in%20Huntsville">Wikipedia</a></em>:
The University of Alabama in Huntsville (UAH) is a public research
university in Huntsville, Alabama. The university is accredited by the
Southern Association of Colleges and Schools and comprises nine
colleges: arts, humanities & social sciences; business; education;
engineering; honors; nursing; professional & continuing studies;
science; and graduate. The university’s enrollment is approximately
10,000. It is part of the University of Alabama System and is classified
among “R1: Doctoral Universities: Very High Research Activity”.</p>
<div id="notes" class="section level1">
<h1>Notes</h1>
<p>These are items that bear looking into more closely.</p>
<ul>
<li>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>.</li>
</ul>
</div>
<div id="overview-of-institution" class="section level1">
<h1>Overview of institution</h1>
<ul>
<li><p><strong>Institution kind</strong>: Doctoral Universities: Very
High Research Activity</p></li>
<li><p><strong>Undergrad program</strong>: Professions plus arts &
sciences, high graduate coexistence</p></li>
<li><p><strong>Graduate program</strong>: Research Doctoral:
STEM-dominant</p></li>
<li><p><strong>Enrollment profile</strong>: High undergraduate (see more
details below)</p></li>
<li><p><strong>Average net price for undergrads on financial
aid</strong>: $17,302 (1.2 times the equivalent cost of
Harvard).</p></li>
<li><p><strong>Average net price for families with $30K-48K
income</strong>: $14,646 (This is $13,250 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://finaid.uah.edu/'>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, medium, primarily
residential</p></li>
<li><p><strong>In state percentage</strong>: 67.8% of first year
students come from Alabama</p></li>
<li><p><strong>In US percentage</strong>: 98.8% of first year students
come from the US (note that 0.1% have no residence reported)</p></li>
<li><p><strong>Graduation rate (within 6 years) for students seeking a
Bachelors</strong>: 60.7% (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>: 35.3%</p></li>
<li><p><strong>Percent of students seeking a Bachelors who transfer out
of this institution</strong>: 24.1%</p></li>
<li><p><strong>Student to tenure-stream faculty ratio</strong>: 29.6
(undergrads to tenure-stream faculty) [<a href="tenure.html">Tenure
explained</a>]</p></li>
<li><p><strong>Student to faculty ratio</strong>: 19.1 (undergrads to
all faculty)</p></li>
<li><p><strong>Degrees offered</strong>: Certificate of less than 1
year, Certificate of at least 12 weeks but less than 1 year, Bachelor’s
degree, Postbaccalaureate certificate, Master’s degree, Post master’s
certificate, Doctor’s degree: research scholarship, Doctor’s degree:
professional practice</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
2200 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>: 3 percent or less 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.5 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-fd24a53416cad0e98ae6" style="width:100%;height:auto;"></div>
<script type="application/json" data-for="htmlwidget-fd24a53416cad0e98ae6">{"x":{"filter":"none","vertical":false,"data":[["<a href=\"100706.html\">University of Alabama in Huntsville</a>","<a href=\"138354.html\">The University of West Florida</a>","<a href=\"141264.html\">Valdosta State University</a>","<a href=\"141334.html\">University of West Georgia</a>","<a href=\"221971.html\">Union University</a>","<a href=\"220613.html\">Lee University</a>","<a href=\"176053.html\">Mississippi College</a>","<a href=\"219833.html\">Christian Brothers University</a>","<a href=\"101587.html\">University of West Alabama</a>","<a href=\"101709.html\">University of Montevallo</a>","<a href=\"175616.html\">Delta State University</a>","<a href=\"140988.html\">Shorter University</a>","<a href=\"100830.html\">Auburn University at Montgomery</a>","<a href=\"171456.html\">Northern Michigan University</a>","<a href=\"179557.html\">Southeast Missouri State University</a>","<a href=\"175272.html\">Winona State University</a>","<a href=\"101480.html\">Jacksonville State University</a>","<a href=\"133553.html\">Embry-Riddle Aeronautical University-Daytona Beach</a>","<a href=\"240462.html\">University of Wisconsin-Platteville</a>","<a href=\"178420.html\">University of Missouri-St Louis</a>","<a href=\"159993.html\">University of Louisiana at Monroe</a>","<a href=\"174358.html\">Minnesota State University Moorhead</a>","<a href=\"216038.html\">Slippery Rock University of Pennsylvania</a>","<a href=\"159647.html\">Louisiana Tech University</a>","<a href=\"155061.html\">Fort Hays State University</a>","<a href=\"204635.html\">Ohio Northern University</a>","<a href=\"448886.html\">Arizona State University-Downtown Phoenix</a>","<a href=\"218964.html\">Winthrop University</a>","<a href=\"178402.html\">University of Missouri-Kansas City</a>","<a href=\"106458.html\">Arkansas State University</a>","<a href=\"101879.html\">University of North Alabama</a>","<a href=\"174233.html\">University of Minnesota-Duluth</a>","<a href=\"219356.html\">South Dakota State University</a>","<a href=\"173920.html\">Minnesota State University-Mankato</a>","<a href=\"178411.html\">Missouri University of Science and Technology</a>","<a href=\"151263.html\">University of Indianapolis</a>","<a href=\"128771.html\">Central Connecticut State University</a>","<a href=\"110097.html\">Biola University</a>","<a href=\"163851.html\">Salisbury University</a>","<a href=\"206695.html\">Youngstown State University</a>","<a href=\"171128.html\">Michigan Technological University</a>","<a href=\"176965.html\">University of Central Missouri</a>","<a href=\"185572.html\">Monmouth University</a>","<a href=\"219471.html\">University of South Dakota</a>","<a href=\"157401.html\">Murray State University</a>","<a href=\"221740.html\">The University of Tennessee-Chattanooga</a>","<a href=\"157447.html\">Northern Kentucky University</a>","<a href=\"142285.html\">University of Idaho</a>","<a href=\"190044.html\">Clarkson University</a>","<a href=\"155681.html\">Pittsburg State University</a>","<a href=\"166850.html\">Merrimack College</a>","<a href=\"240189.html\">University of Wisconsin-Whitewater</a>","<a href=\"227526.html\">Prairie View A & M University</a>","<a href=\"228431.html\">Stephen F Austin State University</a>","<a href=\"221847.html\">Tennessee Technological University</a>","<a href=\"201104.html\">Ashland University</a>","<a href=\"174914.html\">University of St Thomas</a>","<a href=\"151786.html\">Marian University</a>","<a href=\"129525.html\">University of Hartford</a>","<a href=\"178615.html\">Truman State University</a>","<a href=\"213996.html\">Messiah University</a>","<a href=\"180489.html\">The University of Montana</a>","<a href=\"178059.html\">Maryville University of Saint Louis</a>","<a href=\"130934.html\">Delaware State University</a>","<a href=\"171137.html\">University of Michigan-Dearborn</a>","<a href=\"230603.html\">Southern Utah University</a>","<a href=\"199157.html\">North Carolina Central University</a>","<a href=\"143358.html\">Bradley University</a>","<a href=\"196042.html\">Farmingdale State College</a>","<a href=\"165024.html\">Bridgewater State University</a>","<a href=\"219976.html\">Lipscomb University</a>","<a href=\"200004.html\">Western Carolina University</a>","<a href=\"217633.html\">Anderson University</a>","<a href=\"186584.html\">Seton Hall University</a>","<a href=\"144281.html\">Columbia College Chicago</a>","<a href=\"196246.html\">SUNY College at Plattsburgh</a>","<a href=\"192703.html\">Manhattan College</a>","<a href=\"240417.html\">University of Wisconsin-Stout</a>","<a href=\"211158.html\">Bloomsburg University of Pennsylvania</a>","<a href=\"127556.html\">Colorado Mesa University</a>","<a href=\"175005.html\">St Catherine University</a>","<a href=\"139861.html\">Georgia College & State University</a>","<a href=\"186371.html\">Rutgers University-Camden</a>","<a href=\"207971.html\">University of Tulsa</a>","<a href=\"212133.html\">Eastern University</a>","<a href=\"169080.html\">Calvin University</a>","<a href=\"172051.html\">Saginaw Valley State University</a>","<a href=\"169910.html\">Ferris State University</a>","<a href=\"179894.html\">Webster University</a>","<a href=\"146612.html\">Lewis University</a>","<a href=\"129215.html\">Eastern Connecticut State University</a>","<a href=\"157951.html\">Western Kentucky University</a>","<a href=\"196194.html\">SUNY College at Oswego</a>","<a href=\"240480.html\">University of Wisconsin-Stevens Point</a>","<a href=\"240268.html\">University of Wisconsin-Eau Claire</a>","<a href=\"144892.html\">Eastern Illinois University</a>","<a href=\"201195.html\">Baldwin Wallace University</a>","<a href=\"200800.html\">University of Akron Main Campus</a>","<a href=\"121309.html\">Point Loma Nazarene University</a>","<a href=\"240107.html\">Viterbo University</a>"],[74,53,76,70,53,83,49,97,74,90,100,81,97,71,79,77,76,72,88,57,70,72,79,66,90,69,82,64,76,63,90,80,87,69,85,78,75,61,86,78,86,76,84,87,85,86,80,81,75,94,80,83,77,83,79,70,76,73,79,61,77,82,92,59,69,89,76,76,73,86,74,79,50,77,96,68,75,91,90,80,75,88,79,75,69,75,78,85,59,71,73,98,80,90,77,72,79,85,84,77],[28,25,27,34,25,34,38,24,31,14,29,33,16,32,26,27,23,28,28,17,33,27,35,37,53,21,26,23,30,35,33,27,40,31,25,13,23,25,18,31,21,30,14,33,18,32,32,21,14,39,12,29,35,26,33,23,21,25,9,27,29,26,26,36,20,17,18,14,32,18,26,18,34,9,25,20,9,30,24,29,27,37,7,13,26,25,29,16,25,18,23,40,14,25,31,15,22,22,26,26],[61,52,41,42,68,58,63,59,37,52,44,37,36,54,54,63,50,62,59,58,54,57,68,60,51,72,58,58,57,54,51,65,60,52,63,63,55,70,72,47,69,53,69,60,56,54,50,59,76,52,69,63,42,53,60,68,78,64,61,72,77,51,73,47,56,56,51,76,54,62,71,61,64,72,51,65,77,56,59,47,60,62,71,73,62,77,42,56,57,60,57,58,66,55,68,51,66,60,73,65],[21,28,32,35,57,61,44,42,47,27,27,47,32,34,30,30,31,38,26,29,38,31,45,32,41,38,null,34,28,20,35,35,26,41,20,50,32,52,28,34,31,32,64,27,28,26,50,22,35,28,61,36,15,29,24,51,38,53,45,17,55,22,68,22,43,37,19,39,28,36,46,12,57,64,57,19,51,29,42,35,46,36,40,19,62,35,40,39,63,66,25,33,20,24,34,14,36,31,69,54],[30,29,25,23,9,23,18,16,23,16,16,15,21,28,26,23,21,29,26,21,20,20,21,31,25,11,33,19,18,17,23,23,26,23,20,18,16,16,19,27,17,20,19,19,19,27,22,16,16,20,26,25,29,23,22,20,17,29,16,17,16,15,26,22,19,32,20,18,33,22,16,24,36,21,30,20,15,22,21,36,15,20,20,13,20,16,25,18,12,25,20,22,22,23,28,16,15,31,19,17],[14646,6805,12126,14906,26056,14471,14501,11036,16479,16120,13257,16168,13773,11662,11349,12110,17293,30354,10182,9582,9591,12716,9533,9807,10813,19038,null,15779,10985,12021,10828,8677,15639,11808,8340,14716,10941,26419,13881,10139,8254,11518,22413,16321,7928,10058,2609,8744,21402,11582,27079,10289,13307,12046,12166,14311,27782,13146,24990,8271,19670,12069,22167,10571,8608,8796,14381,17753,3527,9920,21843,11422,18665,23973,22304,12792,27983,11699,14738,13761,15209,16499,8527,21226,18544,22475,11731,10177,20039,15348,14317,16192,11684,10173,11528,9800,19525,20198,28033,14905],[6223,6241,6605,6781,1634,3041,2082,1226,1754,1965,1486,1113,3017,5785,6548,4920,6273,6557,5468,4415,4333,3134,6423,7643,4822,2158,7827,3537,5786,5401,4530,7699,7558,10035,5059,3707,6071,3289,6106,7428,5470,5626,3908,4502,5930,8957,7598,6372,2796,4045,3924,8434,7578,8341,7550,2219,5845,2385,3681,3203,2304,5779,3215,3766,4770,8281,4770,4215,7321,6520,2761,8233,2750,5914,6124,3860,3016,5383,6367,6614,1772,5045,4055,2614,1237,2787,5713,6566,1881,3253,3476,11359,5670,6403,8980,3984,2687,9411,2574,1336],[674,586,872,575,526,161,1182,304,2997,153,278,103,400,229,618,288,456,582,49,875,1080,206,639,623,593,688,2277,347,3276,651,597,562,532,669,910,706,484,759,513,896,814,1177,720,1362,555,743,1312,1742,640,420,724,555,520,652,324,717,1059,801,684,244,284,1186,719,705,511,332,1417,360,20,501,1572,932,721,1738,198,250,428,238,316,90,524,297,762,794,747,103,228,723,1054,908,74,756,368,171,108,730,353,1230,559,538],["Alabama","Florida","Georgia","Georgia","Tennessee","Tennessee","Mississippi","Tennessee","Alabama","Alabama","Mississippi","Georgia","Alabama","Michigan","Missouri","Minnesota","Alabama","Florida","Wisconsin","Missouri","Louisiana","Minnesota","Pennsylvania","Louisiana","Kansas","Ohio","Arizona","South Carolina","Missouri","Arkansas","Alabama","Minnesota","South Dakota","Minnesota","Missouri","Indiana","Connecticut","California","Maryland","Ohio","Michigan","Missouri","New Jersey","South Dakota","Kentucky","Tennessee","Kentucky","Idaho","New York","Kansas","Massachusetts","Wisconsin","Texas","Texas","Tennessee","Ohio","Minnesota","Indiana","Connecticut","Missouri","Pennsylvania","Montana","Missouri","Delaware","Michigan","Utah","North Carolina","Illinois","New York","Massachusetts","Tennessee","North Carolina","South Carolina","New Jersey","Illinois","New York","New York","Wisconsin","Pennsylvania","Colorado","Minnesota","Georgia","New Jersey","Oklahoma","Pennsylvania","Michigan","Michigan","Michigan","Missouri","Illinois","Connecticut","Kentucky","New York","Wisconsin","Wisconsin","Illinois","Ohio","Ohio","California","Wisconsin"],["Increasing","Decreasing","Decreasing","Approximately stable","Decreasing","Approximately stable","Approximately stable","Increasing","Approximately stable","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Decreasing","Approximately stable","Increasing","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Increasing","Approximately stable","Decreasing","Approximately stable","Approximately stable","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Decreasing","Approximately stable","Increasing","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","Approximately stable","Approximately stable","Decreasing","Increasing","Decreasing","Decreasing","Approximately stable","Decreasing","Increasing","Approximately stable","Increasing","Decreasing","Decreasing","Approximately stable","Approximately stable","Increasing","Decreasing","Decreasing","Decreasing","Decreasing","Increasing","Increasing","Approximately stable","Increasing","Decreasing","Decreasing","Increasing","Decreasing","Increasing","Increasing","Increasing","Increasing","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Approximately stable","Decreasing","Approximately stable","Increasing","Approximately stable","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Decreasing","Increasing","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-25cbb08eb136f20ef604" style="width:768px;height:480px;"></div>
<script type="application/json" data-for="htmlwidget-25cbb08eb136f20ef604">{"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.724557,-86.640449,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.724557,-86.640449],16,[]],"limits":{"lat":[34.724557,34.724557],"lng":[-86.640449,-86.640449]}},"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;">
University of Alabama in Huntsville
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
<th style="text-align:center;">
Gulf South Conference
</th>
<th style="text-align:center;">
Doctoral Universities: Very High Research Activity
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Undergrads (full time)
</td>
<td style="text-align:center;">
6,223 (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_1.png alt=‘Line plot
from 4,539 to 6,223 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />242 per year
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads (part time)
</td>
<td style="text-align:center;">
1,346 (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_2.png alt=‘Line plot
from 1,466 to 1,346 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
↓<br />-20 per year
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Grad students (full time)
</td>
<td style="text-align:center;">
674 (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_3.png alt=‘Line plot
from 474 to 674 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />15 per year
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Grad students (part time)
</td>
<td style="text-align:center;">
1,393 (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_4.png alt=‘Line plot
from 1,135 to 1,393 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />26 per year
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Admission rate (undergrads)
</td>
<td style="text-align:center;">
74% (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_5.png alt=‘Line plot
from 82 to 74 from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
</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;">
28% (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_6.png alt=‘Line plot
from 42 to 28 from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪✪✪<br />Better (higher) than 50%
</td>
<td style="text-align:center;">
✪✪✪<br />Better (higher) than 56%
</td>
</tr>
<tr>
<td style="text-align:left;">
Graduation rate (bachelors in 6 years)
</td>
<td style="text-align:center;">
61% (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_7.png alt=‘Line plot
from 44 to 61 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪✪✪✪<br />Better (higher) than 79%
</td>
<td style="text-align:center;">
✪<br />Better (higher) than 14%
</td>
</tr>
<tr>
<td style="text-align:left;">
Transfer out rate (bachelors)
</td>
<td style="text-align:center;">
24% (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_8.png alt=‘Line plot
from 34 to 24 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪✪✪✪<br />Better (lower) than 67%
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 10%
</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;">
University of Alabama in Huntsville
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
<th style="text-align:center;">
Gulf South Conference
</th>
<th style="text-align:center;">
Doctoral Universities: Very High Research Activity
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Average net price (for students awarded aid)
</td>
<td style="text-align:center;">
$17,302 (2020)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_9.png alt=‘Line plot
from 12,980 to 17,302 from 2011 to 2020’ >
</td>
<td style="text-align:center;">
↑<br />$487 per year
</td>
<td style="text-align:center;">
✪✪<br />Better (lower) than 32%
</td>
<td style="text-align:center;">
✪✪✪<br />Better (lower) than 56%
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting federal aid
</td>
<td style="text-align:center;">
51% (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_10.png alt=‘Line plot
from 25 to 51 from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪✪✪<br />Better (higher) than 42%
</td>
<td style="text-align:center;">
✪✪✪✪✪<br />Better (higher) than 84%
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting any aid
</td>
<td style="text-align:center;">
96% (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_11.png alt=‘Line plot
from 87 to 96 from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪✪<br />Better (higher) than 21%
</td>
<td style="text-align:center;">
✪✪✪✪✪<br />Better (higher) than 86%
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting Pell grants
</td>
<td style="text-align:center;">
24% (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_12.png alt=‘Line plot
from 25 to 24 from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪<br />Better (higher) than 11%
</td>
<td style="text-align:center;">
✪✪✪✪<br />Better (higher) than 65%
</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;">
University of Alabama in Huntsville
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
<th style="text-align:center;">
Gulf South Conference
</th>
<th style="text-align:center;">
Doctoral Universities: Very High Research Activity
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Undergrads per tenure track instructor (lower is better)
</td>
<td style="text-align:center;">
30 (2020)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_14.png alt=‘Line plot
from 20 to 30 from 2012 to 2020’ >
</td>
<td style="text-align:center;">
↑<br />1.5 per year
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 0%
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 7%
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads per instructor (lower is better)
</td>
<td style="text-align:center;">
19 (2020)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_15.png alt=‘Line plot
from 14 to 19 from 2012 to 2020’ >
</td>
<td style="text-align:center;">
↑<br />0.7 per year
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 0%
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 8%
</td>
</tr>
<tr>
<td style="text-align:left;">
Total instructors
</td>
<td style="text-align:center;">
353 (2020)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_16.png alt=‘Line plot
from 314 to 353 from 2012 to 2020’ >
</td>
<td style="text-align:center;">
↑<br />7.2 per year
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Tenure track instructors
</td>
<td style="text-align:center;">
227 (2020)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_17.png alt=‘Line plot
from 223 to 227 from 2012 to 2020’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Non-tenure track instructors
</td>
<td style="text-align:center;">
126 (2020)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_18.png alt=‘Line plot
from 91 to 126 from 2012 to 2020’ >
</td>
<td style="text-align:center;">
↑<br />6.3 per year
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
</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;">
University of Alabama in Huntsville
</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;">
Dorm capacity
</td>
<td style="text-align:center;">
2,200 (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_13.png alt=‘Line plot
from 1,680 to 2,200 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />68 per year
</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;">
3% (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_100.png alt=‘Line
plot from 3 to 3 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
</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;">
University of Alabama in Huntsville
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
<th style="text-align:center;">
Gulf South Conference
</th>
<th style="text-align:center;">
Doctoral Universities: Very High Research Activity
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Revenue from tution and fees
</td>
<td style="text-align:center;">
21% (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_19.png alt=‘Line plot
from 22 to 21 from 2011 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪✪✪✪✪<br />Better (lower) than 89%
</td>
<td style="text-align:center;">
✪✪✪<br />Better (lower) than 56%
</td>
</tr>
<tr>
<td style="text-align:left;">
Revenue minus expenses
</td>
<td style="text-align:center;">
$32 M (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_20.png alt=‘Line plot
from 5.7 M to 32 M from 2011 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪✪✪✪✪<br />Better (higher) than 95%
</td>
<td style="text-align:center;">
✪<br />Better (higher) than 16%
</td>
</tr>
<tr>
<td style="text-align:left;">
Revenue
</td>
<td style="text-align:center;">
$333 M (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_21.png alt=‘Line plot
from 201 M to 333 M from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />$9.5 M per year
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Expenses
</td>
<td style="text-align:center;">
$301 M (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_22.png alt=‘Line plot
from 195 M to 301 M from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />$9.2 M per year
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Assets
</td>
<td style="text-align:center;">
$558 M (2021)
</td>
<td style="text-align:center;">
<img src=images/UniversityofAlabamainHuntsville_23.png alt=‘Line plot
from 397 M to 558 M from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />$13 M per year
</td>
<td style="text-align:center;">
✪✪✪✪✪<br />Better (higher) than 100%
</td>
<td style="text-align:center;">
✪<br />Better (higher) than 1%
</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;">
University of Alabama in Huntsville
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Gulf South Conference
</th>
<th style="text-align:center;">
Doctoral Universities: Very High Research Activity