-
Notifications
You must be signed in to change notification settings - Fork 0
/
104717.html
2233 lines (2184 loc) · 93.4 KB
/
104717.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>Grand Canyon University</title>
<script src="institution_files/header-attrs-2.23/header-attrs.js"></script>
<script src="institution_files/jquery-3.6.0/jquery-3.6.0.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="institution_files/bootstrap-3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<script src="institution_files/bootstrap-3.3.7/js/bootstrap.min.js"></script>
<script src="institution_files/navigation-1.1/tabsets.js"></script>
<link href="institution_files/readthedown-0.1/readthedown.css" rel="stylesheet" />
<link href="institution_files/readthedown-0.1/readthedown_fonts_embed.css" rel="stylesheet" />
<script src="institution_files/readthedown-0.1/readthedown.js"></script>
<script src="institution_files/htmlwidgets-1.6.2/htmlwidgets.js"></script>
<link href="institution_files/datatables-css-0.0.0/datatables-crosstalk.css" rel="stylesheet" />
<script src="institution_files/datatables-binding-0.28/datatables.js"></script>
<link href="institution_files/dt-core-1.13.4/css/jquery.dataTables.min.css" rel="stylesheet" />
<link href="institution_files/dt-core-1.13.4/css/jquery.dataTables.extra.css" rel="stylesheet" />
<script src="institution_files/dt-core-1.13.4/js/jquery.dataTables.min.js"></script>
<link href="institution_files/crosstalk-1.2.0.9000/css/crosstalk.min.css" rel="stylesheet" />
<script src="institution_files/crosstalk-1.2.0.9000/js/crosstalk.min.js"></script>
<link href="institution_files/leaflet-1.3.1/leaflet.css" rel="stylesheet" />
<script src="institution_files/leaflet-1.3.1/leaflet.js"></script>
<link href="institution_files/leafletfix-1.0.0/leafletfix.css" rel="stylesheet" />
<script src="institution_files/proj4-2.6.2/proj4.min.js"></script>
<script src="institution_files/Proj4Leaflet-1.0.1/proj4leaflet.js"></script>
<link href="institution_files/rstudio_leaflet-1.3.1/rstudio_leaflet.css" rel="stylesheet" />
<script src="institution_files/leaflet-binding-2.1.2/leaflet.js"></script>
<script src="institution_files/kePrint-0.0.1/kePrint.js"></script>
<link href="institution_files/lightable-0.0.1/lightable.css" rel="stylesheet" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Q67PXWY3L5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Q67PXWY3L5');
</script>
<!-- tabsets -->
<script>
$(document).ready(function () {
window.buildTabsets("toc");
});
$(document).ready(function () {
$('.tabset-dropdown > .nav-tabs > li').click(function () {
$(this).parent().toggleClass('nav-tabs-open')
});
});
</script>
<!-- code folding -->
<!-- code download -->
<!-- tabsets dropdown -->
<style type="text/css">
.tabset-dropdown > .nav-tabs {
display: inline-table;
max-height: 500px;
min-height: 44px;
overflow-y: auto;
background: white;
border: 1px solid #ddd;
border-radius: 4px;
}
.tabset-dropdown > .nav-tabs > li.active:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li.active:before {
content: "";
border: none;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open:before {
content: "";
font-family: 'Glyphicons Halflings';
display: inline-block;
padding: 10px;
border-right: 1px solid #ddd;
}
.tabset-dropdown > .nav-tabs > li.active {
display: block;
}
.tabset-dropdown > .nav-tabs > li.active a {
padding: 0 15px !important;
}
.tabset-dropdown > .nav-tabs > li > a,
.tabset-dropdown > .nav-tabs > li > a:focus,
.tabset-dropdown > .nav-tabs > li > a:hover {
border: none;
display: inline-block;
border-radius: 4px;
background-color: transparent;
}
.tabset-dropdown > .nav-tabs.nav-tabs-open > li {
display: block;
float: none;
}
.tabset-dropdown > .nav-tabs > li {
display: none;
margin-left: 0 !important;
}
</style>
</head>
<body class="preload">
<!-- readthedown start -->
<div id="content" data-toggle="wy-nav-shift">
<nav id="nav-top" role="navigation" aria-label="top navigation">
<a role="button" href="#" data-toggle="wy-nav-top"><span class="glyphicon glyphicon-menu-hamburger"></span></a>
</nav>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-bs-toggle="collapse" data-target="#navbar" data-bs-target="#navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">College Tables</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="fields_overview.html">Fields</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar -->
<h1 class="title">Grand Canyon University</h1>
<!-- readthedown authors -->
<div id="sidebar">
<h2><a href="#content">Grand Canyon University</a></h2>
<div id="toc">
<ul>
<li><a href="#notes" id="toc-notes">Notes</a></li>
<li><a href="#overview-of-institution"
id="toc-overview-of-institution">Overview of institution</a></li>
<li><a href="#overview-of-location"
id="toc-overview-of-location">Overview of location</a></li>
<li><a href="#similar-institutions"
id="toc-similar-institutions">Similar institutions</a></li>
<li><a href="#map" id="toc-map">Map</a></li>
<li><a href="#enrollment" id="toc-enrollment">Enrollment</a></li>
<li><a href="#student-financing"
id="toc-student-financing">Student financing</a></li>
<li><a href="#teaching" id="toc-teaching">Teaching</a></li>
<li><a href="#student-details" id="toc-student-details">Student
details</a></li>
<li><a href="#institution-finances"
id="toc-institution-finances">Institution finances</a></li>
<li><a href="#graduation-rates"
id="toc-graduation-rates">Graduation rates</a></li>
<li><a href="#freshmen-demographics"
id="toc-freshmen-demographics">Freshmen demographics</a></li>
<li><a href="#freshmen-geography"
id="toc-freshmen-geography">Freshmen geography</a></li>
<li><a href="#tenure-track-faculty"
id="toc-tenure-track-faculty">Tenure track faculty</a></li>
<li><a href="#non-tenure-track-faculty"
id="toc-non-tenure-track-faculty">Non-tenure track
faculty</a></li>
<li><a href="#library-facilities"
id="toc-library-facilities">Library facilities</a></li>
<li><a href="#sat-scores" id="toc-sat-scores">SAT scores</a></li>
<li><a href="#act-scores" id="toc-act-scores">ACT scores</a></li>
<li><a href="#degrees-by-major" id="toc-degrees-by-major">Degrees
by major</a>
<ul>
<li><a href="#bachelors" id="toc-bachelors">Bachelors</a></li>
<li><a href="#masters" id="toc-masters">Masters</a></li>
<li><a href="#doctorate" id="toc-doctorate">Doctorate</a></li>
<li><a href="#certificate"
id="toc-certificate">Certificate</a></li>
<li><a href="#associates" id="toc-associates">Associates</a></li>
</ul></li>
<li><a href="#demographic-cliff"
id="toc-demographic-cliff">Demographic cliff</a></li>
<li><a href="#life-expectancy" id="toc-life-expectancy">Life
expectancy</a></li>
</ul>
</div>
<div id="postamble" data-toggle="wy-nav-shift" class="status">
</div>
</div>
<!-- Don't indent these lines or it will mess pre blocks indentation -->
<div id="main">
<style type="text/css">
img {
max-width: 100%;
}
</style>
<p><a href='https://www.gcu.edu/'>Grand Canyon University</a> is located
in Phoenix, Arizona. It is a private for-profit, 4-year or above
institution.</p>
<p><em>From <a
href="https://en.wikipedia.org/wiki/%20Grand%20Canyon%20University">Wikipedia</a></em>:
Grand Canyon University (GCU) is a private for-profit Christian
university in Phoenix, Arizona. Based on student enrollment, Grand
Canyon University was the largest Christian university in the world in
2018, with 20,000 attending students on campus and 70,000 online.</p>
<div id="notes" class="section level1">
<h1>Notes</h1>
<p>These are items that bear looking into more closely.</p>
<ul>
<li><p>California considers the state this institution is in to have one
or more anti-LGBTQ+ laws. It prohibits California-sponsored travel to
this state as a safety measure. See more
<a href='https://oag.ca.gov/ab1887'>here</a>.</p></li>
<li><p>There are extremely few tenure-track faculty relative to the
number of students. For something like an art or music school where
instruction is done nearly entirely by rotating artists or musicians,
this may be fine; for other schools, it can indicate a
<a href='https://www.aaup.org/issues/tenure'>risk to academic
freedom</a> and thus educational quality, as faculty members
<em>may</em> be able to lose their positions because of their speech,
publications, or research findings.</p></li>
</ul>
</div>
<div id="overview-of-institution" class="section level1">
<h1>Overview of institution</h1>
<ul>
<li><p><strong>Institution kind</strong>: Doctoral/Professional
Universities</p></li>
<li><p><strong>Undergrad program</strong>: Professions focus, some
graduate coexistence</p></li>
<li><p><strong>Graduate program</strong>: Research Doctoral:
Professional-dominant</p></li>
<li><p><strong>Enrollment profile</strong>: Majority undergraduate (see
more details below)</p></li>
<li><p><strong>Average net price for undergrads on financial
aid</strong>: $21,644 (1.6 times the equivalent cost of
Harvard).</p></li>
<li><p><strong>Average net price for families with $30K-48K
income</strong>: $18,142 (This is $16,746 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.gcu.edu/tuition-and-financial-aid'>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, large, primarily
nonresidential</p></li>
<li><p><strong>In state percentage</strong>: 26.7% of first year
students come from Arizona</p></li>
<li><p><strong>In US percentage</strong>: 99.4% of first year students
come from the US</p></li>
<li><p><strong>Graduation rate (within 6 years) for students seeking a
Bachelors</strong>: 44.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>: 37.4%</p></li>
<li><p><strong>Student to tenure-stream faculty ratio</strong>: 4984.2
(undergrads to tenure-stream faculty) [<a href="tenure.html">Tenure
explained</a>]</p></li>
<li><p><strong>Student to faculty ratio</strong>: 43.2 (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</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
15937 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 per week can
vary</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>: 10.8 miles to North American
Cordillera</li>
<li><strong>Climate</strong>: See overview at <a
href="https:/weatherspark.com/y/2460/Average-Weather-in-Phoenix-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-65e8eca2eccc2839bd4b" style="width:100%;height:auto;"></div>
<script type="application/json" data-for="htmlwidget-65e8eca2eccc2839bd4b">{"x":{"filter":"none","vertical":false,"data":[["<a href=\"104717.html\">Grand Canyon University</a>","<a href=\"437103.html\">Baton Rouge Community College</a>","<a href=\"433660.html\">Florida Gulf Coast University</a>","<a href=\"163426.html\">Montgomery College</a>","<a href=\"224226.html\">Dallas Baptist University</a>","<a href=\"141644.html\">Hawaii Pacific University</a>","<a href=\"232557.html\">Liberty University</a>","<a href=\"165529.html\">Curry College</a>","<a href=\"160667.html\">Northshore Technical Community College</a>","<a href=\"221953.html\">Tusculum University</a>","<a href=\"229887.html\">Wiley College</a>","<a href=\"224527.html\">East Texas Baptist University</a>","<a href=\"446774.html\">Blue Ridge Community and Technical College</a>","<a href=\"483212.html\">Louisiana Delta Community College</a>","<a href=\"157377.html\">Midway University</a>","<a href=\"158884.html\">Nunez Community College</a>","<a href=\"225548.html\">Howard Payne University</a>","<a href=\"484473.html\">University of Florida-Online</a>","<a href=\"162104.html\">Cecil College</a>","<a href=\"434061.html\">South Louisiana Community College</a>","<a href=\"480569.html\">Florida Institute of Technology-Online</a>","<a href=\"160481.html\">Fletcher Technical Community College</a>","<a href=\"214148.html\">Moore College of Art and Design</a>","<a href=\"160010.html\">Northwest Louisiana Technical Community College</a>","<a href=\"162168.html\">Chesapeake College</a>","<a href=\"445018.html\">Kanawha Valley Community and Technical College</a>","<a href=\"237640.html\">Ohio Valley University</a>","<a href=\"227687.html\">Ranger College</a>","<a href=\"160579.html\">SOWELA Technical Community College</a>","<a href=\"178697.html\">College of the Ozarks</a>","<a href=\"464226.html\">Ottawa University-Surprise</a>","<a href=\"108092.html\">University of Arkansas-Fort Smith</a>","<a href=\"237817.html\">Southern West Virginia Community and Technical College</a>","<a href=\"215053.html\">Pennsylvania College of Art and Design</a>","<a href=\"150048.html\">Ancilla College</a>","<a href=\"147828.html\">Olivet Nazarene University</a>","<a href=\"211556.html\">Chatham University</a>","<a href=\"129774.html\">Mitchell College</a>","<a href=\"201672.html\">Central Ohio Technical College</a>","<a href=\"220631.html\">Lincoln Memorial University</a>","<a href=\"215105.html\">The University of the Arts</a>","<a href=\"227304.html\">Odessa College</a>","<a href=\"128498.html\">Albertus Magnus College</a>","<a href=\"212869.html\">Harcum College</a>","<a href=\"244446.html\">Georgia Piedmont Technical College</a>","<a href=\"158088.html\">Central Louisiana Technical Community College</a>","<a href=\"487603.html\">Northwest University-Center for Online and Extended Education</a>","<a href=\"444954.html\">Mountwest Community and Technical College</a>","<a href=\"208488.html\">Concordia University-Portland</a>","<a href=\"440402.html\">Arkansas State University-Newport</a>","<a href=\"226091.html\">Lamar University</a>","<a href=\"222178.html\">Abilene Christian University</a>","<a href=\"236595.html\">Seattle University</a>","<a href=\"228431.html\">Stephen F Austin State University</a>","<a href=\"200846.html\">University of Akron Wayne College</a>","<a href=\"136215.html\">Nova Southeastern University</a>","<a href=\"445267.html\">Central Methodist University-College of Graduate and Extended Studies</a>","<a href=\"199272.html\">William Peace University</a>","<a href=\"166948.html\">Mount Ida College</a>","<a href=\"237358.html\">Davis & Elkins College</a>","<a href=\"144005.html\">Chicago State University</a>","<a href=\"484932.html\">BridgeValley Community & Technical College</a>","<a href=\"209287.html\">Multnomah University</a>","<a href=\"225885.html\">Jarvis Christian University</a>","<a href=\"155511.html\">McPherson College</a>","<a href=\"227881.html\">Sam Houston State University</a>","<a href=\"160913.html\">South Central Louisiana Technical College</a>","<a href=\"492801.html\">Drury University-College of Continuing Professional Studies</a>","<a href=\"188030.html\">New Mexico State University-Main Campus</a>","<a href=\"154749.html\">Bethel College-North Newton</a>","<a href=\"227368.html\">The University of Texas Rio Grande Valley</a>","<a href=\"110361.html\">California Baptist University</a>","<a href=\"181853.html\">York College</a>","<a href=\"154518.html\">Waldorf University</a>","<a href=\"157076.html\">Kentucky Wesleyan College</a>","<a href=\"150774.html\">Holy Cross College</a>","<a href=\"167260.html\">Nichols College</a>","<a href=\"145372.html\">Greenville University</a>","<a href=\"153278.html\">University of Dubuque</a>","<a href=\"154590.html\">William Penn University</a>","<a href=\"132471.html\">Barry University</a>","<a href=\"197984.html\">Belmont Abbey College</a>","<a href=\"456959.html\">University of Minnesota-Rochester</a>","<a href=\"228529.html\">Tarleton State University</a>","<a href=\"155900.html\">Southwestern College</a>","<a href=\"200086.html\">Nueta Hidatsa Sahnish College</a>","<a href=\"140553.html\">Morehouse College</a>","<a href=\"155414.html\">Kansas Wesleyan University</a>","<a href=\"230940.html\">Marlboro College</a>","<a href=\"153162.html\">Cornell College</a>","<a href=\"215266.html\">University of Pittsburgh-Bradford</a>","<a href=\"160959.html\">College of the Atlantic</a>","<a href=\"192864.html\">Marymount Manhattan College</a>","<a href=\"181127.html\">Hastings College</a>","<a href=\"133711.html\">Flagler College</a>","<a href=\"434672.html\">Community College of Baltimore County</a>","<a href=\"238078.html\">Wheeling University</a>","<a href=\"155973.html\">Tabor College</a>","<a href=\"198871.html\">Louisburg College</a>","<a href=\"214698.html\">Pennsylvania State University-Penn State Beaver</a>"],[83,null,89,null,94,85,99,80,null,77,null,65,null,null,78,null,59,66,null,null,100,null,58,null,null,null,95,null,null,21,31,56,null,51,72,61,73,78,null,70,85,null,82,94,null,null,null,null,57,null,88,70,82,83,86,93,100,52,75,78,47,null,59,null,85,97,null,null,57,71,94,64,62,72,67,86,85,80,76,58,64,99,80,57,69,null,65,68,83,81,73,61,77,71,74,null,78,54,82,64],[25,null,24,null,11,8,19,12,null,21,null,39,null,null,30,null,29,91,null,null,33,null,15,null,null,null,20,null,null,66,70,54,null,43,19,19,17,11,null,21,24,null,15,44,null,null,null,null,18,null,29,14,14,26,58,15,27,20,22,27,7,null,41,null,36,26,null,null,28,26,40,23,38,24,22,40,17,26,23,42,11,24,19,36,22,null,26,22,28,16,34,29,9,19,19,null,15,25,86,22],[45,null,56,null,62,43,66,54,null,40,27,45,null,null,61,null,35,44,null,null,null,null,57,null,null,null,30,null,null,62,null,26,null,58,null,64,63,42,null,57,68,null,60,null,null,null,40,null,44,null,39,60,75,53,null,61,null,42,41,50,21,null,55,36,53,57,null,35,50,47,51,57,43,31,46,68,58,48,40,32,41,46,47,49,40,50,47,39,46,64,39,67,59,49,58,null,57,48,null,46],[84,21,21,16,53,60,69,45,21,39,18,45,18,15,47,24,30,3,11,23,98,20,38,11,16,21,44,22,13,3,null,18,3,65,58,42,52,70,21,79,51,11,46,51,8,18,null,13,88,15,38,20,53,29,null,75,null,37,50,13,11,18,49,16,25,36,24,null,14,16,17,82,20,78,47,37,47,33,34,45,75,36,35,27,44,5,12,31,21,25,null,31,47,22,44,22,41,46,30,null],[4984,4084,3699,3652,2463,2220,2011,1969,1517,1376,1326,1266,920,904,760,879,699,739,762,677,651,562,354,430,427,492,271,410,373,369,324,293,347,223,305,220,214,184,338,204,149,319,189,240,278,284,206,259,145,256,17,19,12,23,205,159,239,100,66,38,8,229,77,166,18,27,206,143,19,24,28,23,27,45,28,33,61,19,43,57,108,29,50,29,23,148,21,17,6,14,35,null,18,19,null,196,18,16,112,30],[18142,8896,7214,6281,24468,25254,27251,25177,6999,15255,15900,19395,3293,7757,20786,8321,21970,1922,10792,8853,27068,6229,39028,10562,4021,null,null,3710,8309,7686,28971,7809,4653,21952,null,15658,23065,25182,10569,13965,35626,6568,25377,23208,10188,8187,26205,11963,null,6698,10221,24708,27455,12046,9347,23305,null,22846,null,15113,9532,6267,24880,14627,19779,12258,null,13961,9280,19211,5068,22162,15430,18472,17157,16969,28285,17378,22393,19110,19537,18625,8309,16577,22417,-1818,33967,22559,null,17628,11804,14407,32450,17872,21103,7123,36594,26071,16474,null],[22293,3344,11379,5801,2300,2548,29834,1807,1344,979,584,1223,844,1700,978,704,715,2454,515,3068,562,781,350,351,413,984,271,763,1470,1451,817,3366,926,211,263,2508,1155,493,485,1209,1380,2763,918,601,560,1061,378,650,1301,729,4496,3032,4098,8341,641,5810,949,628,1458,653,954,973,289,615,811,14352,619,447,9084,476,19630,7314,417,1452,757,431,1111,808,1289,1210,2580,1363,616,8567,658,124,2197,718,151,1038,1092,360,1533,919,2552,4181,506,544,474,548],[2,null,687,null,541,373,22999,48,null,190,1,63,null,null,55,null,5,null,null,null,14,null,18,null,null,null,7,null,null,null,65,12,null,null,null,54,692,null,null,3075,128,null,196,null,null,null,82,null,3270,null,855,410,1705,652,null,8997,79,null,10,null,467,null,144,null,1,907,null,null,1342,null,1892,2130,17,29,null,null,64,12,351,42,2370,8,null,596,46,null,null,0,null,6,null,1,null,12,2,null,5,0,null,null],["Arizona","Louisiana","Florida","Maryland","Texas","Hawaii","Virginia","Massachusetts","Louisiana","Tennessee","Texas","Texas","West Virginia","Louisiana","Kentucky","Louisiana","Texas","Florida","Maryland","Louisiana","Florida","Louisiana","Pennsylvania","Louisiana","Maryland","West Virginia","West Virginia","Texas","Louisiana","Missouri","Arizona","Arkansas","West Virginia","Pennsylvania","Indiana","Illinois","Pennsylvania","Connecticut","Ohio","Tennessee","Pennsylvania","Texas","Connecticut","Pennsylvania","Georgia","Louisiana","Washington","West Virginia","Oregon","Arkansas","Texas","Texas","Washington","Texas","Ohio","Florida","Missouri","North Carolina","Massachusetts","West Virginia","Illinois","West Virginia","Oregon","Texas","Kansas","Texas","Louisiana","Missouri","New Mexico","Kansas","Texas","California","Nebraska","Iowa","Kentucky","Indiana","Massachusetts","Illinois","Iowa","Iowa","Florida","North Carolina","Minnesota","Texas","Kansas","North Dakota","Georgia","Kansas","Vermont","Iowa","Pennsylvania","Maine","New York","Nebraska","Florida","Maryland","West Virginia","Kansas","North Carolina","Pennsylvania"],["Increasing","Decreasing","Increasing","Decreasing","Approximately stable","Decreasing","Increasing","Approximately stable","Increasing","Decreasing","Decreasing","Increasing","Decreasing","Approximately stable","Approximately stable","Approximately stable","Decreasing","Increasing","Approximately stable","Increasing","Decreasing","Approximately stable","Decreasing","Decreasing","Decreasing","Unknown or not applicable","Approximately stable","Approximately stable","Approximately stable","Increasing","Approximately stable","Decreasing","Decreasing","Approximately stable","Approximately stable","Approximately stable","Increasing","Decreasing","Decreasing","Approximately stable","Decreasing","Increasing","Decreasing","Approximately stable","Decreasing","Approximately stable","Approximately stable","Decreasing","Approximately stable","Approximately stable","Decreasing","Decreasing","Approximately stable","Decreasing","Decreasing","Approximately stable","Approximately stable","Approximately stable","Approximately stable","Approximately stable","Decreasing","Approximately stable","Decreasing","Approximately stable","Increasing","Increasing","Approximately stable","Decreasing","Decreasing","Approximately stable","Increasing","Increasing","Decreasing","Increasing","Approximately stable","Approximately stable","Approximately stable","Decreasing","Approximately stable","Decreasing","Decreasing","Decreasing","Increasing","Increasing","Increasing","Decreasing","Approximately stable","Approximately stable","Decreasing","Approximately stable","Decreasing","Approximately stable","Approximately stable","Decreasing","Approximately stable","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-fe2f30c385461f305654" style="width:768px;height:480px;"></div>
<script type="application/json" data-for="htmlwidget-fe2f30c385461f305654">{"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.513231,-112.129929,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.513231,-112.129929],16,[]],"limits":{"lat":[33.513231,33.513231],"lng":[-112.129929,-112.129929]}},"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;">
Grand Canyon University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
<th style="text-align:center;">
Western Athletic Conference
</th>
<th style="text-align:center;">
Doctoral/Professional Universities
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Undergrads (full time)
</td>
<td style="text-align:center;">
22,293 (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_1.png alt=‘Line plot from 3,685
to 22,293 from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />1,779 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;">
43,577 (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_2.png alt=‘Line plot from
21,201 to 43,577 from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />2,311 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;">
2 (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_3.png alt=‘Line plot from 3 to
2 from 2011 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;">
Grad students (part time)
</td>
<td style="text-align:center;">
37,200 (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_4.png alt=‘Line plot from
15,598 to 37,200 from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />2,452 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;">
83% (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_5.png alt=‘Line plot from 58 to
83 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;">
25% (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_6.png alt=‘Line plot from 22 to
25 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 71%
</td>
</tr>
<tr>
<td style="text-align:left;">
Graduation rate (bachelors in 6 years)
</td>
<td style="text-align:center;">
45% (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_7.png alt=‘Line plot from 29 to
45 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪<br />Better (higher) than 17%
</td>
<td style="text-align:center;">
✪<br />Better (higher) than 19%
</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;">
Grand Canyon University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
<th style="text-align:center;">
Western Athletic Conference
</th>
<th style="text-align:center;">
Doctoral/Professional Universities
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Average net price (for students awarded aid)
</td>
<td style="text-align:center;">
$21,644 (2020)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_9.png alt=‘Line plot from
17,220 to 21,644 from 2011 to 2020’ >
</td>
<td style="text-align:center;">
↑<br />$348 per year
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 17%
</td>
<td style="text-align:center;">
✪✪✪<br />Better (lower) than 53%
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting federal aid
</td>
<td style="text-align:center;">
87% (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_10.png alt=‘Line plot from 48
to 87 from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪✪✪✪✪<br />Better (higher) than 92%
</td>
<td style="text-align:center;">
✪✪✪✪✪<br />Better (higher) than 88%
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting any aid
</td>
<td style="text-align:center;">
100% (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_11.png alt=‘Line plot from 99
to 100 from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪✪✪✪✪<br />Better (higher) than 100%
</td>
<td style="text-align:center;">
✪✪✪✪✪<br />Better (higher) than 100%
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads getting Pell grants
</td>
<td style="text-align:center;">
34% (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_12.png alt=‘Line plot from 48
to 34 from 2014 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪✪✪<br />Better (higher) than 46%
</td>
<td style="text-align:center;">
✪✪✪<br />Better (higher) than 46%
</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;">
Grand Canyon University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
<th style="text-align:center;">
Western Athletic Conference
</th>
<th style="text-align:center;">
Doctoral/Professional Universities
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Undergrads per tenure track instructor (lower is better)
</td>
<td style="text-align:center;">
4,984 (2020)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_14.png alt=‘Line plot from 887
to 4,984 from 2013 to 2020’ >
</td>
<td style="text-align:center;">
↑<br />651 per year
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 0%
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 0%
</td>
</tr>
<tr>
<td style="text-align:left;">
Undergrads per instructor (lower is better)
</td>
<td style="text-align:center;">
43 (2020)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_15.png alt=‘Line plot from 28
to 43 from 2013 to 2020’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 0%
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 2%
</td>
</tr>
<tr>
<td style="text-align:left;">
Total instructors
</td>
<td style="text-align:center;">
461 (2020)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_16.png alt=‘Line plot from 290
to 461 from 2013 to 2020’ >
</td>
<td style="text-align:center;">
↑<br />25 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;">
4 (2020)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_17.png alt=‘Line plot from 9 to
4 from 2013 to 2020’ >
</td>
<td style="text-align:center;">
↓<br />-1.1 per year
</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;">
457 (2020)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_18.png alt=‘Line plot from 281
to 457 from 2013 to 2020’ >
</td>
<td style="text-align:center;">
↑<br />26 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;">
Grand Canyon University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Dorm capacity
</td>
<td style="text-align:center;">
15,937 (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_13.png alt=‘Line plot from
1,414 to 15,937 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />1,407 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/GrandCanyonUniversity_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;">
Grand Canyon University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Trend
</th>
<th style="text-align:center;">
Western Athletic Conference
</th>
<th style="text-align:center;">
Doctoral/Professional Universities
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Revenue from tution and fees
</td>
<td style="text-align:center;">
84% (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_19.png alt=‘Line plot from 96
to 84 from 2011 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 0%
</td>
<td style="text-align:center;">
✪<br />Better (lower) than 9%
</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/GrandCanyonUniversity_20.png alt=‘Line plot from 58 M
to 32 M from 2011 to 2021’ >
</td>
<td style="text-align:center;">
</td>
<td style="text-align:center;">
✪✪✪<br />Better (higher) than 46%
</td>
<td style="text-align:center;">
✪✪✪✪<br />Better (higher) than 63%
</td>
</tr>
<tr>
<td style="text-align:left;">
Revenue
</td>
<td style="text-align:center;">
$1.3 B (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_21.png alt=‘Line plot from 386
M to 1.3 B from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />$104 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;">
$1.2 B (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_22.png alt=‘Line plot from 327
M to 1.2 B from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />$97 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;">
$1.8 B (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_23.png alt=‘Line plot from 275
M to 1.8 B from 2011 to 2021’ >
</td>
<td style="text-align:center;">
↑<br />$167 M per year
</td>
<td style="text-align:center;">
✪✪✪✪✪<br />Better (higher) than 92%
</td>
<td style="text-align:center;">
✪✪✪✪✪<br />Better (higher) than 98%
</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;">
Grand Canyon University
</th>
<th style="text-align:center;">
Change over ≤ 11 years
</th>
<th style="text-align:center;">
Western Athletic Conference
</th>
<th style="text-align:center;">
Doctoral/Professional Universities
</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align:left;">
Total
</td>
<td style="text-align:center;">
45% (2021)
</td>
<td style="text-align:center;">
<img src=images/GrandCanyonUniversity_39.png alt=‘Line plot from 29
to 45 from 2010 to 2021’ >
</td>
<td style="text-align:center;">
✪<br />Better (higher) than 17%
</td>
<td style="text-align:center;">
✪<br />Better (higher) than 19%
</td>