-
Notifications
You must be signed in to change notification settings - Fork 0
/
colscore_legacy.do
2287 lines (2251 loc) · 188 KB
/
colscore_legacy.do
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
version 14
clear all
set more off
// Oct/2019: Updated to include files added since Sep 2017.
// May/2018: Tested on Linux. Success.
// Apr/2018: Updated to document data elements added Feb of 2018.
// Mar/2018: Updated to document data elements added Sep/Dec of 2017.
// Oct/2017: Updated to include data files added in Sep of 2017.
// Sep/2017: GitHub rebuild.
// Apr/2017: Initial build.
// Corresponding Collaborator: Adam Ross Nelson
/*#############################################################################
Maintained/more information at:
https://github.com/adamrossnelson/colscore
##############################################################################*/
// Utilizes version of sshnd (interactive file picker)
do https://raw.githubusercontent.com/adamrossnelson/sshnd/master/sshnd.do
capture log close // Close stray log files.
log using "$loggbl", append // Append sshnd established log file.
local sp char(13) char(10) char(13) char(10) // Define spacer.
di c(pwd) // Confrim working directory.
// Copy the zip file from the web to our current directory
copy https://ed-public-download.app.cloud.gov/downloads/CollegeScorecard_Raw_Data.zip .
// Extract the contents of the zip file and change into the created directory
unzipfile CollegeScorecard_Raw_Data.zip, replace
cd CollegeScorecard_Raw_Data
forvalues i = 1996 / 2017 {
// dataset names look like MERGED1996_97_PP.csv so the
// next two lines come up with the '97' given '1996'.
local num2 = (`i'+1) - int((`i'+1) / 100)*100
local num2 : display %02.0f `num2'
// entertain me while stepping through the files
display "Processing MERGED`i'_`num2'_PP.csv"
// read a file into a string scalar in memory
// replace 'NULL' with Stata's '.n' extended missing value, and
// likewise replace 'PrivacySuppressed' with '.p'
scalar fcontents = fileread("MERGED`i'_`num2'_PP.csv")
scalar fcontents = subinstr(fcontents, ",NULL", ",.n", .)
scalar fcontents = subinstr(fcontents, ",PrivacySuppressed", ",.p", .)
// Save the changed file contents as, e.g., MERGED_1996PP.csv
scalar byteswritten = filewrite("MERGED_`i'PP.csv", fcontents, 1)
// Now import all the variables from the CSV and generate a
// year variable;
// force opeid (column 2) to always be string;
// force accredagency (column 8) to always be string;
// force insturl (column 9) to always be string;
// force npcurl (column 10) to always be string.
import delimited "MERGED_`i'PP.csv", clear stringcols(2 8 9 10)
gen int year = `i'
gen int isYr = year
// Fix strange character that sometimes appears in unitid
// column header/variable name
capture rename ?itid unitid
// Fix string variable 'alias', which now has the string ".n"
// in it for various observations; it is really a string
// variable, so we just want to indicate missing with "".
tostring alias accredcode, replace
replace alias = "" if alias==".n"
// Convert repay_dt_mdn and separ_dt_mdn, if they exist,
// to Stata dates
capture confirm string variable repay_dt_mdn
if _rc==0 {
gen long newdate = date(repay_dt_mdn,"MDY")
replace newdate = .n if repay_dt_mdn==".n"
replace newdate = .p if repay_dt_mdn==".p"
drop repay_dt_mdn
rename newdate repay_dt_mdn
format repay_dt_mdn %td
}
else {
// repay_dt_mdn didn't exist as string, so it must have
// been all missing; fix up its type to match the type
// of repay_dt_mdn from other datasets where it will be
// a Stata date
recast long repay_dt_mdn
}
capture confirm string variable separ_dt_mdn
if _rc==0 {
gen long newdate = date(separ_dt_mdn,"MDY")
replace newdate = .n if separ_dt_mdn==".n"
replace newdate = .p if separ_dt_mdn==".p"
drop separ_dt_mdn
rename newdate separ_dt_mdn
format separ_dt_mdn %td
}
else {
recast long separ_dt_mdn
}
capture confirm string variable t4approvaldate
if _rc==0 {
gen long newdate = date(t4approvaldate,"MDY")
replace newdate = .n if t4approvaldate==".n"
replace newdate = .p if t4approvaldate==".p"
drop t4approvaldate
rename newdate t4approvaldate
format t4approvaldate %td
}
else {
recast long separ_dt_mdn
}
// Save as Stata dataset
compress
save "MERGED_`i'PP.dta", replace
}
clear
use "MERGED_1996PP.dta"
di "Loaded MERGED_1996PP.dta"
forvalues i = 1997/201 {
di "Merging MERGED_`i'PP.dta"
append using "MERGED_`i'PP.dta"
}
rename ïunitid unitid
// Data dictionary and other documenation:
// https://collegescorecard.ed.gov/data/
// variable labels
// Added by Collegescorecard in Sep and Feb of 2018
label variable c200_4 "Dbl Chk Data Dict / Completion rt first-time, ft stus at 4yr insts (200% expected)"
label variable c200_l4 "Dbl Chk Data Dict / Completion rt first-time, ft stus at < 4yr insts (200% expected)"
label variable c200_4_pooled "Dbl Chk Data Dict / Completion rt first-time, ft stus at 4yr insts (200% expected)"
label variable c200_l4_pooled "Dbl Chk Data Dict / Completion rt first-time, ft stus at < 4yr insts (200% expected)"
label variable ret_ft4_pooled "First-time, f-time stu retention rt at 4-year insts"
label variable ret_ftl4_pooled "First-time, f-time stu retention rt at less-than-4-year insts"
label variable ret_pt4_pooled "First-time, p-time stu retention rt at 4-year insts"
label variable ret_ptl4_pooled "First-time, p-time stu retention rt at less-than-4-year insts"
label variable ret_ft_den4_pooled "Adjusted cohort count for the 1st-time, f-time stu ret rt 4-yr insts (denominator retention rt)"
label variable ret_ft_denl4_pooled "Adjusted cohort count for the 1st-time, f-time stu ret rt less-than-4-yr insts (denominator retention rt)"
label variable ret_pt_den4_pooled "Adjusted cohort count for the 1st-time, p-time stu ret rt 4-year insts (denominator retention rt)"
label variable ret_pt_denl4_pooled "Adjusted cohort count for the 1st-time, p-time stu ret rt less-than-4-yr insts (denominator retention rt)"
label variable poolyrsret_ft "Yrs used for rolling avergs of f-time ret rate RET_FT[4/L4]_POOLED"
label variable poolyrsret_pt "Yrs used for rolling avergs of p-time ret rate RET_PT[4/L4]_POOLED"
label variable ret_ft4_pooled_supp "First-time, f-time stu ret rate at 4-year insts"
label variable ret_ftl4_pooled_supp "First-time, f-time stu ret rate at less-than-4-year insts"
label variable ret_pt4_pooled_supp "First-time, p-time stu ret rate at 4-year insts"
label variable ret_ptl4_pooled_supp "First-time, p-time stu ret rate at less-than-4-year insts"
label variable trans_4_pooled "xfer rt 1st-time, f-time stus at 4-year insts (within 150% expected time to completion/6 years)"
label variable trans_l4_pooled "xfer rt 1st-time, f-time stus at less-than-4-year insts (150% expected time to completion)"
label variable dtrans_4_pooled "Adjusted cohort count for xfer rt at 4-year insts (denominator 150% transfer rate)"
label variable dtrans_l4_pooled "Adjusted cohort count for xfer rt at less-than-4-year insts (denominator 150% transfer rate)"
label variable trans_4_pooled_supp "xfer rt 1st-time, f-time stus at four-4 insts (within 150% expected time to completion/6 years)"
label variable trans_l4_pooled_supp "xfer rt 1st-time, f-time stus at less-than-4-year insts (150% expected time to completion)"
// variable labels
// Added by Collegescorecard in Sep and Dec of 2017
label variable alias "Institution name aliases"
label variable c100_4 "Completion rate for first-time, full-time students at four-year institutions (100% of expected time to completion)"
label variable d100_4 "Adjusted cohort count for completion rate at four-year institutions (denominator of 100% completion rate)"
label variable c100_l4 "Completion rate for first-time, full-time students at less-than-four-year institutions (100% of expected time to completion)"
label variable d100_l4 "Adjusted cohort count for completion rate at less-than-four-year institutions (denominator of 100% completion rate)"
label variable trans_4 "Transfer rate for first-time, full-time students at four-year institutions (within 150% of expected time to completion/6 years)"
label variable dtrans_4 "Adjusted cohort count for transfer rate at less-than-four-year institutions (denominator of 150% transfer rate)"
label variable trans_l4 "Transfer rate for first-time, full-time students at less-than-four-year institutions (150% of expected time to completion)"
label variable dtrans_l4 "Adjusted cohort count for transfer rate at four-year institutions (denominator of 150% transfer rate)"
label variable iclevel "Level of institution"
label variable ugds_men "Total share of enrollment of undergraduate degree-seeking students who are men"
label variable ugds_women "Total share of enrollment of undergraduate degree-seeking students who are women"
label variable cdr2_denom "Number of students in the cohort for the two-year cohort default rate"
label variable cdr3_denom "Number of students in the cohort for the three-year cohort default rate"
label variable openadmp "Open admissions policy indicator"
label variable d_pctpell_pctfloan "Number of undergraduate students (denominator percent receiving a pell grant or federal student loan)"
label variable ugnonds "Number of non-degree-seeking undergraduate students"
label variable grads "Number of graduate students"
label variable d150_4_white "Adjusted cohort count for completion rate of White students at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_black "Adjusted cohort count for completion rate of Black/African American students at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_hisp "Adjusted cohort count for completion rate of Hispanic students at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_asian "Adjusted cohort count for completion rate of Asian students at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_aian "Adjusted cohort count for completion rate of American Indian/Alaska Native students at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_nhpi "Adjusted cohort count for completion rate of Native Hawaiian/Pacific Islander students at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_2mor "Adjusted cohort count for completion rate of students of Two or More Races at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_nra "Adjusted cohort count for completion rate of Nonresident Alien students at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_unkn "Adjusted cohort count for completion rate of students of Unknown race at four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_white "Adjusted cohort count for completion rate of White students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_black "Adjusted cohort count for completion rate of Black/African American students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_hisp "Adjusted cohort count for completion rate of Hispanic students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_asian "Adjusted cohort count for completion rate of Asian students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_aian "Adjusted cohort count for completion rate of American Indian/Alaska Native students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_nhpi "Adjusted cohort count for completion rate of Native Hawaiian/Pacific Islander students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_2mor "Adjusted cohort count for completion rate of students of Two or More Races at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_nra "Adjusted cohort count for completion rate of Nonresident Alien students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_unkn "Adjusted cohort count for completion rate of students of Unknown race at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_4_whitenh "Adjusted cohort count for completion rate of White, non-Hispanic students at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_blacknh "Adjusted cohort count for completion rate of Black, non-Hispanic students at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_api "Adjusted cohort count for completion rate of Asian/Pacific Islander students at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_aianold "Adjusted cohort count for completion rate of American Indian/Alaska Native students at four-year institutions (denominator of 150% completion rate)"
label variable d150_4_hispold "Adjusted cohort count for completion rate of Hispanic students at four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_whitenh "Adjusted cohort count for completion rate of White, non-Hispanic students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_blacknh "Adjusted cohort count for completion rate of Black, non-Hispanic students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_api "Adjusted cohort count for completion rate of Asian/Pacific Islander students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_aianold "Adjusted cohort count for completion rate of American Indian/Alaska Native students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable d150_l4_hispold "Adjusted cohort count for completion rate of Hispanic students at less-than-four-year institutions (denominator of 150% completion rate)"
label variable accredcode "Code corresponding to accreditor (as captured from PEPS)"
label variable t4approvaldate "Date that institution was first approved to participate in Title IV aid programs"
label variable omacht6_ftft "Adjusted cohort count of full-time, first-time students (denominator for the percentage receiving an award within 6 years of entry)"
label variable omawdp6_ftft "Percentage of full-time, first-time student receiving an award within 6 years of entry"
label variable omacht8_ftft "Adjusted cohort count of full-time, first-time students (denominator for the 8-year outcomes percentages)"
label variable omawdp8_ftft "Percentage of full-time, first-time student receiving an award within 8 years of entry"
label variable omenryp8_ftft "Percentage of full-time, first-time students that did not receive an award and are still enrolled at this institution 8 years after entry"
label variable omenrap8_ftft "Percentage of full-time, first-time students that enrolled at another institution after leaving this institution within 8 years of entry"
label variable omenrup8_ftft "Percentage of full-time, first-time students whose enrollment status is unknown after leaving this institution within 8 years of entry"
label variable omacht6_ptft "Adjusted cohort count of part-time, first-time students (denominator for the percentage receiving an award within 6 years of entry)"
label variable omawdp6_ptft "Percentage of part-time, first-time student receiving an award within 6 years of entry"
label variable omacht8_ptft "Adjusted cohort count of part-time, first-time students (denominator for the 8-year outcomes percentages)"
label variable omawdp8_ptft "Percentage of part-time, first-time student receiving an award within 8 years of entry"
label variable omenryp8_ptft "Percentage of part-time, first-time students that did not receive an award and are still enrolled at this institution 8 years after entry"
label variable omenrap8_ptft "Percentage of part-time, first-time students that enrolled at another institution after leaving this institution within 8 years of entry"
label variable omenrup8_ptft "Percentage of part-time, first-time students whose enrollment status is unknown after leaving this institution within 8 years of entry"
label variable omacht6_ftnft "Adjusted cohort count of full-time, not first-time students (denominator for the percentage receiving an award within 6 years of entry)"
label variable omawdp6_ftnft "Percentage of full-time, not first-time student receiving an award within 6 years of entry"
label variable omacht8_ftnft "Adjusted cohort count of full-time, not first-time students (denominator for the 8-year outcomes percentages)"
label variable omawdp8_ftnft "Percentage of full-time, not first-time student receiving an award within 8 years of entry"
label variable omenryp8_ftnft "Percentage of full-time, not first-time students that did not receive an award and are still enrolled at this institution 8 years after entry"
label variable omenrap8_ftnft "Percentage of full-time, not first-time students that enrolled at another institution after leaving this institution within 8 years of entry"
label variable omenrup8_ftnft "Percentage of full-time, not first-time students whose enrollment status is unknown after leaving this institution within 8 years of entry"
label variable omacht6_ptnft "Adjusted cohort count of part-time, not first-time students (denominator for the percentage receiving an award within 6 years of entry)"
label variable omawdp6_ptnft "Percentage of part-time, not first-time student receiving an award within 6 years of entry"
label variable omacht8_ptnft "Adjusted cohort count of part-time, not first-time students (denominator for the 8-year outcomes percentages)"
label variable omawdp8_ptnft "Percentage of part-time, not first-time student receiving an award within 8 years of entry"
label variable omenryp8_ptnft "Percentage of part-time, not first-time students that did not receive an award and are still enrolled at this institution 8 years after entry"
label variable omenrap8_ptnft "Percentage of part-time, not first-time students that enrolled at another institution after leaving this institution within 8 years of entry"
label variable omenrup8_ptnft "Percentage of part-time, not first-time students whose enrollment status is unknown after leaving this institution within 8 years of entry"
// value labels
// Added by Collegescorecard in Sep and Dec of 2017
label define iclevel_vl 1 "4-Year" 2 "2-Year" 3 "Less Than 2Yr"
label values iclevel icle_vl
label define open_vl 1 "Yes" 2 "No" 3 "Does not enrol first-time students"
label values openadmp open_vl
// add value labels (authored by Kevin Fosnacht, kfosnach@indiana.edu)
// (Found at: https://website.education.wisc.edu/nwhillman/wp-content/uploads/2017/06/scorecard-2.txt)
// Accessed June 22, 2017.
// variable labels
// Contributed by : Kevin Fosnacht
lab var cip43bachl "Bachelor's degree in Homeland Security, Law Enforcement, Firefighting"
lab var count_wne_indep0_inc1_p10 "N of dep. studs. working & not enr 10 yrs after entry, lowest inc. tercile"
lab var cip43assoc "Associate degree in Homeland Security, Law Enforcement, Firefighting"
lab var count_wne_indep0_inc1_p6 "N of dep. studs. working & not enr 6 yrs after entry, lowest inc. tercile"
lab var sat_avg_all "Avg SAT equiv. score of studs. admitted for all campuses rolled up to the OPE ID"
lab var num42_priv "Number of Title IV studs., $30,001-$48,000 family income (private inst)"
lab var num43_priv "Number of Title IV studs., $48,001-$75,000 family income (private inst)"
lab var mn_earn_wne_inc3_p10 "Mean ear. of studs. working & not enr 10 yrs after entry, highest inc. tercile"
lab var pct_grad_prof "% of the population from studs.' zip codes over 25 with a prof. deg,Census"
lab var mn_earn_wne_inc1_p10 "Mean ear. of studs. working & not enr 10 yrs after entry, lowest inc. tercile"
lab var mn_earn_wne_inc2_p10 "Mean ear. of studs. working & not enr 10 yrs after entry, middle inc. tercile"
lab var mn_earn_wne_inc3_p6 "Mean ear. of studs. working & not enr 6 yrs after entry, highest inc. tercile"
lab var mn_earn_wne_inc1_p6 "Mean ear. of studs. working & not enr 6 yrs after entry, lowest inc. tercile"
lab var mn_earn_wne_inc2_p6 "Mean ear. of studs. working & not enr 6 yrs after entry, middle inc. tercile"
lab var par_ed_pct_ps "% of studs. parents' highest educational level was is some college"
lab var npt44_priv "Average net price for $75,001-$110,000 family income (private inst)"
lab var num41_priv "Number of Title IV studs., $0-$30,000 family income (private inst)"
lab var npt42_priv "Average net price for $30,001-$48,000 family income (private inst)"
lab var npt4_3075_priv "Average net price for $30,001-$75,000 family income (private inst)"
lab var npt43_priv "Average net price for $48,001-$75,000 family income (private inst)"
lab var cip03cert4 "Award: 2+, <4 acad yrs in Natural Resources & Conservation."
lab var num45_priv "Number of Title IV studs., $110,000+ family income (private inst)"
lab var num44_other "Number of Title IV studs., $75,001-$110,000 family income (other acad. cal.)"
lab var num42_other "Number of Title IV studs., $30,001-$48,000 family income (other acad. cal.)"
lab var num43_other "Number of Title IV studs., $48,001-$75,000 family income (other acad. cal.)"
lab var count_wne_inc3_p10 "Number of studs. working & not enr 10 yrs after entry, highest inc. tercile"
lab var pcip52 "%age of degrees awarded in Business, Management, Marketing"
lab var count_wne_inc1_p10 "Number of studs. working & not enr 10 yrs after entry, lowest inc. tercile"
lab var count_wne_inc2_p10 "Number of studs. working & not enr 10 yrs after entry, middle inc. tercile"
lab var count_wne_inc3_p6 "Number of studs. working & not enr 6 yrs after entry, highest inc. tercile"
lab var dep_inc_pct_lo "%age of studs. financially indep. & have family incomes between $0-30,000"
lab var pcip10 "%age of degrees awarded in Communications Technologies/Technician"
lab var count_wne_inc1_p6 "Number of studs. working & not enr 6 yrs after entry, lowest inc. tercile"
lab var count_wne_inc2_p6 "Number of studs. working & not enr 6 yrs after entry, middle inc. tercile"
lab var npt41_priv "Average net price for $0-$30,000 family income (private inst)"
lab var npt4_048_priv "Average net price for $0-$48,000 family income (private inst)"
lab var ind_inc_pct_lo "%age of studs. who are financially depend & have family inc. between $0-30,000"
lab var npt45_priv "Average net price for $110,000+ family income (private inst)"
lab var npt44_other "Average net price for $75,001-$110,000 family income (other acad. cal.)"
lab var grad_debt_mdn10yr_supp "Median debt of completers expressed in 10-year monthly payments"
lab var npt4_75up_priv "Average net price for $75,000+ family income (private inst)"
lab var num41_other "Number of Title IV studs., $0-$30,000 family income (other acad. cal.)"
lab var pct_born_us "% of the population from studs.' zip codes that was born in the US, Census"
lab var pcip01 "%age of degrees awarded in Agriculture, Agriculture Operations"
lab var npt42_other "Average net price for $30,001-$48,000 family income (other acad. cal.)"
lab var npt4_3075_other "Average net price for $30,001-$75,000 family income (other acad. cal.)"
lab var npt43_other "Average net price for $48,001-$75,000 family income (other acad. cal.)"
lab var ugds_api "Total share of enrof UG degree-seeking studs. who are Asian/Pac Isl"
lab var num45_other "Number of Title IV studs., $110,000+ family income (other acad. cal.)"
lab var ind_inc_pct_h1 "Indep. studs. with family inc. $75,001-$110,000 in nominal dollars"
lab var ugds_nra "Total share of enroll of UG degree-seeking studs. who are non-resident aliens"
lab var pcip24 "%age of deg awarded in Liberal Arts & Sciences, General Studies & Humanities."
lab var pcip15 "%age of deg awarded in Engineering Technologies & Engineering-Related Fields."
lab var gt_25k_p10 "Share of studs. earning over $25,000/year 10 yrs after entry"
lab var cip52bachl "Bachelor's deg in Business, Management, Marketing, & Related Support Services."
lab var ind_inc_pct_m1 "Independent studs. with family inc between $30,001-$48,000 in nominal dollars"
lab var ind_inc_pct_m2 "Independent studs. with family inc between $48,001-$75,000 in nominal dollars"
lab var c150_l4_unkn "Comp. rate: 1st, full-time studs. at <4yr inst. (150% exp. tm), studs, race unk."
lab var pell_unkn_orig_yr2_rt "% of studs. recvd. Pell Grant at inst & status unk. w/in 2 yrs at original inst."
lab var pell_unkn_orig_yr3_rt "% of studs. recvd. Pell Grant at inst & status unk. w/in 3 yrs at original inst."
lab var pell_unkn_orig_yr4_rt "% of studs. recvd. Pell Grant at inst & status unk. w/in 4 yrs at original inst."
lab var pell_unkn_orig_yr6_rt "% of studs. recvd. Pell Grant at inst & status unk. w/in 6 yrs at original inst."
lab var pell_unkn_orig_yr8_rt "% of studs. recvd. Pell Grant at inst & status unk. w/in 8 yrs at original inst."
lab var pell_wdraw_orig_yr2_rt "% of studs. recvd. Pell Grant at inst & withdrew from original inst. w/in 2 yrs "
lab var pell_comp_orig_yr2_rt "% of studs. recvd. Pell Grant at inst & who completed in 2 yrs at original inst."
lab var pell_comp_orig_yr3_rt "% of studs. recvd. Pell Grant at inst & who completed in 3 yrs at original inst."
lab var pell_comp_orig_yr4_rt "% of studs. recvd. Pell Grant at inst & who completed in 4 yrs at original inst."
lab var pell_comp_orig_yr6_rt "% of studs. recvd. Pell Grant at inst & who completed in 6 yrs at original inst."
lab var pell_comp_orig_yr8_rt "% of studs. recvd. Pell Grant at inst & who completed in 8 yrs at original inst."
lab var ugds_blacknh "Total share of enrollment of UG degree-seeking studs. who are black non-Hispanic"
lab var ugds_whitenh "Total share of enrollment of UG degree-seeking studs. who are white non-Hispanic"
lab var sd_earn_wne_p10 "St&ard deviation of earnings of studs. working & not enr 10 yrs after entry"
lab var gt_25k_p6 "Share of studs. earning over $25,000/year (threshold earnings) 6 yrs after entry"
lab var gt_25k_p7 "Share of studs. earning over $25,000/year (threshold earnings) 7 yrs after entry"
lab var gt_25k_p8 "Share of studs. earning over $25,000/year (threshold earnings) 8 yrs after entry"
lab var gt_25k_p9 "Share of studs. earning over $25,000/year (threshold earnings) 9 yrs after entry"
lab var cip52assoc "Associate degree in Business, Management, Marketing, & Related Support Services."
lab var cip10bachl "Bachelor's degree in Communications Technologies/Technicians & Support Services."
lab var dep_inc_pct_h1 "Dependent studs. with family incomes between $75,001-$110,000 in nominal dollars"
lab var rpy_7yr_rt "% of repay chrt that has not deflt & with ln bal. dclind 7 yrs since entr repay"
lab var rpy_3yr_rt "% of repay chrt that has not deflt & with ln bal. dclind 3 yrs since entr repay"
lab var rpy_5yr_rt "% of repay chrt that has not deflt & with ln bal. dclind 5 yrs since entr repay"
lab var c150_l4_api "Comp. rate: 1st, full-time studs. at <4yr inst. (150% exp. tm), Asian/Pac. Isl."
lab var noloan_unkn_2yr_trans_yr2_rt "% of studs. w/out fed ln at inst & trans to 2-yr inst. & stat.= unk. w/in 2 yrs"
lab var c150_4_hisp "Comp. rate: 1st, full-time studs. at 4-yr inst. (150% exp. tm), Hispanic studs."
lab var c150_4_hispold "Comp. rate: 1st, full-time studs. at 4-yr inst. (150% exp. tm), Hispanic studs."
lab var loan_enrl_orig_yr2_rt "% of studs. recvd. fed ln at inst & who still enr at original inst. w/in 2 yrs "
lab var nopell_unkn_orig_yr2_rt "% of studs. w/out Pell Grant at inst & status unk. w/in 2 yrs at original inst."
lab var nopell_unkn_orig_yr3_rt "% of studs. w/out Pell Grant at inst & status unk. w/in 3 yrs at original inst."
lab var nopell_unkn_orig_yr4_rt "% of studs. w/out Pell Grant at inst & status unk. w/in 4 yrs at original inst."
lab var nopell_unkn_orig_yr6_rt "% of studs. w/out Pell Grant at inst & status unk. w/in 6 yrs at original inst."
lab var nopell_unkn_orig_yr8_rt "% of studs. w/out Pell Grant at inst & status unk. w/in 8 yrs at original inst."
lab var pell_enrl_orig_yr2_rt "% of studs. recvd. Pell Grant at inst & still enr at original inst. w/in 2 yrs "
lab var cip52cert2 "Cert: >1 <2 yrs in Business, Management, Marketing, & Related Support Services."
lab var nopell_wdraw_orig_yr2_rt "% of studs. w/out Pell Grant at inst & withdrew from original inst. w/in 2 yrs "
lab var nopell_comp_orig_yr2_rt "% of studs. w/out Pell Grant at inst & who completed in 2 yrs at original inst."
lab var nopell_comp_orig_yr3_rt "% of studs. w/out Pell Grant at inst & who completed in 3 yrs at original inst."
lab var nopell_comp_orig_yr4_rt "% of studs. w/out Pell Grant at inst & who completed in 4 yrs at original inst."
lab var nopell_comp_orig_yr6_rt "% of studs. w/out Pell Grant at inst & who completed in 6 yrs at original inst."
lab var nopell_comp_orig_yr8_rt "% of studs. w/out Pell Grant at inst & who completed in 8 yrs at original inst."
lab var cip52cert4 "Award >2 <4 yrs in Business, Management, Marketing, & Related Support Services."
lab var pell_wdraw_orig_yr3_rt "% of studs. recvd. Pell Grant at inst & withdrew from original inst. w/in 3 yrs"
lab var pell_wdraw_orig_yr4_rt "% of studs. recvd. Pell Grant at inst & withdrew from original inst. w/in 4 yrs"
lab var pell_wdraw_orig_yr6_rt "% of studs. recvd. Pell Grant at inst & withdrew from original inst. w/in 6 yrs"
lab var pell_wdraw_orig_yr8_rt "% of studs. recvd. Pell Grant at inst & withdrew from original inst. w/in 8 yrs"
lab var pftftug1_ef "Share of UG studs. who are 1st, full-time degree-/certificate-seeking UG studs."
lab var mn_earn_wne_indep0_inc1_p10 "Mean ear. depend studs. work & not enr. 10 yrs after entry, lowest inc. tercile"
lab var mn_earn_wne_indep0_inc1_p6 "Mean ear. dep. studs. working & not enr. 6 yrs after entry, lowest inc. tercile"
lab var ugds_2mor "Total share of enrollment of UG degree-seeking studs. who are two or more races"
lab var sd_earn_wne_p6 "St&ard deviation of earnings of studs. working & not enr 6 yrs after entry"
lab var sd_earn_wne_p7 "St&ard deviation of earnings of studs. working & not enr 7 yrs after entry"
lab var sd_earn_wne_p8 "St&ard deviation of earnings of studs. working & not enr 8 yrs after entry"
lab var sd_earn_wne_p9 "St&ard deviation of earnings of studs. working & not enr 9 yrs after entry"
lab var pct10_earn_wne_p10 "10th percentile of earnings of studs. working & not enr 10 yrs after entry"
lab var pct25_earn_wne_p10 "25th percentile of earnings of studs. working & not enr 10 yrs after entry"
lab var pct75_earn_wne_p10 "75th percentile of earnings of studs. working & not enr 10 yrs after entry"
lab var pct90_earn_wne_p10 "90th percentile of earnings of studs. working & not enr 10 yrs after entry"
lab var cip10assoc "Associate degree in Communications Technologies/Technicians & Support Services."
lab var dep_inc_pct_m1 "Dependent studs. with family incomes between $30,001-$48,000 in nominal dollars"
lab var dep_inc_pct_m2 "Dependent studs. with family incomes between $48,001-$75,000 in nominal dollars"
lab var hcm2 "Schools that are on Heightened Cash Monitoring 2 by the Department of Education"
lab var rpy_1yr_rt "% of repay chrt that has not deflt & with ln bal. dclind 1 yr since entr repay"
lab var c150_l4_pooled "Comp. rate: 1st, full-time at <4yr inst. (150% of exp. time to comp.), pooled"
lab var pell_unkn_2yr_trans_yr2_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & stat.= unk. w/in 2 yrs"
lab var pell_unkn_2yr_trans_yr3_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & stat.= unk. w/in 3 yrs"
lab var pell_unkn_2yr_trans_yr4_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & stat.= unk. w/in 4 yrs"
lab var pell_unkn_2yr_trans_yr6_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & stat.= unk. w/in 6 yrs"
lab var pell_unkn_2yr_trans_yr8_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & stat.= unk. w/in 8 yrs"
lab var pell_unkn_4yr_trans_yr2_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & stat.= unk. w/in 2 yrs"
lab var pell_unkn_4yr_trans_yr3_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & stat.= unk. w/in 3 yrs"
lab var pell_unkn_4yr_trans_yr4_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & stat.= unk. w/in 4 yrs"
lab var pell_unkn_4yr_trans_yr6_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & stat.= unk. w/in 6 yrs"
lab var pell_unkn_4yr_trans_yr8_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & stat.= unk. w/in 8 yrs"
lab var noloan_enrl_orig_yr2_rt "% of studs. w/out fed ln at inst & who still enr at original inst. w/in 2 yrs "
lab var loan_comp_4yr_trans_yr2_rt "% of studs. recvd. federel loan at inst & trans to 4-yr & completed w/in 2 yrs"
lab var nopell_enrl_orig_yr2_rt "% of studs. w/out Pell Grant at inst & still enr at original inst. w/in 2 yrs "
lab var loan_enrl_orig_yr3_rt "% of studs. recvd. fed ln at inst & who still enr at original inst. w/in 3 yrs"
lab var loan_enrl_orig_yr4_rt "% of studs. recvd. fed ln at inst & who still enr at original inst. w/in 4 yrs"
lab var loan_enrl_orig_yr6_rt "% of studs. recvd. fed ln at inst & who still enr at original inst. w/in 6 yrs"
lab var loan_enrl_orig_yr8_rt "% of studs. recvd. fed ln at inst & who still enr at original inst. w/in 8 yrs"
lab var pell_enrl_orig_yr3_rt "% of studs. recvd. Pell Grant at inst & still enr at original inst. w/in 3 yrs"
lab var pell_enrl_orig_yr4_rt "% of studs. recvd. Pell Grant at inst & still enr at original inst. w/in 4 yrs"
lab var pell_enrl_orig_yr6_rt "% of studs. recvd. Pell Grant at inst & still enr at original inst. w/in 6 yrs"
lab var pell_enrl_orig_yr8_rt "% of studs. recvd. Pell Grant at inst & still enr at original inst. w/in 8 yrs"
lab var cip10cert2 "Cert: >1 <2 yrs in Communications Technologies/Technicians & Support Services."
lab var nopell_wdraw_orig_yr3_rt "% of studs. w/out Pell Grant at inst & withdrew from original inst. w/in 3 yrs"
lab var nopell_wdraw_orig_yr4_rt "% of studs. w/out Pell Grant at inst & withdrew from original inst. w/in 4 yrs"
lab var nopell_wdraw_orig_yr6_rt "% of studs. w/out Pell Grant at inst & withdrew from original inst. w/in 6 yrs"
lab var nopell_wdraw_orig_yr8_rt "% of studs. w/out Pell Grant at inst & withdrew from original inst. w/in 8 yrs"
lab var cip10cert4 "Award >2 <4 yrs in Communications Technologies/Technicians & Support Services."
lab var not1stgen_unkn_orig_yr2_rt "% of not-first-generation studs. with status unk. w/in 2 yrs at original inst."
lab var not1stgen_unkn_orig_yr3_rt "% of not-first-generation studs. with status unk. w/in 3 yrs at original inst."
lab var not1stgen_unkn_orig_yr4_rt "% of not-first-generation studs. with status unk. w/in 4 yrs at original inst."
lab var not1stgen_unkn_orig_yr6_rt "% of not-first-generation studs. with status unk. w/in 6 yrs at original inst."
lab var not1stgen_unkn_orig_yr8_rt "% of not-first-generation studs. with status unk. w/in 8 yrs at original inst."
lab var pcip11 "%age of degrees awarded in Computer & Information Sciences & Support Services."
lab var num44_prog "Number of Title IV studs., $75,001-$110,000 family income (program-year inst.)"
lab var pcip44 "%age of degrees awarded in Public Administration & Social Service Professions."
lab var npt41_other "Average net price for $0-$30,000 family income (other acad. cal.)"
lab var npt4_048_other "Average net price for $0-$48,000 family income (other acad. cal.)"
lab var pct10_earn_wne_p6 "10th percentile of earnings of studs. working & not enr 6 yrs after entry"
lab var pct10_earn_wne_p8 "10th percentile of earnings of studs. working & not enr 8 yrs after entry"
lab var pct25_earn_wne_p6 "25th percentile of earnings of studs. working & not enr 6 yrs after entry"
lab var pct25_earn_wne_p8 "25th percentile of earnings of studs. working & not enr 8 yrs after entry"
lab var pct75_earn_wne_p6 "75th percentile of earnings of studs. working & not enr 6 yrs after entry"
lab var pct75_earn_wne_p8 "75th percentile of earnings of studs. working & not enr 8 yrs after entry"
lab var pct90_earn_wne_p6 "90th percentile of earnings of studs. working & not enr 6 yrs after entry"
lab var pct90_earn_wne_p8 "90th percentile of earnings of studs. working & not enr 8 yrs after entry"
lab var grad_debt_mdn10yr "Median loan debt of completers in monthly payments (10-year amortization plan)"
lab var nopell_unkn_2yr_trans_yr2_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & stat.= unk. w/in 2 yrs"
lab var nopell_unkn_2yr_trans_yr3_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & stat.= unk. w/in 3 yrs"
lab var nopell_unkn_2yr_trans_yr4_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & stat.= unk. w/in 4 yrs"
lab var nopell_unkn_2yr_trans_yr6_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & stat.= unk. w/in 6 yrs"
lab var nopell_unkn_2yr_trans_yr8_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & stat.= unk. w/in 8 yrs"
lab var nopell_unkn_4yr_trans_yr2_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & stat.= unk. w/in 2 yrs"
lab var nopell_unkn_4yr_trans_yr3_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & stat.= unk. w/in 3 yrs"
lab var nopell_unkn_4yr_trans_yr4_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & stat.= unk. w/in 4 yrs"
lab var nopell_unkn_4yr_trans_yr6_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & stat.= unk. w/in 6 yrs"
lab var nopell_unkn_4yr_trans_yr8_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & stat.= unk. w/in 8 yrs"
lab var noloan_enrl_4yr_trans_yr2_rt "% of studs. w/out fed ln at inst & trans to 4-yr & were still enr w/in 2 yrs "
lab var c150_4_nra "Comp. rate: 1st, full-time studs. at 4-yr inst. (150% exp. tm), non-residents"
lab var pell_enrl_4yr_trans_yr2_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & still enr w/in 2 yrs "
lab var noloan_enrl_orig_yr3_rt "% of studs. w/out fed ln at inst & who still enr at original inst. w/in 3 yrs"
lab var noloan_enrl_orig_yr4_rt "% of studs. w/out fed ln at inst & who still enr at original inst. w/in 4 yrs"
lab var noloan_enrl_orig_yr6_rt "% of studs. w/out fed ln at inst & who still enr at original inst. w/in 6 yrs"
lab var noloan_enrl_orig_yr8_rt "% of studs. w/out fed ln at inst & who still enr at original inst. w/in 8 yrs"
lab var nopell_enrl_orig_yr3_rt "% of studs. w/out Pell Grant at inst & still enr at original inst. w/in 3 yrs"
lab var nopell_enrl_orig_yr4_rt "% of studs. w/out Pell Grant at inst & still enr at original inst. w/in 4 yrs"
lab var nopell_enrl_orig_yr6_rt "% of studs. w/out Pell Grant at inst & still enr at original inst. w/in 6 yrs"
lab var nopell_enrl_orig_yr8_rt "% of studs. w/out Pell Grant at inst & still enr at original inst. w/in 8 yrs"
lab var hi_inc_unkn_orig_yr2_rt "% of high-income (>$75k) studs. with status unk. w/in 2 yrs at original inst."
lab var hi_inc_unkn_orig_yr3_rt "% of high-income (>$75k) studs. with status unk. w/in 3 yrs at original inst."
lab var hi_inc_unkn_orig_yr4_rt "% of high-income (>$75k) studs. with status unk. w/in 4 yrs at original inst."
lab var hi_inc_unkn_orig_yr6_rt "% of high-income (>$75k) studs. with status unk. w/in 6 yrs at original inst."
lab var hi_inc_unkn_orig_yr8_rt "% of high-income (>$75k) studs. with status unk. w/in 8 yrs at original inst."
lab var cip01cert4 "Awards: >2 <4 yrs in Agriculture, Agriculture Operations, & Related Sciences."
lab var pell_death_yr2_rt "% of studs. recvd. Pell Grant at inst & who died w/in 2 yrs at original inst."
lab var pell_death_yr3_rt "% of studs. recvd. Pell Grant at inst & who died w/in 3 yrs at original inst."
lab var pell_death_yr4_rt "% of studs. recvd. Pell Grant at inst & who died w/in 4 yrs at original inst."
lab var pell_death_yr6_rt "% of studs. recvd. Pell Grant at inst & who died w/in 6 yrs at original inst."
lab var pell_death_yr8_rt "% of studs. recvd. Pell Grant at inst & who died w/in 8 yrs at original inst."
lab var notfirstgen_rpy_1yr_n "Number of studs. in the 1-year repay rate of not-first-generation studs. chrt"
lab var notfirstgen_rpy_3yr_n "Number of studs. in the 3-year repay rate of not-first-generation studs. chrt"
lab var notfirstgen_rpy_5yr_n "Number of studs. in the 5-year repay rate of not-first-generation studs. chrt"
lab var notfirstgen_rpy_7yr_n "Number of studs. in the 7-year repay rate of not-first-generation studs. chrt"
lab var num42_prog "Number of Title IV studs., $30,001-$48,000 family income (program-year inst.)"
lab var num43_prog "Number of Title IV studs., $48,001-$75,000 family income (program-year inst.)"
lab var npt45_other "Average net price for $110,000+ family income (other acad. cal.)"
lab var mn_earn_wne_indep1_p10 "Mean ear. of independent studs. working & not enr 10 yrs after entry"
lab var cip01bachl "Bachelor's degree in Agriculture, Agriculture Operations, & Related Sciences."
lab var c150_l4_nhpi "Comp. rate: 1st, full-time at <4yr inst. (150% exp. tm), Nat. Haw./Pac. Isl."
lab var c150_4_nhpi "Comp. rate: 1st, full-time at 4-yr inst. (150% exp. tm), Nat. Haw./Pac. Isl."
lab var c150_l4_whitenh "Comp. rate: 1st, full-time at <4yr inst. (150% exp. tm), white non-Hispanic"
lab var c150_4_api "Comp. rate: 1st, full-time studs. at 4-yr inst. (150% exp. tm), Asian/Pac Is"
lab var nopell_enrl_4yr_trans_yr2_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & still enr w/in 2 yrs "
lab var c150_l4_asian "Comp. rate: 1st, full-time studs. at <4yr inst. (150% exp. tm), Asian studs."
lab var c150_l4_black "Comp. rate: 1st, full-time studs. at <4yr inst. (150% exp. tm), black studs."
lab var c150_l4_white "Comp. rate: 1st, full-time studs. at <4yr inst. (150% exp. tm), white studs."
lab var d150_l4_pooled "Adjusted chrt count for comp. rate at <4yr inst. (denominator of comp. rate)"
lab var pell_enrl_2yr_trans_yr2_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & still enr w/in 2 yrs"
lab var pell_enrl_2yr_trans_yr3_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & still enr w/in 3 yrs"
lab var pell_enrl_2yr_trans_yr4_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & still enr w/in 4 yrs"
lab var pell_enrl_2yr_trans_yr6_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & still enr w/in 6 yrs"
lab var pell_enrl_2yr_trans_yr8_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & still enr w/in 8 yrs"
lab var pell_enrl_4yr_trans_yr3_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & still enr w/in 3 yrs"
lab var pell_enrl_4yr_trans_yr4_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & still enr w/in 4 yrs"
lab var pell_enrl_4yr_trans_yr6_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & still enr w/in 6 yrs"
lab var pell_enrl_4yr_trans_yr8_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & still enr w/in 8 yrs"
lab var c150_4_asian "Comp. rate: 1st, full-time studs. at 4-yr inst. (150% exp. tm), Asian studs."
lab var c150_4_black "Comp. rate: 1st, full-time studs. at 4-yr inst. (150% exp. tm), black studs."
lab var c150_4_blacknh "Comp. rate: 1st, full-time studs. at 4-yr inst. (150% exp. tm), black studs."
lab var c150_4_white "Comp. rate: 1st, full-time studs. at 4-yr inst. (150% exp. tm), white studs."
lab var c150_4_whitenh "Comp. rate: 1st, full-time studs. at 4-yr inst. (150% exp. tm), white studs."
lab var d150_4_pooled "Adjusted chrt count for comp. rate at 4-yr inst. (denominator of comp. rate)"
lab var pell_comp_2yr_trans_yr2_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & completed w/in 2 yrs"
lab var pell_comp_2yr_trans_yr3_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & completed w/in 3 yrs"
lab var pell_comp_2yr_trans_yr4_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & completed w/in 4 yrs"
lab var pell_comp_2yr_trans_yr6_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & completed w/in 6 yrs"
lab var pell_comp_2yr_trans_yr8_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & completed w/in 8 yrs"
lab var pell_wdraw_2yr_trans_yr2_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & withdrew w/in 2 yrs "
lab var pell_comp_4yr_trans_yr2_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & completed w/in 2 yrs"
lab var pell_comp_4yr_trans_yr3_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & completed w/in 3 yrs"
lab var pell_comp_4yr_trans_yr4_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & completed w/in 4 yrs"
lab var pell_comp_4yr_trans_yr6_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & completed w/in 6 yrs"
lab var pell_comp_4yr_trans_yr8_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & completed w/in 8 yrs"
lab var pell_wdraw_4yr_trans_yr2_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & withdrew w/in 2 yrs "
lab var lo_inc_unkn_orig_yr2_rt "% of low-income (<$30k) studs. with status unk. w/in 2 yrs at original inst."
lab var lo_inc_unkn_orig_yr3_rt "% of low-income (<$30k) studs. with status unk. w/in 3 yrs at original inst."
lab var lo_inc_unkn_orig_yr4_rt "% of low-income (<$30k) studs. with status unk. w/in 4 yrs at original inst."
lab var lo_inc_unkn_orig_yr6_rt "% of low-income (<$30k) studs. with status unk. w/in 6 yrs at original inst."
lab var lo_inc_unkn_orig_yr8_rt "% of low-income (<$30k) studs. with status unk. w/in 8 yrs at original inst."
lab var loan_unkn_orig_yr2_rt "% of studs. recvd. fed ln at inst & status unk. w/in 2 yrs at original inst."
lab var loan_unkn_orig_yr3_rt "% of studs. recvd. fed ln at inst & status unk. w/in 3 yrs at original inst."
lab var loan_unkn_orig_yr4_rt "% of studs. recvd. fed ln at inst & status unk. w/in 4 yrs at original inst."
lab var loan_unkn_orig_yr6_rt "% of studs. recvd. fed ln at inst & status unk. w/in 6 yrs at original inst."
lab var loan_unkn_orig_yr8_rt "% of studs. recvd. fed ln at inst & status unk. w/in 8 yrs at original inst."
lab var c150_l4 "Comp. rate: 1st, full-time studs. at <4yr inst. (150% of exp. time to comp.)"
lab var not1stgen_unkn_2yr_trans_yr2_rt "% of not-first-generation studs. who trans. to 2-yr & stat.= unk. w/in 2 yrs"
lab var not1stgen_unkn_2yr_trans_yr3_rt "% of not-first-generation studs. who trans. to 2-yr & stat.= unk. w/in 3 yrs"
lab var not1stgen_unkn_2yr_trans_yr4_rt "% of not-first-generation studs. who trans. to 2-yr & stat.= unk. w/in 4 yrs"
lab var not1stgen_unkn_2yr_trans_yr6_rt "% of not-first-generation studs. who trans. to 2-yr & stat.= unk. w/in 6 yrs"
lab var not1stgen_unkn_2yr_trans_yr8_rt "% of not-first-generation studs. who trans. to 2-yr & stat.= unk. w/in 8 yrs"
lab var not1stgen_unkn_4yr_trans_yr2_rt "% of not-first-generation studs. who trans. to 4-yr & stat.= unk. w/in 2 yrs"
lab var not1stgen_unkn_4yr_trans_yr3_rt "% of not-first-generation studs. who trans. to 4-yr & stat.= unk. w/in 3 yrs"
lab var not1stgen_unkn_4yr_trans_yr4_rt "% of not-first-generation studs. who trans. to 4-yr & stat.= unk. w/in 4 yrs"
lab var not1stgen_unkn_4yr_trans_yr6_rt "% of not-first-generation studs. who trans. to 4-yr & stat.= unk. w/in 6 yrs"
lab var not1stgen_unkn_4yr_trans_yr8_rt "% of not-first-generation studs. who trans. to 4-yr & stat.= unk. w/in 8 yrs"
lab var nopell_death_yr2_rt "% of studs. w/out Pell Grant at inst & who died w/in 2 yrs at original inst."
lab var nopell_death_yr3_rt "% of studs. w/out Pell Grant at inst & who died w/in 3 yrs at original inst."
lab var nopell_death_yr4_rt "% of studs. w/out Pell Grant at inst & who died w/in 4 yrs at original inst."
lab var nopell_death_yr6_rt "% of studs. w/out Pell Grant at inst & who died w/in 6 yrs at original inst."
lab var nopell_death_yr8_rt "% of studs. w/out Pell Grant at inst & who died w/in 8 yrs at original inst."
lab var loan_wdraw_orig_yr2_rt "% of studs. recvd. fed ln at inst & withdrew from original inst. w/in 2 yrs "
lab var hi_inc_rpy_1yr_n "Number of studs. in the 1-year repay rate of high-income (>$75k) studs. chrt"
lab var hi_inc_rpy_3yr_n "Number of studs. in the 3-year repay rate of high-income (>$75k) studs. chrt"
lab var hi_inc_rpy_5yr_n "Number of studs. in the 5-year repay rate of high-income (>$75k) studs. chrt"
lab var hi_inc_rpy_7yr_n "Number of studs. in the 7-year repay rate of high-income (>$75k) studs. chrt"
lab var loan_comp_orig_yr2_rt "% of studs. recvd. fed ln at inst & who completed in 2 yrs at original inst."
lab var loan_comp_orig_yr3_rt "% of studs. recvd. fed ln at inst & who completed in 3 yrs at original inst."
lab var loan_comp_orig_yr4_rt "% of studs. recvd. fed ln at inst & who completed in 4 yrs at original inst."
lab var loan_comp_orig_yr6_rt "% of studs. recvd. fed ln at inst & who completed in 6 yrs at original inst."
lab var loan_comp_orig_yr8_rt "% of studs. recvd. fed ln at inst & who completed in 8 yrs at original inst."
lab var d150_l4 "Adjusted chrt count for comp. rate at <4yr inst. (denominator of comp. rate)"
lab var not1stgen_enrl_orig_yr2_rt "% of not-first-generation studs. who still enr at original inst. w/in 2 yrs "
lab var d150_4 "Adjusted chrt count for comp. rate at 4-yr inst. (denominator of comp. rate)"
lab var pct_hispanic "% of the population from studs.' zip codes that is Hispanic, via Census data"
lab var npt4_75up_other "Average net price for $75,000+ family income (other acad. cal.)"
lab var mn_earn_wne_indep1_p6 "Mean ear. of independent studs. working & not enr 6 yrs after entry"
lab var inc_pct_h1 "Aided studs. with family incomes between $75,001-$110,000 in nominal dollars"
lab var cip01assoc "Associate degree in Agriculture, Agriculture Operations, & Related Sciences."
lab var c150_l4_2mor "Comp. rate: 1st, full-time at <4yr inst. (150% exp. tm), studs. of 2+ races"
lab var c150_l4_blacknh "Comp. rate: 1st, full-time at <4yr inst. (150% exp. tm), black non-Hispanic"
lab var c150_l4_nra "Comp. rate: 1st, full-time at <4yr inst. (150% exp. tm), non-resident alien"
lab var hi_inc_unkn_2yr_trans_yr2_rt "% of high-income (>$75k) studs. who trans. to 2-yr & stat.= unk. w/in 2 yrs"
lab var hi_inc_unkn_2yr_trans_yr3_rt "% of high-income (>$75k) studs. who trans. to 2-yr & stat.= unk. w/in 3 yrs"
lab var hi_inc_unkn_2yr_trans_yr4_rt "% of high-income (>$75k) studs. who trans. to 2-yr & stat.= unk. w/in 4 yrs"
lab var hi_inc_unkn_2yr_trans_yr6_rt "% of high-income (>$75k) studs. who trans. to 2-yr & stat.= unk. w/in 6 yrs"
lab var hi_inc_unkn_2yr_trans_yr8_rt "% of high-income (>$75k) studs. who trans. to 2-yr & stat.= unk. w/in 8 yrs"
lab var hi_inc_unkn_4yr_trans_yr2_rt "% of high-income (>$75k) studs. who trans. to 4-yr & stat.= unk. w/in 2 yrs"
lab var hi_inc_unkn_4yr_trans_yr3_rt "% of high-income (>$75k) studs. who trans. to 4-yr & stat.= unk. w/in 3 yrs"
lab var hi_inc_unkn_4yr_trans_yr4_rt "% of high-income (>$75k) studs. who trans. to 4-yr & stat.= unk. w/in 4 yrs"
lab var hi_inc_unkn_4yr_trans_yr6_rt "% of high-income (>$75k) studs. who trans. to 4-yr & stat.= unk. w/in 6 yrs"
lab var hi_inc_unkn_4yr_trans_yr8_rt "% of high-income (>$75k) studs. who trans. to 4-yr & stat.= unk. w/in 8 yrs"
lab var nopell_enrl_2yr_trans_yr2_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & still enr w/in 2 yrs"
lab var nopell_enrl_2yr_trans_yr3_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & still enr w/in 3 yrs"
lab var nopell_enrl_2yr_trans_yr4_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & still enr w/in 4 yrs"
lab var nopell_enrl_2yr_trans_yr6_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & still enr w/in 6 yrs"
lab var nopell_enrl_2yr_trans_yr8_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & still enr w/in 8 yrs"
lab var nopell_enrl_4yr_trans_yr3_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & still enr w/in 3 yrs"
lab var nopell_enrl_4yr_trans_yr4_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & still enr w/in 4 yrs"
lab var nopell_enrl_4yr_trans_yr6_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & still enr w/in 6 yrs"
lab var nopell_enrl_4yr_trans_yr8_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & still enr w/in 8 yrs"
lab var nopell_comp_2yr_trans_yr2_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & completed w/in 2 yrs"
lab var nopell_comp_2yr_trans_yr3_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & completed w/in 3 yrs"
lab var nopell_comp_2yr_trans_yr4_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & completed w/in 4 yrs"
lab var nopell_comp_2yr_trans_yr6_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & completed w/in 6 yrs"
lab var nopell_comp_2yr_trans_yr8_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & completed w/in 8 yrs"
lab var nopell_wdraw_2yr_trans_yr2_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & withdrew w/in 2 yrs "
lab var nopell_comp_4yr_trans_yr2_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & completed w/in 2 yrs"
lab var nopell_comp_4yr_trans_yr3_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & completed w/in 3 yrs"
lab var nopell_comp_4yr_trans_yr4_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & completed w/in 4 yrs"
lab var nopell_comp_4yr_trans_yr6_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & completed w/in 6 yrs"
lab var nopell_comp_4yr_trans_yr8_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & completed w/in 8 yrs"
lab var nopell_wdraw_4yr_trans_yr2_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & withdrew w/in 2 yrs "
lab var hi_inc_enrl_orig_yr2_rt "% of high-income (>$75k) studs. who still enr at original inst. w/in 2 yrs "
lab var pell_wdraw_2yr_trans_yr3_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & withdrew w/in 3 yrs"
lab var pell_wdraw_2yr_trans_yr4_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & withdrew w/in 4 yrs"
lab var pell_wdraw_2yr_trans_yr6_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & withdrew w/in 6 yrs"
lab var pell_wdraw_2yr_trans_yr8_rt "% of studs. recvd. Pell Grant at inst & trans to 2-yr & withdrew w/in 8 yrs"
lab var pell_wdraw_4yr_trans_yr3_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & withdrew w/in 3 yrs"
lab var pell_wdraw_4yr_trans_yr4_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & withdrew w/in 4 yrs"
lab var pell_wdraw_4yr_trans_yr6_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & withdrew w/in 6 yrs"
lab var pell_wdraw_4yr_trans_yr8_rt "% of studs. recvd. Pell Grant at inst & trans to 4-yr & withdrew w/in 8 yrs"
lab var noloan_unkn_orig_yr2_rt "% of studs. w/out fed ln at inst & status unk. w/in 2 yrs at original inst."
lab var noloan_unkn_orig_yr3_rt "% of studs. w/out fed ln at inst & status unk. w/in 3 yrs at original inst."
lab var noloan_unkn_orig_yr4_rt "% of studs. w/out fed ln at inst & status unk. w/in 4 yrs at original inst."
lab var noloan_unkn_orig_yr6_rt "% of studs. w/out fed ln at inst & status unk. w/in 6 yrs at original inst."
lab var noloan_unkn_orig_yr8_rt "% of studs. w/out fed ln at inst & status unk. w/in 8 yrs at original inst."
lab var noloan_wdraw_orig_yr2_rt "% of studs. w/out fed ln at inst & withdrew from original inst. w/in 2 yrs "
lab var noloan_comp_orig_yr2_rt "% of studs. w/out fed ln at inst & who completed in 2 yrs at original inst."
lab var noloan_comp_orig_yr3_rt "% of studs. w/out fed ln at inst & who completed in 3 yrs at original inst."
lab var noloan_comp_orig_yr4_rt "% of studs. w/out fed ln at inst & who completed in 4 yrs at original inst."
lab var noloan_comp_orig_yr6_rt "% of studs. w/out fed ln at inst & who completed in 6 yrs at original inst."
lab var noloan_comp_orig_yr8_rt "% of studs. w/out fed ln at inst & who completed in 8 yrs at original inst."
lab var cip01cert2 "Cert: >1 <2 yrs in Agriculture, Agriculture Operations, & Related Sciences."
lab var lo_inc_rpy_1yr_n "Number of studs. in the 1-year repay rate of low-income (<$30k) studs. chrt"
lab var lo_inc_rpy_3yr_n "Number of studs. in the 3-year repay rate of low-income (<$30k) studs. chrt"
lab var lo_inc_rpy_5yr_n "Number of studs. in the 5-year repay rate of low-income (<$30k) studs. chrt"
lab var lo_inc_rpy_7yr_n "Number of studs. in the 7-year repay rate of low-income (<$30k) studs. chrt"
lab var not1stgen_enrl_4yr_trans_yr2_rt "% of not-first-generation studs. who trans. to 4-yr & still enr w/in 2 yrs "
lab var loan_wdraw_orig_yr3_rt "% of studs. recvd. fed ln at inst & withdrew from original inst. w/in 3 yrs"
lab var loan_wdraw_orig_yr4_rt "% of studs. recvd. fed ln at inst & withdrew from original inst. w/in 4 yrs"
lab var loan_wdraw_orig_yr6_rt "% of studs. recvd. fed ln at inst & withdrew from original inst. w/in 6 yrs"
lab var loan_wdraw_orig_yr8_rt "% of studs. recvd. fed ln at inst & withdrew from original inst. w/in 8 yrs"
lab var not1stgen_enrl_orig_yr3_rt "% of not-first-generation studs. who still enr at original inst. w/in 3 yrs"
lab var not1stgen_enrl_orig_yr4_rt "% of not-first-generation studs. who still enr at original inst. w/in 4 yrs"
lab var not1stgen_enrl_orig_yr6_rt "% of not-first-generation studs. who still enr at original inst. w/in 6 yrs"
lab var not1stgen_enrl_orig_yr8_rt "% of not-first-generation studs. who still enr at original inst. w/in 8 yrs"
lab var not1stgen_comp_orig_yr2_rt "% of not-first-generation studs. who completed w/in 2 yrs at original inst."
lab var not1stgen_comp_orig_yr3_rt "% of not-first-generation studs. who completed w/in 3 yrs at original inst."
lab var not1stgen_comp_orig_yr4_rt "% of not-first-generation studs. who completed w/in 4 yrs at original inst."
lab var not1stgen_comp_orig_yr6_rt "% of not-first-generation studs. who completed w/in 6 yrs at original inst."
lab var not1stgen_comp_orig_yr8_rt "% of not-first-generation studs. who completed w/in 8 yrs at original inst."
lab var npt4_priv "Average net price for Title IV inst. (private inst)"
lab var pcip05 "%age of degrees awarded in Area, Ethnic, Cultural, Gender, & Group Studies."
lab var mn_earn_wne_indep0_p10 "Mean ear. of dependent studs. working & not enr 10 yrs after entry"
lab var cip24bachl "Bachelor's degree in Liberal Arts & Sciences, General Studies & Humanities."
lab var inc_pct_m1 "Aided studs. with family incomes between $30,001-$48,000 in nominal dollars"
lab var inc_pct_m2 "Aided studs. with family incomes between $48,001-$75,000 in nominal dollars"
lab var cip15bachl "Bachelor's degree in Engineering Technologies & Engineering-Related Fields."
lab var ind_inc_pct_h2 "Independent studs. with family incomes between $110,001+ in nominal dollars"
lab var lo_inc_unkn_2yr_trans_yr2_rt "% of low-income (<$30k) studs. who trans. to 2-yr & stat.= unk. w/in 2 yrs"
lab var lo_inc_unkn_2yr_trans_yr3_rt "% of low-income (<$30k) studs. who trans. to 2-yr & stat.= unk. w/in 3 yrs"
lab var lo_inc_unkn_2yr_trans_yr4_rt "% of low-income (<$30k) studs. who trans. to 2-yr & stat.= unk. w/in 4 yrs"
lab var lo_inc_unkn_2yr_trans_yr6_rt "% of low-income (<$30k) studs. who trans. to 2-yr & stat.= unk. w/in 6 yrs"
lab var lo_inc_unkn_2yr_trans_yr8_rt "% of low-income (<$30k) studs. who trans. to 2-yr & stat.= unk. w/in 8 yrs"
lab var lo_inc_unkn_4yr_trans_yr2_rt "% of low-income (<$30k) studs. who trans. to 4-yr & stat.= unk. w/in 2 yrs"
lab var lo_inc_unkn_4yr_trans_yr3_rt "% of low-income (<$30k) studs. who trans. to 4-yr & stat.= unk. w/in 3 yrs"
lab var lo_inc_unkn_4yr_trans_yr4_rt "% of low-income (<$30k) studs. who trans. to 4-yr & stat.= unk. w/in 4 yrs"
lab var lo_inc_unkn_4yr_trans_yr6_rt "% of low-income (<$30k) studs. who trans. to 4-yr & stat.= unk. w/in 6 yrs"
lab var lo_inc_unkn_4yr_trans_yr8_rt "% of low-income (<$30k) studs. who trans. to 4-yr & stat.= unk. w/in 8 yrs"
lab var loan_unkn_2yr_trans_yr2_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & stat.= unk. w/in 2 yrs"
lab var loan_unkn_2yr_trans_yr3_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & stat.= unk. w/in 3 yrs"
lab var loan_unkn_2yr_trans_yr4_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & stat.= unk. w/in 4 yrs"
lab var loan_unkn_2yr_trans_yr6_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & stat.= unk. w/in 6 yrs"
lab var loan_unkn_2yr_trans_yr8_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & stat.= unk. w/in 8 yrs"
lab var loan_unkn_4yr_trans_yr2_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & stat.= unk. w/in 2 yrs"
lab var loan_unkn_4yr_trans_yr3_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & stat.= unk. w/in 3 yrs"
lab var loan_unkn_4yr_trans_yr4_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & stat.= unk. w/in 4 yrs"
lab var loan_unkn_4yr_trans_yr6_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & stat.= unk. w/in 6 yrs"
lab var loan_unkn_4yr_trans_yr8_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & stat.= unk. w/in 8 yrs"
lab var hi_inc_enrl_4yr_trans_yr2_rt "% of high-income (>$75k) studs. who trans. to 4-yr & still enr w/in 2 yrs "
lab var nopell_wdraw_2yr_trans_yr3_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & withdrew w/in 3 yrs"
lab var nopell_wdraw_2yr_trans_yr4_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & withdrew w/in 4 yrs"
lab var nopell_wdraw_2yr_trans_yr6_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & withdrew w/in 6 yrs"
lab var nopell_wdraw_2yr_trans_yr8_rt "% of studs. w/out Pell Grant at inst & trans to 2-yr & withdrew w/in 8 yrs"
lab var nopell_wdraw_4yr_trans_yr3_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & withdrew w/in 3 yrs"
lab var nopell_wdraw_4yr_trans_yr4_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & withdrew w/in 4 yrs"
lab var nopell_wdraw_4yr_trans_yr6_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & withdrew w/in 6 yrs"
lab var nopell_wdraw_4yr_trans_yr8_rt "% of studs. w/out Pell Grant at inst & trans to 4-yr & withdrew w/in 8 yrs"
lab var lo_inc_enrl_orig_yr2_rt "% of low-income (<$30k) studs. who still enr at original inst. w/in 2 yrs "
lab var hi_inc_enrl_orig_yr3_rt "% of high-income (>$75k) studs. who still enr at original inst. w/in 3 yrs"
lab var hi_inc_enrl_orig_yr4_rt "% of high-income (>$75k) studs. who still enr at original inst. w/in 4 yrs"
lab var hi_inc_enrl_orig_yr6_rt "% of high-income (>$75k) studs. who still enr at original inst. w/in 6 yrs"
lab var hi_inc_enrl_orig_yr8_rt "% of high-income (>$75k) studs. who still enr at original inst. w/in 8 yrs"
lab var noloan_wdraw_orig_yr3_rt "% of studs. w/out fed ln at inst & withdrew from original inst. w/in 3 yrs"
lab var noloan_wdraw_orig_yr4_rt "% of studs. w/out fed ln at inst & withdrew from original inst. w/in 4 yrs"
lab var noloan_wdraw_orig_yr6_rt "% of studs. w/out fed ln at inst & withdrew from original inst. w/in 6 yrs"
lab var noloan_wdraw_orig_yr8_rt "% of studs. w/out fed ln at inst & withdrew from original inst. w/in 8 yrs"
lab var hi_inc_comp_orig_yr2_rt "% of high-income (>$75k) studs. who completed w/in 2 yrs at original inst."
lab var hi_inc_comp_orig_yr3_rt "% of high-income (>$75k) studs. who completed w/in 3 yrs at original inst."
lab var hi_inc_comp_orig_yr4_rt "% of high-income (>$75k) studs. who completed w/in 4 yrs at original inst."
lab var hi_inc_comp_orig_yr6_rt "% of high-income (>$75k) studs. who completed w/in 6 yrs at original inst."
lab var hi_inc_comp_orig_yr8_rt "% of high-income (>$75k) studs. who completed w/in 8 yrs at original inst."
lab var not1stgen_enrl_2yr_trans_yr2_rt "% of not-first-generation studs. who trans. to 2-yr & still enr w/in 2 yrs"
lab var not1stgen_enrl_2yr_trans_yr3_rt "% of not-first-generation studs. who trans. to 2-yr & still enr w/in 3 yrs"
lab var not1stgen_enrl_2yr_trans_yr4_rt "% of not-first-generation studs. who trans. to 2-yr & still enr w/in 4 yrs"
lab var not1stgen_enrl_2yr_trans_yr6_rt "% of not-first-generation studs. who trans. to 2-yr & still enr w/in 6 yrs"
lab var not1stgen_enrl_2yr_trans_yr8_rt "% of not-first-generation studs. who trans. to 2-yr & still enr w/in 8 yrs"
lab var not1stgen_enrl_4yr_trans_yr3_rt "% of not-first-generation studs. who trans. to 4-yr & still enr w/in 3 yrs"
lab var not1stgen_enrl_4yr_trans_yr4_rt "% of not-first-generation studs. who trans. to 4-yr & still enr w/in 4 yrs"
lab var not1stgen_enrl_4yr_trans_yr6_rt "% of not-first-generation studs. who trans. to 4-yr & still enr w/in 6 yrs"
lab var not1stgen_enrl_4yr_trans_yr8_rt "% of not-first-generation studs. who trans. to 4-yr & still enr w/in 8 yrs"
lab var not1stgen_comp_2yr_trans_yr2_rt "% of not-first-generation studs. who trans. to 2-yr & completed w/in 2 yrs"
lab var not1stgen_comp_2yr_trans_yr3_rt "% of not-first-generation studs. who trans. to 2-yr & completed w/in 3 yrs"
lab var not1stgen_comp_2yr_trans_yr4_rt "% of not-first-generation studs. who trans. to 2-yr & completed w/in 4 yrs"
lab var not1stgen_comp_2yr_trans_yr6_rt "% of not-first-generation studs. who trans. to 2-yr & completed w/in 6 yrs"
lab var not1stgen_comp_2yr_trans_yr8_rt "% of not-first-generation studs. who trans. to 2-yr & completed w/in 8 yrs"
lab var not1stgen_wdraw_2yr_trans_yr2_rt "% of not-first-generation studs. who trans. to 2-yr & withdrew w/in 2 yrs "
lab var not1stgen_comp_4yr_trans_yr2_rt "% of not-first-generation studs. who trans. to 4-yr & completed w/in 2 yrs"
lab var not1stgen_comp_4yr_trans_yr3_rt "% of not-first-generation studs. who trans. to 4-yr & completed w/in 3 yrs"
lab var not1stgen_comp_4yr_trans_yr4_rt "% of not-first-generation studs. who trans. to 4-yr & completed w/in 4 yrs"
lab var not1stgen_comp_4yr_trans_yr6_rt "% of not-first-generation studs. who trans. to 4-yr & completed w/in 6 yrs"
lab var not1stgen_comp_4yr_trans_yr8_rt "% of not-first-generation studs. who trans. to 4-yr & completed w/in 8 yrs"
lab var not1stgen_wdraw_4yr_trans_yr2_rt "% of not-first-generation studs. who trans. to 4-yr & withdrew w/in 2 yrs "
lab var cip52cert1 "Cert: <1yr in Business, Management, Marketing, & Related Support Services."
lab var firstgen_unkn_orig_yr2_rt "% of first-generation studs. with status unk. w/in 2 yrs at original inst."
lab var firstgen_unkn_orig_yr3_rt "% of first-generation studs. with status unk. w/in 3 yrs at original inst."
lab var firstgen_unkn_orig_yr4_rt "% of first-generation studs. with status unk. w/in 4 yrs at original inst."
lab var firstgen_unkn_orig_yr6_rt "% of first-generation studs. with status unk. w/in 6 yrs at original inst."
lab var firstgen_unkn_orig_yr8_rt "% of first-generation studs. with status unk. w/in 8 yrs at original inst."
lab var not1stgen_wdraw_orig_yr2_rt "% of not-first-generation studs. withdrawn from original inst. w/in 2 yrs "
lab var mn_earn_wne_indep0_p6 "Mean ear. of dependent studs. working & not enr 6 yrs after entry"
lab var cip24assoc "Associate degree in Liberal Arts & Sciences, General Studies & Humanities."
lab var cip15assoc "Associate degree in Engineering Technologies & Engineering-Related Fields."
lab var aanapii "Flag for Asian American Native American Pacific Isl&er-serving institution"
lab var noloan_unkn_2yr_trans_yr3_rt "% of studs. w/out fed ln at inst & trans to 2-yr & stat.= unk. w/in 3 yrs"
lab var noloan_unkn_2yr_trans_yr4_rt "% of studs. w/out fed ln at inst & trans to 2-yr & stat.= unk. w/in 4 yrs"
lab var noloan_unkn_2yr_trans_yr6_rt "% of studs. w/out fed ln at inst & trans to 2-yr & stat.= unk. w/in 6 yrs"
lab var noloan_unkn_2yr_trans_yr8_rt "% of studs. w/out fed ln at inst & trans to 2-yr & stat.= unk. w/in 8 yrs"
lab var noloan_unkn_4yr_trans_yr2_rt "% of studs. w/out fed ln at inst & trans to 4-yr & stat.= unk. w/in 2 yrs"
lab var noloan_unkn_4yr_trans_yr3_rt "% of studs. w/out fed ln at inst & trans to 4-yr & stat.= unk. w/in 3 yrs"
lab var noloan_unkn_4yr_trans_yr4_rt "% of studs. w/out fed ln at inst & trans to 4-yr & stat.= unk. w/in 4 yrs"
lab var noloan_unkn_4yr_trans_yr6_rt "% of studs. w/out fed ln at inst & trans to 4-yr & stat.= unk. w/in 6 yrs"
lab var noloan_unkn_4yr_trans_yr8_rt "% of studs. w/out fed ln at inst & trans to 4-yr & stat.= unk. w/in 8 yrs"
lab var lo_inc_enrl_4yr_trans_yr2_rt "% of low-income (<$30k) studs. who trans. to 4-yr & still enr w/in 2 yrs "
lab var hi_inc_enrl_2yr_trans_yr2_rt "% of high-income (>$75k) studs. who trans. to 2-yr & still enr w/in 2 yrs"
lab var hi_inc_enrl_2yr_trans_yr3_rt "% of high-income (>$75k) studs. who trans. to 2-yr & still enr w/in 3 yrs"
lab var hi_inc_enrl_2yr_trans_yr4_rt "% of high-income (>$75k) studs. who trans. to 2-yr & still enr w/in 4 yrs"
lab var hi_inc_enrl_2yr_trans_yr6_rt "% of high-income (>$75k) studs. who trans. to 2-yr & still enr w/in 6 yrs"
lab var hi_inc_enrl_2yr_trans_yr8_rt "% of high-income (>$75k) studs. who trans. to 2-yr & still enr w/in 8 yrs"
lab var hi_inc_enrl_4yr_trans_yr3_rt "% of high-income (>$75k) studs. who trans. to 4-yr & still enr w/in 3 yrs"
lab var hi_inc_enrl_4yr_trans_yr4_rt "% of high-income (>$75k) studs. who trans. to 4-yr & still enr w/in 4 yrs"
lab var hi_inc_enrl_4yr_trans_yr6_rt "% of high-income (>$75k) studs. who trans. to 4-yr & still enr w/in 6 yrs"
lab var hi_inc_enrl_4yr_trans_yr8_rt "% of high-income (>$75k) studs. who trans. to 4-yr & still enr w/in 8 yrs"
lab var loan_enrl_4yr_trans_yr2_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & still enr w/in 2 yrs "
lab var hi_inc_comp_2yr_trans_yr2_rt "% of high-income (>$75k) studs. who trans. to 2-yr & completed w/in 2 yrs"
lab var hi_inc_comp_2yr_trans_yr3_rt "% of high-income (>$75k) studs. who trans. to 2-yr & completed w/in 3 yrs"
lab var hi_inc_comp_2yr_trans_yr4_rt "% of high-income (>$75k) studs. who trans. to 2-yr & completed w/in 4 yrs"
lab var hi_inc_comp_2yr_trans_yr6_rt "% of high-income (>$75k) studs. who trans. to 2-yr & completed w/in 6 yrs"
lab var hi_inc_comp_2yr_trans_yr8_rt "% of high-income (>$75k) studs. who trans. to 2-yr & completed w/in 8 yrs"
lab var hi_inc_wdraw_2yr_trans_yr2_rt "% of high-income (>$75k) studs. who trans. to 2-yr & withdrew w/in 2 yrs "
lab var hi_inc_comp_4yr_trans_yr2_rt "% of high-income (>$75k) studs. who trans. to 4-yr & completed w/in 2 yrs"
lab var hi_inc_comp_4yr_trans_yr3_rt "% of high-income (>$75k) studs. who trans. to 4-yr & completed w/in 3 yrs"
lab var hi_inc_comp_4yr_trans_yr4_rt "% of high-income (>$75k) studs. who trans. to 4-yr & completed w/in 4 yrs"
lab var hi_inc_comp_4yr_trans_yr6_rt "% of high-income (>$75k) studs. who trans. to 4-yr & completed w/in 6 yrs"
lab var hi_inc_comp_4yr_trans_yr8_rt "% of high-income (>$75k) studs. who trans. to 4-yr & completed w/in 8 yrs"
lab var hi_inc_wdraw_4yr_trans_yr2_rt "% of high-income (>$75k) studs. who trans. to 4-yr & withdrew w/in 2 yrs "
lab var lo_inc_enrl_orig_yr3_rt "% of low-income (<$30k) studs. who still enr at original inst. w/in 3 yrs"
lab var lo_inc_enrl_orig_yr4_rt "% of low-income (<$30k) studs. who still enr at original inst. w/in 4 yrs"
lab var lo_inc_enrl_orig_yr6_rt "% of low-income (<$30k) studs. who still enr at original inst. w/in 6 yrs"
lab var lo_inc_enrl_orig_yr8_rt "% of low-income (<$30k) studs. who still enr at original inst. w/in 8 yrs"
lab var lo_inc_comp_orig_yr2_rt "% of low-income (<$30k) studs. who completed w/in 2 yrs at original inst."
lab var lo_inc_comp_orig_yr3_rt "% of low-income (<$30k) studs. who completed w/in 3 yrs at original inst."
lab var lo_inc_comp_orig_yr4_rt "% of low-income (<$30k) studs. who completed w/in 4 yrs at original inst."
lab var lo_inc_comp_orig_yr6_rt "% of low-income (<$30k) studs. who completed w/in 6 yrs at original inst."
lab var lo_inc_comp_orig_yr8_rt "% of low-income (<$30k) studs. who completed w/in 8 yrs at original inst."
lab var hi_inc_wdraw_orig_yr2_rt "% of high-income (>$75k) studs. withdrawn from original inst. w/in 2 yrs "
lab var cip24cert2 "Cert: >1 <2 yrs in Liberal Arts & Sciences, General Studies & Humanities."
lab var cip15cert2 "Cert: >1 <2 yrs in Engineering Technologies & Engineering-Related Fields."
lab var cip24cert4 "Award >2 <4 yrs in Liberal Arts & Sciences, General Studies & Humanities."
lab var loan_death_yr2_rt "% of studs. recvd. fed ln at inst & who died w/in 2 yrs at original inst."
lab var loan_death_yr3_rt "% of studs. recvd. fed ln at inst & who died w/in 3 yrs at original inst."
lab var loan_death_yr4_rt "% of studs. recvd. fed ln at inst & who died w/in 4 yrs at original inst."
lab var loan_death_yr6_rt "% of studs. recvd. fed ln at inst & who died w/in 6 yrs at original inst."
lab var loan_death_yr8_rt "% of studs. recvd. fed ln at inst & who died w/in 8 yrs at original inst."
lab var cip15cert4 "Award >2 <4 yrs in Engineering Technologies & Engineering-Related Fields."
lab var pcip43 "%age of degrees awarded in Homel& Security, Law Enforcement, Firefighting"
lab var not1stgen_wdraw_2yr_trans_yr3_rt "% of not-first-generation studs. who trans. to 2-yr & withdrew w/in 3 yrs"
lab var not1stgen_wdraw_2yr_trans_yr4_rt "% of not-first-generation studs. who trans. to 2-yr & withdrew w/in 4 yrs"
lab var not1stgen_wdraw_2yr_trans_yr6_rt "% of not-first-generation studs. who trans. to 2-yr & withdrew w/in 6 yrs"
lab var not1stgen_wdraw_2yr_trans_yr8_rt "% of not-first-generation studs. who trans. to 2-yr & withdrew w/in 8 yrs"
lab var not1stgen_wdraw_4yr_trans_yr3_rt "% of not-first-generation studs. who trans. to 4-yr & withdrew w/in 3 yrs"
lab var not1stgen_wdraw_4yr_trans_yr4_rt "% of not-first-generation studs. who trans. to 4-yr & withdrew w/in 4 yrs"
lab var not1stgen_wdraw_4yr_trans_yr6_rt "% of not-first-generation studs. who trans. to 4-yr & withdrew w/in 6 yrs"
lab var not1stgen_wdraw_4yr_trans_yr8_rt "% of not-first-generation studs. who trans. to 4-yr & withdrew w/in 8 yrs"
lab var pct_ba "% of the pop. from studs.' zip codes with a bach. over the age 25, Census"
lab var cip10cert1 "Cert: <1yr in Communications Technologies/Technicians & Support Services."
lab var num44_priv "Number of Title IV studs., $75,001-$110,000 family income (private inst.)"
lab var ugds_aian "Total share of enrollment of UG degree-seeking studs. who are Am In/Al Na"
lab var ugds_aianold "Total share of enrollment of UG degree-seeking studs. who are Am In/Al Na"
lab var not1stgen_wdraw_orig_yr3_rt "% of not-first-generation studs. withdrawn from original inst. w/in 3 yrs"
lab var not1stgen_wdraw_orig_yr4_rt "% of not-first-generation studs. withdrawn from original inst. w/in 4 yrs"
lab var not1stgen_wdraw_orig_yr6_rt "% of not-first-generation studs. withdrawn from original inst. w/in 6 yrs"
lab var not1stgen_wdraw_orig_yr8_rt "% of not-first-generation studs. withdrawn from original inst. w/in 8 yrs"
lab var firstgen_rpy_1yr_n "Number of studs. in the 1-year repay rate of first-generation studs. chrt"
lab var firstgen_rpy_3yr_n "Number of studs. in the 3-year repay rate of first-generation studs. chrt"
lab var firstgen_rpy_5yr_n "Number of studs. in the 5-year repay rate of first-generation studs. chrt"
lab var firstgen_rpy_7yr_n "Number of studs. in the 7-year repay rate of first-generation studs. chrt"
lab var pct_asian "% of the population from studs.' zip codes that is Asian, via Census data"
lab var pct_black "% of the population from studs.' zip codes that is Black, via Census data"
lab var pct_white "% of the population from studs.' zip codes that is White, via Census data"
lab var pcip09 "%age of degrees awarded in Communication, Journalism, & Related Programs."
lab var pcip16 "%age of degrees awarded in Foreign Languages, Literatures, & Linguistics."
lab var pcip31 "%age of degrees awarded in Parks, Recreation, Leisure, & Fitness Studies."
lab var npt44_prog "Average net price for $75,001-$110,000 family income (program-year inst.)"
lab var dep_inc_pct_h2 "Dependent studs. with family incomes between $110,001+ in nominal dollars"
lab var c150_4_2mor "Comp. rate: 1st, full-time studs. at 4-yr inst. (150% exp. tm), 2+ races"
lab var c150_l4_hisp "Comp. rate: 1st, full-time studs. at <4yr inst. (150% exp. tm), Hispanic"
lab var c150_l4_hispold "Comp. rate: 1st, full-time studs. at <4yr inst. (150% exp. tm), Hispanic"
lab var lo_inc_enrl_2yr_trans_yr2_rt "% of low-income (<$30k) studs. who trans. to 2-yr & still enr w/in 2 yrs"
lab var lo_inc_enrl_2yr_trans_yr3_rt "% of low-income (<$30k) studs. who trans. to 2-yr & still enr w/in 3 yrs"
lab var lo_inc_enrl_2yr_trans_yr4_rt "% of low-income (<$30k) studs. who trans. to 2-yr & still enr w/in 4 yrs"
lab var lo_inc_enrl_2yr_trans_yr6_rt "% of low-income (<$30k) studs. who trans. to 2-yr & still enr w/in 6 yrs"
lab var lo_inc_enrl_2yr_trans_yr8_rt "% of low-income (<$30k) studs. who trans. to 2-yr & still enr w/in 8 yrs"
lab var lo_inc_enrl_4yr_trans_yr3_rt "% of low-income (<$30k) studs. who trans. to 4-yr & still enr w/in 3 yrs"
lab var lo_inc_enrl_4yr_trans_yr4_rt "% of low-income (<$30k) studs. who trans. to 4-yr & still enr w/in 4 yrs"
lab var lo_inc_enrl_4yr_trans_yr6_rt "% of low-income (<$30k) studs. who trans. to 4-yr & still enr w/in 6 yrs"
lab var lo_inc_enrl_4yr_trans_yr8_rt "% of low-income (<$30k) studs. who trans. to 4-yr & still enr w/in 8 yrs"
lab var loan_enrl_2yr_trans_yr2_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & still enr w/in 2 yrs"
lab var loan_enrl_2yr_trans_yr3_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & still enr w/in 3 yrs"
lab var loan_enrl_2yr_trans_yr4_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & still enr w/in 4 yrs"
lab var loan_enrl_2yr_trans_yr6_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & still enr w/in 6 yrs"
lab var loan_enrl_2yr_trans_yr8_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & still enr w/in 8 yrs"
lab var loan_enrl_4yr_trans_yr3_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & still enr w/in 3 yrs"
lab var loan_enrl_4yr_trans_yr4_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & still enr w/in 4 yrs"
lab var loan_enrl_4yr_trans_yr6_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & still enr w/in 6 yrs"
lab var loan_enrl_4yr_trans_yr8_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & still enr w/in 8 yrs"
lab var lo_inc_comp_2yr_trans_yr2_rt "% of low-income (<$30k) studs. who trans. to 2-yr & completed w/in 2 yrs"
lab var lo_inc_comp_2yr_trans_yr3_rt "% of low-income (<$30k) studs. who trans. to 2-yr & completed w/in 3 yrs"
lab var lo_inc_comp_2yr_trans_yr4_rt "% of low-income (<$30k) studs. who trans. to 2-yr & completed w/in 4 yrs"
lab var lo_inc_comp_2yr_trans_yr6_rt "% of low-income (<$30k) studs. who trans. to 2-yr & completed w/in 6 yrs"
lab var lo_inc_comp_2yr_trans_yr8_rt "% of low-income (<$30k) studs. who trans. to 2-yr & completed w/in 8 yrs"
lab var lo_inc_wdraw_2yr_trans_yr2_rt "% of low-income (<$30k) studs. who trans. to 2-yr & withdrew w/in 2 yrs "
lab var lo_inc_comp_4yr_trans_yr2_rt "% of low-income (<$30k) studs. who trans. to 4-yr & completed w/in 2 yrs"
lab var lo_inc_comp_4yr_trans_yr3_rt "% of low-income (<$30k) studs. who trans. to 4-yr & completed w/in 3 yrs"
lab var lo_inc_comp_4yr_trans_yr4_rt "% of low-income (<$30k) studs. who trans. to 4-yr & completed w/in 4 yrs"
lab var lo_inc_comp_4yr_trans_yr6_rt "% of low-income (<$30k) studs. who trans. to 4-yr & completed w/in 6 yrs"
lab var lo_inc_comp_4yr_trans_yr8_rt "% of low-income (<$30k) studs. who trans. to 4-yr & completed w/in 8 yrs"
lab var lo_inc_wdraw_4yr_trans_yr2_rt "% of low-income (<$30k) studs. who trans. to 4-yr & withdrew w/in 2 yrs "
lab var hi_inc_wdraw_2yr_trans_yr3_rt "% of high-income (>$75k) studs. who trans. to 2-yr & withdrew w/in 3 yrs"
lab var hi_inc_wdraw_2yr_trans_yr4_rt "% of high-income (>$75k) studs. who trans. to 2-yr & withdrew w/in 4 yrs"
lab var hi_inc_wdraw_2yr_trans_yr6_rt "% of high-income (>$75k) studs. who trans. to 2-yr & withdrew w/in 6 yrs"
lab var hi_inc_wdraw_2yr_trans_yr8_rt "% of high-income (>$75k) studs. who trans. to 2-yr & withdrew w/in 8 yrs"
lab var hi_inc_wdraw_4yr_trans_yr3_rt "% of high-income (>$75k) studs. who trans. to 4-yr & withdrew w/in 3 yrs"
lab var hi_inc_wdraw_4yr_trans_yr4_rt "% of high-income (>$75k) studs. who trans. to 4-yr & withdrew w/in 4 yrs"
lab var hi_inc_wdraw_4yr_trans_yr6_rt "% of high-income (>$75k) studs. who trans. to 4-yr & withdrew w/in 6 yrs"
lab var hi_inc_wdraw_4yr_trans_yr8_rt "% of high-income (>$75k) studs. who trans. to 4-yr & withdrew w/in 8 yrs"
lab var loan_comp_2yr_trans_yr2_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & completed w/in 2 yrs"
lab var loan_comp_2yr_trans_yr3_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & completed w/in 3 yrs"
lab var loan_comp_2yr_trans_yr4_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & completed w/in 4 yrs"
lab var loan_comp_2yr_trans_yr6_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & completed w/in 6 yrs"
lab var loan_comp_2yr_trans_yr8_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & completed w/in 8 yrs"
lab var loan_wdraw_2yr_trans_yr2_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & withdrew w/in 2 yrs "
lab var loan_comp_4yr_trans_yr3_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & completed w/in 3 yrs"
lab var loan_comp_4yr_trans_yr4_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & completed w/in 4 yrs"
lab var loan_comp_4yr_trans_yr6_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & completed w/in 6 yrs"
lab var loan_comp_4yr_trans_yr8_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & completed w/in 8 yrs"
lab var loan_wdraw_4yr_trans_yr2_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & withdrew w/in 2 yrs "
lab var lo_inc_wdraw_orig_yr2_rt "% of low-income (<$30k) studs. withdrawn from original inst. w/in 2 yrs "
lab var noloan_death_yr2_rt "% of studs. w/out fed ln at inst & who died w/in 2 yrs at original inst."
lab var noloan_death_yr3_rt "% of studs. w/out fed ln at inst & who died w/in 3 yrs at original inst."
lab var noloan_death_yr4_rt "% of studs. w/out fed ln at inst & who died w/in 4 yrs at original inst."
lab var noloan_death_yr6_rt "% of studs. w/out fed ln at inst & who died w/in 6 yrs at original inst."
lab var noloan_death_yr8_rt "% of studs. w/out fed ln at inst & who died w/in 8 yrs at original inst."
lab var hi_inc_wdraw_orig_yr3_rt "% of high-income (>$75k) studs. withdrawn from original inst. w/in 3 yrs"
lab var hi_inc_wdraw_orig_yr4_rt "% of high-income (>$75k) studs. withdrawn from original inst. w/in 4 yrs"
lab var hi_inc_wdraw_orig_yr6_rt "% of high-income (>$75k) studs. withdrawn from original inst. w/in 6 yrs"
lab var hi_inc_wdraw_orig_yr8_rt "% of high-income (>$75k) studs. withdrawn from original inst. w/in 8 yrs"
lab var firstgen_unkn_2yr_trans_yr2_rt "% of first-generation studs. who trans. to 2-yr & stat.= unk. w/in 2 yrs"
lab var firstgen_unkn_2yr_trans_yr3_rt "% of first-generation studs. who trans. to 2-yr & stat.= unk. w/in 3 yrs"
lab var firstgen_unkn_2yr_trans_yr4_rt "% of first-generation studs. who trans. to 2-yr & stat.= unk. w/in 4 yrs"
lab var firstgen_unkn_2yr_trans_yr6_rt "% of first-generation studs. who trans. to 2-yr & stat.= unk. w/in 6 yrs"
lab var firstgen_unkn_2yr_trans_yr8_rt "% of first-generation studs. who trans. to 2-yr & stat.= unk. w/in 8 yrs"
lab var firstgen_unkn_4yr_trans_yr2_rt "% of first-generation studs. who trans. to 4-yr & stat.= unk. w/in 2 yrs"
lab var firstgen_unkn_4yr_trans_yr3_rt "% of first-generation studs. who trans. to 4-yr & stat.= unk. w/in 3 yrs"
lab var firstgen_unkn_4yr_trans_yr4_rt "% of first-generation studs. who trans. to 4-yr & stat.= unk. w/in 4 yrs"
lab var firstgen_unkn_4yr_trans_yr6_rt "% of first-generation studs. who trans. to 4-yr & stat.= unk. w/in 6 yrs"
lab var firstgen_unkn_4yr_trans_yr8_rt "% of first-generation studs. who trans. to 4-yr & stat.= unk. w/in 8 yrs"
lab var ugds_nhpi "Total share of enr. UG degree-seeking studs. who are Nat. Haw./Pac. Isl."
lab var firstgen_enrl_orig_yr2_rt "% of first-generation studs. who still enr at original inst. w/in 2 yrs "
lab var npt4_prog "Average net price for the largest program at inst for program-year inst."
lab var num41_prog "Number of Title IV studs., $0-$30,000 family income (program-year inst.)"
lab var num44_pub "Number of Title IV studs., $75,001-$110,000 family income (public inst.)"
lab var npt42_prog "Average net price for $30,001-$48,000 family income (program-year inst.)"
lab var npt4_3075_prog "Average net price for $30,001-$75,000 family income (program-year inst.)"
lab var npt43_prog "Average net price for $48,001-$75,000 family income (program-year inst.)"
lab var mn_earn_wne_male0_p10 "Mean ear. of female studs. working & not enr 10 yrs after entry"
lab var notfirstgen_debt_n "The number of studs. in the median debt not-first-generation studs. chrt"
lab var cip11bachl "Bachelor's degree in Computer & Information Sciences & Support Services."
lab var cip44bachl "Bachelor's degree in Public Administration & Social Service Professions."
lab var noloan_enrl_2yr_trans_yr2_rt "% of studs. w/out fed ln at inst & trans to 2-yr & still enr w/in 2 yrs"
lab var noloan_enrl_2yr_trans_yr3_rt "% of studs. w/out fed ln at inst & trans to 2-yr & still enr w/in 3 yrs"
lab var noloan_enrl_2yr_trans_yr4_rt "% of studs. w/out fed ln at inst & trans to 2-yr & still enr w/in 4 yrs"
lab var noloan_enrl_2yr_trans_yr6_rt "% of studs. w/out fed ln at inst & trans to 2-yr & still enr w/in 6 yrs"
lab var noloan_enrl_2yr_trans_yr8_rt "% of studs. w/out fed ln at inst & trans to 2-yr & still enr w/in 8 yrs"
lab var noloan_enrl_4yr_trans_yr3_rt "% of studs. w/out fed ln at inst & trans to 4-yr & still enr w/in 3 yrs"
lab var noloan_enrl_4yr_trans_yr4_rt "% of studs. w/out fed ln at inst & trans to 4-yr & still enr w/in 4 yrs"
lab var noloan_enrl_4yr_trans_yr6_rt "% of studs. w/out fed ln at inst & trans to 4-yr & still enr w/in 6 yrs"
lab var noloan_enrl_4yr_trans_yr8_rt "% of studs. w/out fed ln at inst & trans to 4-yr & still enr w/in 8 yrs"
lab var noloan_comp_2yr_trans_yr2_rt "% of studs. w/out fed ln at inst & trans to 2-yr & completed w/in 2 yrs"
lab var noloan_comp_2yr_trans_yr3_rt "% of studs. w/out fed ln at inst & trans to 2-yr & completed w/in 3 yrs"
lab var noloan_comp_2yr_trans_yr4_rt "% of studs. w/out fed ln at inst & trans to 2-yr & completed w/in 4 yrs"
lab var noloan_comp_2yr_trans_yr6_rt "% of studs. w/out fed ln at inst & trans to 2-yr & completed w/in 6 yrs"
lab var noloan_comp_2yr_trans_yr8_rt "% of studs. w/out fed ln at inst & trans to 2-yr & completed w/in 8 yrs"
lab var noloan_wdraw_2yr_trans_yr2_rt "% of studs. w/out fed ln at inst & trans to 2-yr & withdrew w/in 2 yrs "
lab var noloan_comp_4yr_trans_yr2_rt "% of studs. w/out fed ln at inst & trans to 4-yr & completed w/in 2 yrs"
lab var noloan_comp_4yr_trans_yr3_rt "% of studs. w/out fed ln at inst & trans to 4-yr & completed w/in 3 yrs"
lab var noloan_comp_4yr_trans_yr4_rt "% of studs. w/out fed ln at inst & trans to 4-yr & completed w/in 4 yrs"
lab var noloan_comp_4yr_trans_yr6_rt "% of studs. w/out fed ln at inst & trans to 4-yr & completed w/in 6 yrs"
lab var noloan_comp_4yr_trans_yr8_rt "% of studs. w/out fed ln at inst & trans to 4-yr & completed w/in 8 yrs"
lab var noloan_wdraw_4yr_trans_yr2_rt "% of studs. w/out fed ln at inst & trans to 4-yr & withdrew w/in 2 yrs "
lab var lo_inc_wdraw_2yr_trans_yr3_rt "% of low-income (<$30k) studs. who trans. to 2-yr & withdrew w/in 3 yrs"
lab var lo_inc_wdraw_2yr_trans_yr4_rt "% of low-income (<$30k) studs. who trans. to 2-yr & withdrew w/in 4 yrs"
lab var lo_inc_wdraw_2yr_trans_yr6_rt "% of low-income (<$30k) studs. who trans. to 2-yr & withdrew w/in 6 yrs"
lab var lo_inc_wdraw_2yr_trans_yr8_rt "% of low-income (<$30k) studs. who trans. to 2-yr & withdrew w/in 8 yrs"
lab var lo_inc_wdraw_4yr_trans_yr3_rt "% of low-income (<$30k) studs. who trans. to 4-yr & withdrew w/in 3 yrs"
lab var lo_inc_wdraw_4yr_trans_yr4_rt "% of low-income (<$30k) studs. who trans. to 4-yr & withdrew w/in 4 yrs"
lab var lo_inc_wdraw_4yr_trans_yr6_rt "% of low-income (<$30k) studs. who trans. to 4-yr & withdrew w/in 6 yrs"
lab var lo_inc_wdraw_4yr_trans_yr8_rt "% of low-income (<$30k) studs. who trans. to 4-yr & withdrew w/in 8 yrs"
lab var loan_wdraw_2yr_trans_yr3_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & withdrew w/in 3 yrs"
lab var loan_wdraw_2yr_trans_yr4_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & withdrew w/in 4 yrs"
lab var loan_wdraw_2yr_trans_yr6_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & withdrew w/in 6 yrs"
lab var loan_wdraw_2yr_trans_yr8_rt "% of studs. recvd. fed ln at inst & trans to 2-yr & withdrew w/in 8 yrs"
lab var loan_wdraw_4yr_trans_yr3_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & withdrew w/in 3 yrs"
lab var loan_wdraw_4yr_trans_yr4_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & withdrew w/in 4 yrs"
lab var loan_wdraw_4yr_trans_yr6_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & withdrew w/in 6 yrs"
lab var loan_wdraw_4yr_trans_yr8_rt "% of studs. recvd. fed ln at inst & trans to 4-yr & withdrew w/in 8 yrs"
lab var lo_inc_wdraw_orig_yr3_rt "% of low-income (<$30k) studs. withdrawn from original inst. w/in 3 yrs"
lab var lo_inc_wdraw_orig_yr4_rt "% of low-income (<$30k) studs. withdrawn from original inst. w/in 4 yrs"
lab var lo_inc_wdraw_orig_yr6_rt "% of low-income (<$30k) studs. withdrawn from original inst. w/in 6 yrs"
lab var lo_inc_wdraw_orig_yr8_rt "% of low-income (<$30k) studs. withdrawn from original inst. w/in 8 yrs"
lab var firstgen_enrl_4yr_trans_yr2_rt "% of first-generation studs. who trans. to 4-yr & still enr w/in 2 yrs "
lab var hi_inc_debt_n "The number of studs. in the median debt high-income (>$75k) studs. chrt"
lab var firstgen_enrl_orig_yr3_rt "% of first-generation studs. who still enr at original inst. w/in 3 yrs"
lab var firstgen_enrl_orig_yr4_rt "% of first-generation studs. who still enr at original inst. w/in 4 yrs"
lab var firstgen_enrl_orig_yr6_rt "% of first-generation studs. who still enr at original inst. w/in 6 yrs"
lab var firstgen_enrl_orig_yr8_rt "% of first-generation studs. who still enr at original inst. w/in 8 yrs"
lab var firstgen_comp_orig_yr2_rt "% of first-generation studs. who completed w/in 2 yrs at original inst."
lab var firstgen_comp_orig_yr3_rt "% of first-generation studs. who completed w/in 3 yrs at original inst."
lab var firstgen_comp_orig_yr4_rt "% of first-generation studs. who completed w/in 4 yrs at original inst."
lab var firstgen_comp_orig_yr6_rt "% of first-generation studs. who completed w/in 6 yrs at original inst."
lab var firstgen_comp_orig_yr8_rt "% of first-generation studs. who completed w/in 8 yrs at original inst."
lab var num45_prog "Number of Title IV studs., $110,000+ family income (program-year inst.)"
lab var num42_pub "Number of Title IV studs., $30,001-$48,000 family income (public inst.)"
lab var num43_pub "Number of Title IV studs., $48,001-$75,000 family income (public inst.)"
lab var mn_earn_wne_male0_p6 "Mean ear. of female studs. working & not enr 6 yrs after entry"
lab var cip11assoc "Associate degree in Computer & Information Sciences & Support Services."
lab var cip44assoc "Associate degree in Public Administration & Social Service Professions."
lab var c150_4_pooled "Comp. rate: 1st, full-time studs. at 4-yr inst. (150% exp. tm), pooled"
lab var c150_4_unkn "Comp. rate: 1st, full-time studs. at 4-yr (150% exp. tm), race is unk."
lab var noloan_wdraw_2yr_trans_yr3_rt "% of studs. w/out fed ln at inst & trans to 2-yr & withdrew w/in 3 yrs"
lab var noloan_wdraw_2yr_trans_yr4_rt "% of studs. w/out fed ln at inst & trans to 2-yr & withdrew w/in 4 yrs"
lab var noloan_wdraw_2yr_trans_yr6_rt "% of studs. w/out fed ln at inst & trans to 2-yr & withdrew w/in 6 yrs"
lab var noloan_wdraw_2yr_trans_yr8_rt "% of studs. w/out fed ln at inst & trans to 2-yr & withdrew w/in 8 yrs"
lab var noloan_wdraw_4yr_trans_yr3_rt "% of studs. w/out fed ln at inst & trans to 4-yr & withdrew w/in 3 yrs"
lab var noloan_wdraw_4yr_trans_yr4_rt "% of studs. w/out fed ln at inst & trans to 4-yr & withdrew w/in 4 yrs"
lab var noloan_wdraw_4yr_trans_yr6_rt "% of studs. w/out fed ln at inst & trans to 4-yr & withdrew w/in 6 yrs"
lab var noloan_wdraw_4yr_trans_yr8_rt "% of studs. w/out fed ln at inst & trans to 4-yr & withdrew w/in 8 yrs"
lab var cip11cert2 "Cert: >1 <2 yrs in Computer & Information Sciences & Support Services."
lab var cip44cert2 "Cert: >1 <2 yrs in Public Administration & Social Service Professions."
lab var cip11cert4 "Award >2 <4 yrs in Computer & Information Sciences & Support Services."
lab var firstgen_enrl_2yr_trans_yr2_rt "% of first-generation studs. who trans. to 2-yr & still enr w/in 2 yrs"
lab var firstgen_enrl_2yr_trans_yr3_rt "% of first-generation studs. who trans. to 2-yr & still enr w/in 3 yrs"
lab var firstgen_enrl_2yr_trans_yr4_rt "% of first-generation studs. who trans. to 2-yr & still enr w/in 4 yrs"
lab var firstgen_enrl_2yr_trans_yr6_rt "% of first-generation studs. who trans. to 2-yr & still enr w/in 6 yrs"
lab var firstgen_enrl_2yr_trans_yr8_rt "% of first-generation studs. who trans. to 2-yr & still enr w/in 8 yrs"
lab var firstgen_enrl_4yr_trans_yr3_rt "% of first-generation studs. who trans. to 4-yr & still enr w/in 3 yrs"
lab var firstgen_enrl_4yr_trans_yr4_rt "% of first-generation studs. who trans. to 4-yr & still enr w/in 4 yrs"
lab var firstgen_enrl_4yr_trans_yr6_rt "% of first-generation studs. who trans. to 4-yr & still enr w/in 6 yrs"
lab var firstgen_enrl_4yr_trans_yr8_rt "% of first-generation studs. who trans. to 4-yr & still enr w/in 8 yrs"
lab var cip44cert4 "Award >2 <4 yrs in Public Administration & Social Service Professions."
lab var lo_inc_debt_n "The number of studs. in the median debt low-income (<$30k) studs. chrt"
lab var npt4_other "Avg net price largest prog at inst for schools on 'other' AY calendars"
lab var firstgen_comp_2yr_trans_yr2_rt "% of first-generation studs. who trans. to 2-yr & completed w/in 2 yrs"
lab var firstgen_comp_2yr_trans_yr3_rt "% of first-generation studs. who trans. to 2-yr & completed w/in 3 yrs"
lab var firstgen_comp_2yr_trans_yr4_rt "% of first-generation studs. who trans. to 2-yr & completed w/in 4 yrs"
lab var firstgen_comp_2yr_trans_yr6_rt "% of first-generation studs. who trans. to 2-yr & completed w/in 6 yrs"
lab var firstgen_comp_2yr_trans_yr8_rt "% of first-generation studs. who trans. to 2-yr & completed w/in 8 yrs"
lab var firstgen_wdraw_2yr_trans_yr2_rt "% of first-generation studs. who trans. to 2-yr & withdrew w/in 2 yrs "
lab var firstgen_comp_4yr_trans_yr2_rt "% of first-generation studs. who trans. to 4-yr & completed w/in 2 yrs"
lab var firstgen_comp_4yr_trans_yr3_rt "% of first-generation studs. who trans. to 4-yr & completed w/in 3 yrs"
lab var firstgen_comp_4yr_trans_yr4_rt "% of first-generation studs. who trans. to 4-yr & completed w/in 4 yrs"
lab var firstgen_comp_4yr_trans_yr6_rt "% of first-generation studs. who trans. to 4-yr & completed w/in 6 yrs"
lab var firstgen_comp_4yr_trans_yr8_rt "% of first-generation studs. who trans. to 4-yr & completed w/in 8 yrs"
lab var firstgen_wdraw_4yr_trans_yr2_rt "% of first-generation studs. who trans. to 4-yr & withdrew w/in 2 yrs "
lab var cip01cert1 "Cert: <1yr in Agriculture, Agriculture Operations, & Related Sciences."
lab var firstgen_wdraw_orig_yr2_rt "% of first-generation studs. withdrawn from original inst. w/in 2 yrs "
lab var not1stgen_death_yr2_rt "% of not-first-generation studs. who died w/in 2 yrs at original inst."
lab var not1stgen_death_yr3_rt "% of not-first-generation studs. who died w/in 3 yrs at original inst."
lab var not1stgen_death_yr4_rt "% of not-first-generation studs. who died w/in 4 yrs at original inst."
lab var not1stgen_death_yr6_rt "% of not-first-generation studs. who died w/in 6 yrs at original inst."
lab var not1stgen_death_yr8_rt "% of not-first-generation studs. who died w/in 8 yrs at original inst."
lab var pell_rpy_7yr_rt "Seven-year repay rate for studs. recvd. Pell grant while at the school"
lab var pell_rpy_3yr_rt "Three-year repay rate for studs. recvd. Pell grant while at the school"
lab var ugds_hisp "Total share of enrollment of UG degree-seeking studs. who are Hispanic"
lab var ugds_hispold "Total share of enrollment of UG degree-seeking studs. who are Hispanic"
lab var pcip47 "%age of degrees awarded in Mechanic & Repair Technologies/Technicians."
lab var notfirstgen_rpy_3yr_rt_supp "3-year repay rate for non-first-generation studs., suppressed for n=30"
lab var mn_earn_wne_male1_p10 "Mean ear. of male studs. working & not enr 10 yrs after entry"
lab var count_wne_indep1_p10 "Number of independent studs. working & not enr 10 yrs after entry"
lab var separ_dt_n "Number of studs. in the chrt for date studs. separated from the school"
lab var hi_inc_death_yr2_rt "% of high-income (>$75k) studs. who died w/in 2 yrs at original inst."
lab var hi_inc_death_yr3_rt "% of high-income (>$75k) studs. who died w/in 3 yrs at original inst."
lab var hi_inc_death_yr4_rt "% of high-income (>$75k) studs. who died w/in 4 yrs at original inst."
lab var hi_inc_death_yr6_rt "% of high-income (>$75k) studs. who died w/in 6 yrs at original inst."
lab var hi_inc_death_yr8_rt "% of high-income (>$75k) studs. who died w/in 8 yrs at original inst."
lab var hi_inc_rpy_3yr_rt_supp "3-year repay rate for high-income (>$75k) studs., suppressed for n=30"
lab var firstgen_wdraw_2yr_trans_yr3_rt "% of first-generation studs. who trans. to 2-yr & withdrew w/in 3 yrs"
lab var firstgen_wdraw_2yr_trans_yr4_rt "% of first-generation studs. who trans. to 2-yr & withdrew w/in 4 yrs"
lab var firstgen_wdraw_2yr_trans_yr6_rt "% of first-generation studs. who trans. to 2-yr & withdrew w/in 6 yrs"
lab var firstgen_wdraw_2yr_trans_yr8_rt "% of first-generation studs. who trans. to 2-yr & withdrew w/in 8 yrs"
lab var firstgen_wdraw_4yr_trans_yr3_rt "% of first-generation studs. who trans. to 4-yr & withdrew w/in 3 yrs"
lab var firstgen_wdraw_4yr_trans_yr4_rt "% of first-generation studs. who trans. to 4-yr & withdrew w/in 4 yrs"
lab var firstgen_wdraw_4yr_trans_yr6_rt "% of first-generation studs. who trans. to 4-yr & withdrew w/in 6 yrs"
lab var firstgen_wdraw_4yr_trans_yr8_rt "% of first-generation studs. who trans. to 4-yr & withdrew w/in 8 yrs"
lab var ind_unkn_orig_yr2_rt "% of independent studs. with status unk. w/in 2 yrs at original inst."
lab var ind_unkn_orig_yr3_rt "% of independent studs. with status unk. w/in 3 yrs at original inst."
lab var ind_unkn_orig_yr4_rt "% of independent studs. with status unk. w/in 4 yrs at original inst."
lab var ind_unkn_orig_yr6_rt "% of independent studs. with status unk. w/in 6 yrs at original inst."