-
Notifications
You must be signed in to change notification settings - Fork 0
/
105154.html
1464 lines (1415 loc) · 79.5 KB
/
105154.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>Mesa Community College</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">Mesa Community College</h1>
<!-- readthedown authors -->
<div id="sidebar">
<h2><a href="#content">Mesa Community College</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.mesacc.edu/'>Mesa Community College</a> is
located in Mesa, Arizona. It is a public, 2-year institution.</p>
<p><em>From <a
href="https://en.wikipedia.org/wiki/%20Mesa%20Community%20College">Wikipedia</a></em>:
Mesa Community College (MCC) is a public community college in Mesa,
Arizona. It is the largest of the 10 community colleges in the Maricopa
County Community College District, the largest community college
district in the United States in terms of enrollment.</p>
<div id="notes" class="section level1">
<h1>Notes</h1>
<p>These are items that bear looking into more closely.</p>
<ul>
<li><p>There is insufficient data to determine whether this
institution’s total assets have tended to increase or decrease over
time.</p></li>
<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 8923 to 4264, a decline of 52.2%</p></li>
</ul>
</div>
<div id="overview-of-institution" class="section level1">
<h1>Overview of institution</h1>
<ul>
<li><p><strong>Institution kind</strong>: Associate’s Colleges: High
Transfer-Mixed Traditional/Nontraditional</p></li>
<li><p><strong>Undergrad program</strong>: Associate’s Colleges: High
Transfer</p></li>
<li><p><strong>Graduate program</strong>: Not classified (Exclusively
Undergraduate)</p></li>
<li><p><strong>Enrollment profile</strong>: Exclusively undergraduate
two-year (see more details below)</p></li>
<li><p><strong>Average net price for undergrads on financial
aid</strong>: $11,733 (This is 80% the average cost of
Harvard).</p></li>
<li><p><strong>Average net price for families with $30K-48K
income</strong>: $10,540 (This is $9,144 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://www.mesacc.edu/students/net-price-calculator.html'>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>: Two-year, large</p></li>
<li><p><strong>In state percentage</strong>: 96.1% of first year
students come from Arizona</p></li>
<li><p><strong>In US percentage</strong>: 99.8% of first year students
come from the US (note that 0.1% have no residence reported)</p></li>
<li><p><strong>Student to tenure-stream faculty ratio</strong>: 18.6
(undergrads to tenure-stream faculty) [<a href="tenure.html">Tenure
explained</a>]</p></li>
<li><p><strong>Student to faculty ratio</strong>: 17.2 (undergrads to
all faculty)</p></li>
<li><p><strong>Degrees offered</strong>: Certificate of less than 1
year, Certificate of less than 12 weeks, Certificate of at least 12
weeks but less than 1 year, Certificate of at least 1 year but less than
2 years, Associate’s degree</p></li>
<li><p><strong>Schedule</strong>: Semester</p></li>
<li><p><strong>Institution provides on campus housing</strong>:
No</p></li>
<li><p><strong>Freshmen required to live on campus</strong>: No</p></li>
<li><p><strong>Meal plan</strong>: No</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>: Very 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>: 55.6% 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>: 55.6% 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>: Low risk (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>: Sonoran desert</li>
<li><strong>Biome</strong>: Deserts & Xeric Shrublands</li>
<li><strong>Distance to mountains</strong>: 7.9 miles to North American
Cordillera</li>
<li><strong>Climate</strong>: See overview at <a
href="https:/weatherspark.com/y/2610/Average-Weather-in-Mesa-Arizona-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-223dfb089872a84dfbef" style="width:100%;height:auto;"></div>
<script type="application/json" data-for="htmlwidget-223dfb089872a84dfbef">{"x":{"filter":"none","vertical":false,"data":[["<a href=\"105154.html\">Mesa Community College</a>","<a href=\"123013.html\">Santa Rosa Junior College</a>","<a href=\"191083.html\">Erie Community College</a>","<a href=\"134608.html\">Indian River State College</a>","<a href=\"127200.html\">Front Range Community College</a>","<a href=\"190530.html\">CUNY Bronx Community College</a>","<a href=\"191719.html\">Hudson Valley Community College</a>","<a href=\"119137.html\">Moorpark College</a>","<a href=\"221643.html\">Pellissippi State Community College</a>","<a href=\"202356.html\">Cuyahoga Community College District</a>","<a href=\"228158.html\">South Plains College</a>","<a href=\"212878.html\">Harrisburg Area Community College</a>","<a href=\"104708.html\">Glendale Community College</a>","<a href=\"205470.html\">Sinclair Community College</a>","<a href=\"133386.html\">Daytona State College</a>","<a href=\"122375.html\">San Diego Mesa College</a>","<a href=\"149842.html\">William Rainey Harper College</a>","<a href=\"215239.html\">Community College of Philadelphia</a>","<a href=\"122180.html\">Sacramento City College</a>","<a href=\"113634.html\">Diablo Valley College</a>","<a href=\"115296.html\">Grossmont College</a>","<a href=\"121901.html\">Riverside City College</a>","<a href=\"193326.html\">Monroe Community College</a>","<a href=\"217475.html\">Community College of Rhode Island</a>","<a href=\"137096.html\">Santa Fe College</a>","<a href=\"132693.html\">Eastern Florida State College</a>","<a href=\"120971.html\">Palomar College</a>","<a href=\"146296.html\">Joliet Junior College</a>","<a href=\"113856.html\">East Los Angeles College</a>","<a href=\"210605.html\">Community College of Allegheny County</a>","<a href=\"121619.html\">Santa Ana College</a>","<a href=\"117706.html\">Los Angeles Pierce College</a>","<a href=\"144865.html\">College of DuPage</a>","<a href=\"236692.html\">Spokane Community College</a>","<a href=\"202222.html\">Columbus State Community College</a>","<a href=\"113236.html\">Cypress College</a>","<a href=\"163657.html\">Prince George's Community College</a>","<a href=\"111939.html\">Chaffey College</a>","<a href=\"118912.html\">MiraCosta College</a>","<a href=\"137209.html\">Seminole State College of Florida</a>","<a href=\"123217.html\">College of the Sequoias</a>","<a href=\"110246.html\">Butte College</a>","<a href=\"170055.html\">Grand Rapids Community College</a>","<a href=\"121886.html\">Rio Hondo College</a>","<a href=\"197294.html\">SUNY Westchester Community College</a>","<a href=\"118718.html\">Merced College</a>","<a href=\"190619.html\">CUNY Kingsborough Community College</a>","<a href=\"111887.html\">Cerritos College</a>","<a href=\"111461.html\">College of the Canyons</a>","<a href=\"170240.html\">Henry Ford College</a>","<a href=\"230746.html\">Salt Lake Community College</a>","<a href=\"120342.html\">Orange Coast College</a>","<a href=\"109208.html\">American River College</a>","<a href=\"119216.html\">Mt San Jacinto Community College District</a>","<a href=\"227924.html\">San Antonio College</a>","<a href=\"112172.html\">Citrus College</a>","<a href=\"117733.html\">Los Angeles Valley College</a>","<a href=\"136358.html\">Palm Beach State College</a>","<a href=\"146472.html\">College of Lake County</a>","<a href=\"185536.html\">Middlesex College</a>","<a href=\"111920.html\">Chabot College</a>","<a href=\"183859.html\">Brookdale Community College</a>","<a href=\"136473.html\">Pensacola State College</a>","<a href=\"147378.html\">Moraine Valley Community College</a>","<a href=\"145682.html\">Illinois Central College</a>","<a href=\"114789.html\">Fresno City College</a>","<a href=\"183743.html\">Bergen Community College</a>","<a href=\"134495.html\">Hillsborough Community College</a>","<a href=\"175315.html\">Century College</a>","<a href=\"182500.html\">Truckee Meadows Community College</a>","<a href=\"117788.html\">Los Angeles City College</a>","<a href=\"115001.html\">Glendale Community College</a>","<a href=\"109819.html\">Bakersfield College</a>","<a href=\"201955.html\">University of Cincinnati-Blue Ash College</a>","<a href=\"224350.html\">Del Mar College</a>","<a href=\"133702.html\">Florida State College at Jacksonville</a>","<a href=\"194222.html\">Onondaga Community College</a>","<a href=\"123341.html\">Sierra College</a>","<a href=\"364025.html\">Chandler-Gilbert Community College</a>","<a href=\"222576.html\">Amarillo College</a>","<a href=\"101505.html\">Jefferson State Community College</a>","<a href=\"125499.html\">West Valley College</a>","<a href=\"114859.html\">Fullerton College</a>","<a href=\"174428.html\">Normandale Community College</a>","<a href=\"118976.html\">Modesto Junior College</a>","<a href=\"137078.html\">St Petersburg College</a>","<a href=\"214111.html\">Montgomery County Community College</a>","<a href=\"113193.html\">Cuesta College</a>","<a href=\"214379.html\">Northampton County Area Community College</a>","<a href=\"113980.html\">El Camino Community College District</a>","<a href=\"165112.html\">Bunker Hill Community College</a>","<a href=\"167534.html\">Quinsigamond Community College</a>","<a href=\"193478.html\">Nassau Community College</a>","<a href=\"122205.html\">Saddleback College</a>","<a href=\"190673.html\">CUNY Queensborough Community College</a>","<a href=\"219824.html\">Chattanooga State Community College</a>","<a href=\"236513.html\">Seattle Central College</a>","<a href=\"101161.html\">Coastal Alabama Community College</a>","<a href=\"224642.html\">El Paso Community College</a>","<a href=\"170790.html\">Macomb Community College</a>"],[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],[13,4,23,10,44,7,28,9,11,10,22,35,11,16,16,4,18,15,4,12,4,4,17,17,22,14,5,13,5,21,3,5,15,14,26,4,16,4,4,17,3,3,21,1,21,3,7,4,5,19,20,6,4,3,9,6,4,13,13,18,5,27,12,12,14,3,32,17,22,19,4,5,3,47,8,18,16,5,15,11,24,null,4,25,8,17,26,7,26,5,18,19,18,7,15,16,22,13,8,23],[19,17,19,23,20,22,22,29,19,13,15,16,17,14,22,16,22,14,15,25,22,23,24,20,22,18,25,19,19,20,18,20,27,21,23,24,18,25,26,25,27,25,18,23,30,23,23,31,28,25,21,25,14,30,22,27,18,26,20,32,21,26,23,22,15,19,31,31,23,20,20,32,24,23,6,21,22,29,29,17,21,14,25,25,36,25,20,22,31,23,28,18,22,23,20,20,28,17,22,null],[10540,6087,5782,3206,9215,4636,7895,811,4884,4501,6829,9571,9685,3635,7722,4030,6076,13950,5686,5018,3370,4598,5908,6188,10057,4057,3593,2662,9996,8737,2851,11298,4233,4195,6585,5498,13270,9875,3876,3577,3042,7448,7994,5390,9364,11123,6539,5432,2938,3184,6141,4534,5678,4483,6164,5075,9211,9457,5633,11726,6087,6848,2430,10929,6423,3838,8285,4219,8398,5085,9088,6171,5239,11001,6030,2927,5161,2745,9296,5038,8829,1394,9985,9811,10571,2050,6685,9722,6814,10568,8615,6928,3951,5842,5448,6710,6034,5192,3640,5028],[4264,4236,4704,4287,4305,4493,4317,4254,4201,4310,3967,3683,3654,3467,4385,3553,4010,3689,4091,5934,3916,5038,4667,4736,5347,3635,5331,3657,5033,3791,3715,3744,6887,3523,5964,4559,3145,4926,3933,4850,4482,4084,3554,3886,4369,3779,5732,6735,5196,3771,6126,6224,4660,4550,3347,3676,2433,6343,3800,3894,2791,4105,3174,3808,2187,5579,5748,8652,2915,2656,2479,5608,6140,2795,1590,5895,3012,5553,3473,3266,2247,2035,6611,3309,4770,7226,2580,2613,2929,6663,3153,2239,6931,5277,6116,3162,2792,2826,6691,4604],[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],["Arizona","California","New York","Florida","Colorado","New York","New York","California","Tennessee","Ohio","Texas","Pennsylvania","Arizona","Ohio","Florida","California","Illinois","Pennsylvania","California","California","California","California","New York","Rhode Island","Florida","Florida","California","Illinois","California","Pennsylvania","California","California","Illinois","Washington","Ohio","California","Maryland","California","California","Florida","California","California","Michigan","California","New York","California","New York","California","California","Michigan","Utah","California","California","California","Texas","California","California","Florida","Illinois","New Jersey","California","New Jersey","Florida","Illinois","Illinois","California","New Jersey","Florida","Minnesota","Nevada","California","California","California","Ohio","Texas","Florida","New York","California","Arizona","Texas","Alabama","California","California","Minnesota","California","Florida","Pennsylvania","California","Pennsylvania","California","Massachusetts","Massachusetts","New York","California","New York","Tennessee","Washington","Alabama","Texas","Michigan"],["Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","Increasing","Decreasing","Approximately stable","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","Approximately stable","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Decreasing","Approximately stable","Approximately stable","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","Approximately stable","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","Approximately stable","Increasing","Approximately stable","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Approximately stable","Approximately stable","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Approximately stable","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Decreasing","Approximately stable","Decreasing","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-433b1c2932d55d57409d" style="width:768px;height:480px;"></div>
<script type="application/json" data-for="htmlwidget-433b1c2932d55d57409d">{"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":[33.390323,-111.871255,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":[[33.390323,-111.871255],16,[]],"limits":{"lat":[33.390323,33.390323],"lng":[-111.871255,-111.871255]}},"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;">
Mesa Community College
</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;">
4,264 (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_1.png alt=‘Line plot from 8,923
to 4,264 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
↓<br />-385 per year
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads (part time)
</td>
<td style="text-align:center;">
12,230 (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_2.png alt=‘Line plot from 17,485
to 12,230 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
↓<br />-471 per year
</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;">
Mesa Community College
</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;">
Average net price (for students awarded aid)
</td>
<td style="text-align:center;">
$11,733 (2020)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_9.png alt=‘Line plot from 7,925
to 11,733 from 2011 to 2020’ >
</td>
<td style="text-align:center;">
↑<br />$353 per year
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting federal aid
</td>
<td style="text-align:center;">
63% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_10.png alt=‘Line plot from 49 to
63 from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting any aid
</td>
<td style="text-align:center;">
76% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_11.png alt=‘Line plot from 71 to
76 from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting Pell grants
</td>
<td style="text-align:center;">
41% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_12.png alt=‘Line plot from 49 to
41 from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</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;">
Mesa Community College
</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;">
19 (2020)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_14.png alt=‘Line plot from 26 to
19 from 2012 to 2020’ >
</td>
<td style="text-align:center;">
↓<br />-0.7 per year
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads per instructor (lower is better)
</td>
<td style="text-align:center;">
17 (2020)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_15.png alt=‘Line plot from 24 to
17 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;">
289 (2020)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_16.png alt=‘Line plot from 343
to 289 from 2012 to 2020’ >
</td>
<td style="text-align:center;">
↓<br />-5.9 per year
</td>
</tr>
<tr>
<td style="text-align:left;">
Tenure track instructors
</td>
<td style="text-align:center;">
268 (2020)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_17.png alt=‘Line plot from 314
to 268 from 2012 to 2020’ >
</td>
<td style="text-align:center;">
↓<br />-5.0 per year
</td>
</tr>
<tr>
<td style="text-align:left;">
Non-tenure track instructors
</td>
<td style="text-align:center;">
21 (2020)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_18.png alt=‘Line plot from 29 to
21 from 2012 to 2020’ >
</td>
<td style="text-align:center;">
</td>
</tr>
</tbody>
</table>
</div>
<div id="student-details" class="section level1">
<h1>Student details</h1>
</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;">
Mesa Community College
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Revenue from tution and fees
</td>
<td style="text-align:center;">
13% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_19.png alt=‘Line plot from 17 to
13 from 2011 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Revenue
</td>
<td style="text-align:center;">
$138 M (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_21.png alt=‘Line plot from 152 M
to 138 M from 2011 to 2021’ >
</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>
</div>
<div id="freshmen-demographics" class="section level1">
<h1>Freshmen demographics</h1>
<p>Demographic data for first time degree-seeking students. Note that
this uses US federal demographic data: it only has two genders and a
specified set of ethnicities and races.</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;">
Mesa Community College
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Men (percent freshmen)
</td>
<td style="text-align:center;">
51% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_80.png alt=‘Line plot from 51 to
51 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Women (percent freshmen)
</td>
<td style="text-align:center;">
49% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_81.png alt=‘Line plot from 49 to
49 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
American Indian or Alaska Native men (percent freshmen)
</td>
<td style="text-align:center;">
1.4% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_82.png alt=‘Line plot from 2.5
to 1.4 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
American Indian or Alaska Native women (percent freshmen)
</td>
<td style="text-align:center;">
1.5% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_83.png alt=‘Line plot from 2.9
to 1.5 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Asian men (percent freshmen)
</td>
<td style="text-align:center;">
1.9% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_84.png alt=‘Line plot from 1.8
to 1.9 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Asian women (percent freshmen)
</td>
<td style="text-align:center;">
1.5% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_85.png alt=‘Line plot from 1.4
to 1.5 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Black or African American men (percent freshmen)
</td>
<td style="text-align:center;">
1.8% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_86.png alt=‘Line plot from 3.3
to 1.8 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Black or African American women (percent freshmen)
</td>
<td style="text-align:center;">
2.6% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_87.png alt=‘Line plot from 2.8
to 2.6 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Hispanic men (percent freshmen)
</td>
<td style="text-align:center;">
16% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_88.png alt=‘Line plot from 9.6
to 16 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Hispanic women (percent freshmen)
</td>
<td style="text-align:center;">
20% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_89.png alt=‘Line plot from 11 to
20 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Native Hawaiian or Other Pacific Islander men (percent freshmen)
</td>
<td style="text-align:center;">
0.1% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_90.png alt=‘Line plot from 0.2
to 0.1 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Native Hawaiian or Other Pacific Islander women (percent freshmen)
</td>
<td style="text-align:center;">
0.2% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_91.png alt=‘Line plot from 0.3
to 0.2 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
White men (percent freshmen)
</td>
<td style="text-align:center;">
23% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_92.png alt=‘Line plot from 27 to
23 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
White women (percent freshmen)
</td>
<td style="text-align:center;">
19% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_93.png alt=‘Line plot from 24 to
19 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Two or more races men (percent freshmen)
</td>
<td style="text-align:center;">
3.0% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_94.png alt=‘Line plot from 0.9
to 3.0 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Two or more races women (percent freshmen)
</td>
<td style="text-align:center;">
2.2% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_95.png alt=‘Line plot from 1.0
to 2.2 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Race ethnicity unknown men (percent freshmen)
</td>
<td style="text-align:center;">
0.4% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_96.png alt=‘Line plot from 4.7
to 0.4 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Race ethnicity unknown women (percent freshmen)
</td>
<td style="text-align:center;">
0.8% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_97.png alt=‘Line plot from 5.0
to 0.8 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Nonresident alien men (percent freshmen)
</td>
<td style="text-align:center;">
2.4% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_98.png alt=‘Line plot from 1.0
to 2.4 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Nonresident alien women (percent freshmen)
</td>
<td style="text-align:center;">
1.5% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_99.png alt=‘Line plot from 0.9
to 1.5 from 2010 to 2021’ >
</td>
</tr>
</tbody>
</table>
</div>
<div id="freshmen-geography" class="section level1">
<h1>Freshmen geography</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;">
Mesa Community College
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
In state
</td>
<td style="text-align:center;">
96% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_101.png alt=‘Line plot from 87
to 96 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
US
</td>
<td style="text-align:center;">
100% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_102.png alt=‘Line plot from 95
to 100 from 2010 to 2021’ >
</td>
</tr>
<tr>
<td style="text-align:left;">
Not reported
</td>
<td style="text-align:center;">
0.1% (2021)
</td>
<td style="text-align:center;">
<img src=images/MesaCommunityCollege_103.png alt=‘Line plot from 5.2
to 0.1 from 2010 to 2021’ >
</td>
</tr>
</tbody>
</table>
</div>
<div id="tenure-track-faculty" class="section level1">
<h1>Tenure track faculty</h1>
<p>Tenure track faculty are those who are eligible for tenure. This
includes both pre-tenure and tenured faculty. Once faculty get tenure,
they are (generally) protected from being fired for intellectual
reasons, helping to ensure their freedom in teaching and research. They
can still lose their positions for misconduct, financial problems, not
fulfilling their duties, or other reasons. Note that this chart uses US
federal demographic data: it only has two genders and a specified set of
ethnicities and races.</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;">
Mesa Community College
</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;">
Total (tenure-track count)
</td>
<td style="text-align:center;">
268 (2020)