-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolscore_var_lab_writes.do
2994 lines (2991 loc) · 321 KB
/
colscore_var_lab_writes.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
// Auto-written by colscore_build_stata_meta.py
// File written on: 2022-02-18 14:46:24.553193
lab var unitid "Unit ID for inst"
lab var opeid "8-digit OPE ID for inst"
lab var opeid6 "6-digit OPE ID for inst"
lab var instnm "Inst name"
lab var city "City"
lab var stabbr "St. postcode"
lab var zip "ZIP code"
lab var accredagency "Accreditor for inst"
lab var insturl "URL for inst's homepage"
lab var npcurl "URL for inst's net price calculator"
lab var sch_deg "Predominant deg. awarded (recoded 0s and 4s)"
lab var hcm2 "Schools that are on Heightened Cash Monitoring 2 by Department Education"
lab var main "Flag for main campus"
lab var numbranch "Num branch campuses"
lab var preddeg "Predominant udgr. deg. awarded"
lab var highdeg "Highest deg. awarded"
lab var control "Control inst"
lab var st_fips "FIPS code for state"
lab var region "Region (IPEDS)"
lab var locale "Locale inst"
lab var locale2 "Degree urbanization inst"
lab var latitude "Latitude"
lab var longitude "Longitude"
lab var ccbasic "Carnegie Classification -- basic"
lab var ccugprof "Carnegie Classification -- udgr. profile"
lab var ccsizset "Carnegie Classification -- size and setting"
lab var hbcu "Flag for Historically Black Col.&Univ."
lab var pbi "Flag for predominantly black inst"
lab var annhi "Flag for Alaska Natv. Natv. Hawaiian serving inst"
lab var tribal "Flag for tribal col.&univ"
lab var aanapii "Flag for Asian Am. Natv. Am. Pac. Islander-serving inst"
lab var hsi "Flag for Hisp.-serving inst"
lab var nanti "Flag for Natv. Am. non-tribal inst"
lab var menonly "Flag for men-only college"
lab var womenonly "Flag for women-only college"
lab var relaffil "Relig. affl. inst"
lab var adm_rate "Admission rt."
lab var adm_rate_all "Admission rt. for all campuses rolled up to 6-digit OPE ID"
lab var satvr25 "25th pctl. SAT scores at inst (critical reading)"
lab var satvr75 "75th pctl. SAT scores at inst (critical reading)"
lab var satmt25 "25th pctl. SAT scores at inst (math)"
lab var satmt75 "75th pctl. SAT scores at inst (math)"
lab var satwr25 "25th pctl. SAT scores at inst (writing)"
lab var satwr75 "75th pctl. SAT scores at inst (writing)"
lab var satvrmid "Midpt. SAT scores at inst (critical reading)"
lab var satmtmid "Midpt. SAT scores at inst (math)"
lab var satwrmid "Midpt. SAT scores at inst (writing)"
lab var actcm25 "25th pctl. ACT cuml. score"
lab var actcm75 "75th pctl. ACT cuml. score"
lab var acten25 "25th pctl. ACT English score"
lab var acten75 "75th pctl. ACT English score"
lab var actmt25 "25th pctl. ACT math score"
lab var actmt75 "75th pctl. ACT math score"
lab var actwr25 "25th pctl. ACT writing score"
lab var actwr75 "75th pctl. ACT writing score"
lab var actcmmid "Midpt. ACT cuml. score"
lab var actenmid "Midpt. ACT English score"
lab var actmtmid "Midpt. ACT math score"
lab var actwrmid "Midpt. ACT writing score"
lab var sat_avg "Avg. SAT equiv. score stdnts admitted"
lab var sat_avg_all "Avg. SAT equiv. score stdnts admitted for all campuses rolled up to 6-digit OPE ID"
lab var pcip01 "Pctg. deg.s awarded in Agriculture, Agriculture Operations, & Related Sciences."
lab var pcip03 "Pctg. deg.s awarded in Natural Resources & Conservation."
lab var pcip04 "Pctg. deg.s awarded in Architecture & Related Services."
lab var pcip05 "Pctg. deg.s awarded in Area, Ethnic, Cultural, Gender, & Group Studies."
lab var pcip09 "Pctg. deg.s awarded in Communication, Journalism, & Related Programs."
lab var pcip10 "Pctg. deg.s awarded in Communications Technologies/Technicians & Support Services."
lab var pcip11 "Pctg. deg.s awarded in Computer & Information Sciences & Support Services."
lab var pcip12 "Pctg. deg.s awarded in Personal & Culinary Services."
lab var pcip13 "Pctg. deg.s awarded in Education."
lab var pcip14 "Pctg. deg.s awarded in Engineering."
lab var pcip15 "Pctg. deg.s awarded in Engineering Technologies & Engineering-Related Fields."
lab var pcip16 "Pctg. deg.s awarded in Foreign Languages, Literatures, & Linguistics."
lab var pcip19 "Pctg. deg.s awarded in Family & Consumer Sciences/Human Sciences."
lab var pcip22 "Pctg. deg.s awarded in Legal Professions & Studies."
lab var pcip23 "Pctg. deg.s awarded in English Language & Literature/Letters."
lab var pcip24 "Pctg. deg.s awarded in Liberal Arts & Sciences, General Studies & Humanities."
lab var pcip25 "Pctg. deg.s awarded in Library Science."
lab var pcip26 "Pctg. deg.s awarded in Biological & Biomedical Sciences."
lab var pcip27 "Pctg. deg.s awarded in Mathematics & Statistics."
lab var pcip29 "Pctg. deg.s awarded in Military Technologies & Applied Sciences."
lab var pcip30 "Pctg. deg.s awarded in Multi/Interdisciplinary Studies."
lab var pcip31 "Pctg. deg.s awarded in Parks, Recreation, Leisure, & Fitness Studies."
lab var pcip38 "Pctg. deg.s awarded in Philosophy & Religious Studies."
lab var pcip39 "Pctg. deg.s awarded in Theology & Religious Vocations."
lab var pcip40 "Pctg. deg.s awarded in Physical Sciences."
lab var pcip41 "Pctg. deg.s awarded in Science Technologies/Technicians."
lab var pcip42 "Pctg. deg.s awarded in Psychology."
lab var pcip43 "Pctg. deg.s awarded in Homeland Security, Law Enforcement, Firefighting & Related Protective Services."
lab var pcip44 "Pctg. deg.s awarded in Public Administration & Social Service Professions."
lab var pcip45 "Pctg. deg.s awarded in Social Sciences."
lab var pcip46 "Pctg. deg.s awarded in Construction Trades."
lab var pcip47 "Pctg. deg.s awarded in Mechanic & Repair Technologies/Technicians."
lab var pcip48 "Pctg. deg.s awarded in Precision Production."
lab var pcip49 "Pctg. deg.s awarded in Transportation & Materials Moving."
lab var pcip50 "Pctg. deg.s awarded in Visual & Performing Arts."
lab var pcip51 "Pctg. deg.s awarded in Health Professions & Related Programs."
lab var pcip52 "Pctg. deg.s awarded in Business, Management, Marketing, & Related Support Services."
lab var pcip54 "Pctg. deg.s awarded in History."
lab var cip01cert1 "Cert. <1 academic yr in Agriculture, Agriculture Operations, & Related Sciences."
lab var cip01cert2 "Cert. >1<2 academicyrs in Agriculture, Agriculture Operations, & Related Sciences."
lab var cip01assoc "Assoc. deg. in Agriculture, Agriculture Operations, & Related Sciences."
lab var cip01cert4 "Award >2<4 academicyrs in Agriculture, Agriculture Operations, & Related Sciences."
lab var cip01bachl "Bchlr's deg. in Agriculture, Agriculture Operations, & Related Sciences."
lab var cip03cert1 "Cert. <1 academic yr in Natural Resources & Conservation."
lab var cip03cert2 "Cert. >1<2 academicyrs in Natural Resources & Conservation."
lab var cip03assoc "Assoc. deg. in Natural Resources & Conservation."
lab var cip03cert4 "Award >2<4 academicyrs in Natural Resources & Conservation."
lab var cip03bachl "Bchlr's deg. in Natural Resources & Conservation."
lab var cip04cert1 "Cert. <1 academic yr in Architecture & Related Services."
lab var cip04cert2 "Cert. >1<2 academicyrs in Architecture & Related Services."
lab var cip04assoc "Assoc. deg. in Architecture & Related Services."
lab var cip04cert4 "Award >2<4 academicyrs in Architecture & Related Services."
lab var cip04bachl "Bchlr's deg. in Architecture & Related Services."
lab var cip05cert1 "Cert. <1 academic yr in Area, Ethnic, Cultural, Gender, & Group Studies."
lab var cip05cert2 "Cert. >1<2 academicyrs in Area, Ethnic, Cultural, Gender, & Group Studies."
lab var cip05assoc "Assoc. deg. in Area, Ethnic, Cultural, Gender, & Group Studies."
lab var cip05cert4 "Award >2<4 academicyrs in Area, Ethnic, Cultural, Gender, & Group Studies."
lab var cip05bachl "Bchlr's deg. in Area, Ethnic, Cultural, Gender, & Group Studies."
lab var cip09cert1 "Cert. <1 academic yr in Communication, Journalism, & Related Programs."
lab var cip09cert2 "Cert. >1<2 academicyrs in Communication, Journalism, & Related Programs."
lab var cip09assoc "Assoc. deg. in Communication, Journalism, & Related Programs."
lab var cip09cert4 "Award >2<4 academicyrs in Communication, Journalism, & Related Programs."
lab var cip09bachl "Bchlr's deg. in Communication, Journalism, & Related Programs."
lab var cip10cert1 "Cert. <1 academic yr in Communications Technologies/Technicians & Support Services."
lab var cip10cert2 "Cert. >1<2 academicyrs in Communications Technologies/Technicians & Support Services."
lab var cip10assoc "Assoc. deg. in Communications Technologies/Technicians & Support Services."
lab var cip10cert4 "Award >2<4 academicyrs in Communications Technologies/Technicians & Support Services."
lab var cip10bachl "Bchlr's deg. in Communications Technologies/Technicians & Support Services."
lab var cip11cert1 "Cert. <1 academic yr in Computer & Information Sciences & Support Services."
lab var cip11cert2 "Cert. >1<2 academicyrs in Computer & Information Sciences & Support Services."
lab var cip11assoc "Assoc. deg. in Computer & Information Sciences & Support Services."
lab var cip11cert4 "Award >2<4 academicyrs in Computer & Information Sciences & Support Services."
lab var cip11bachl "Bchlr's deg. in Computer & Information Sciences & Support Services."
lab var cip12cert1 "Cert. <1 academic yr in Personal & Culinary Services."
lab var cip12cert2 "Cert. >1<2 academicyrs in Personal & Culinary Services."
lab var cip12assoc "Assoc. deg. in Personal & Culinary Services."
lab var cip12cert4 "Award >2<4 academicyrs in Personal & Culinary Services."
lab var cip12bachl "Bchlr's deg. in Personal & Culinary Services."
lab var cip13cert1 "Cert. <1 academic yr in Education."
lab var cip13cert2 "Cert. >1<2 academicyrs in Education."
lab var cip13assoc "Assoc. deg. in Education."
lab var cip13cert4 "Award >2<4 academicyrs in Education."
lab var cip13bachl "Bchlr's deg. in Education."
lab var cip14cert1 "Cert. <1 academic yr in Engineering."
lab var cip14cert2 "Cert. >1<2 academicyrs in Engineering."
lab var cip14assoc "Assoc. deg. in Engineering."
lab var cip14cert4 "Award >2<4 academicyrs in Engineering."
lab var cip14bachl "Bchlr's deg. in Engineering."
lab var cip15cert1 "Cert. <1 academic yr in Engineering Technologies & Engineering-Related Fields."
lab var cip15cert2 "Cert. >1<2 academicyrs in Engineering Technologies & Engineering-Related Fields."
lab var cip15assoc "Assoc. deg. in Engineering Technologies & Engineering-Related Fields."
lab var cip15cert4 "Award >2<4 academicyrs in Engineering Technologies & Engineering-Related Fields."
lab var cip15bachl "Bchlr's deg. in Engineering Technologies & Engineering-Related Fields."
lab var cip16cert1 "Cert. <1 academic yr in Foreign Languages, Literatures, & Linguistics."
lab var cip16cert2 "Cert. >1<2 academicyrs in Foreign Languages, Literatures, & Linguistics."
lab var cip16assoc "Assoc. deg. in Foreign Languages, Literatures, & Linguistics."
lab var cip16cert4 "Award >2<4 academicyrs in Foreign Languages, Literatures, & Linguistics."
lab var cip16bachl "Bchlr's deg. in Foreign Languages, Literatures, & Linguistics."
lab var cip19cert1 "Cert. <1 academic yr in Family & Consumer Sciences/Human Sciences."
lab var cip19cert2 "Cert. >1<2 academicyrs in Family & Consumer Sciences/Human Sciences."
lab var cip19assoc "Assoc. deg. in Family & Consumer Sciences/Human Sciences."
lab var cip19cert4 "Award >2<4 academicyrs in Family & Consumer Sciences/Human Sciences."
lab var cip19bachl "Bchlr's deg. in Family & Consumer Sciences/Human Sciences."
lab var cip22cert1 "Cert. <1 academic yr in Legal Professions & Studies."
lab var cip22cert2 "Cert. >1<2 academicyrs in Legal Professions & Studies."
lab var cip22assoc "Assoc. deg. in Legal Professions & Studies."
lab var cip22cert4 "Award >2<4 academicyrs in Legal Professions & Studies."
lab var cip22bachl "Bchlr's deg. in Legal Professions & Studies."
lab var cip23cert1 "Cert. <1 academic yr in English Language & Literature/Letters."
lab var cip23cert2 "Cert. >1<2 academicyrs in English Language & Literature/Letters."
lab var cip23assoc "Assoc. deg. in English Language & Literature/Letters."
lab var cip23cert4 "Award >2<4 academicyrs in English Language & Literature/Letters."
lab var cip23bachl "Bchlr's deg. in English Language & Literature/Letters."
lab var cip24cert1 "Cert. <1 academic yr in Liberal Arts & Sciences, General Studies & Humanities."
lab var cip24cert2 "Cert. >1<2 academicyrs in Liberal Arts & Sciences, General Studies & Humanities."
lab var cip24assoc "Assoc. deg. in Liberal Arts & Sciences, General Studies & Humanities."
lab var cip24cert4 "Award >2<4 academicyrs in Liberal Arts & Sciences, General Studies & Humanities."
lab var cip24bachl "Bchlr's deg. in Liberal Arts & Sciences, General Studies & Humanities."
lab var cip25cert1 "Cert. <1 academic yr in Library Science."
lab var cip25cert2 "Cert. >1<2 academicyrs in Library Science."
lab var cip25assoc "Assoc. deg. in Library Science."
lab var cip25cert4 "Award >2<4 academicyrs in Library Science."
lab var cip25bachl "Bchlr's deg. in Library Science."
lab var cip26cert1 "Cert. <1 academic yr in Biological & Biomedical Sciences."
lab var cip26cert2 "Cert. >1<2 academicyrs in Biological & Biomedical Sciences."
lab var cip26assoc "Assoc. deg. in Biological & Biomedical Sciences."
lab var cip26cert4 "Award >2<4 academicyrs in Biological & Biomedical Sciences."
lab var cip26bachl "Bchlr's deg. in Biological & Biomedical Sciences."
lab var cip27cert1 "Cert. <1 academic yr in Mathematics & Statistics."
lab var cip27cert2 "Cert. >1<2 academicyrs in Mathematics & Statistics."
lab var cip27assoc "Assoc. deg. in Mathematics & Statistics."
lab var cip27cert4 "Award >2<4 academicyrs in Mathematics & Statistics."
lab var cip27bachl "Bchlr's deg. in Mathematics & Statistics."
lab var cip29cert1 "Cert. <1 academic yr in Military Technologies & Applied Sciences."
lab var cip29cert2 "Cert. >1<2 academicyrs in Military Technologies & Applied Sciences."
lab var cip29assoc "Assoc. deg. in Military Technologies & Applied Sciences."
lab var cip29cert4 "Award >2<4 academicyrs in Military Technologies & Applied Sciences."
lab var cip29bachl "Bchlr's deg. in Military Technologies & Applied Sciences."
lab var cip30cert1 "Cert. <1 academic yr in Multi/Interdisciplinary Studies."
lab var cip30cert2 "Cert. >1<2 academicyrs in Multi/Interdisciplinary Studies."
lab var cip30assoc "Assoc. deg. in Multi/Interdisciplinary Studies."
lab var cip30cert4 "Award >2<4 academicyrs in Multi/Interdisciplinary Studies."
lab var cip30bachl "Bchlr's deg. in Multi/Interdisciplinary Studies."
lab var cip31cert1 "Cert. <1 academic yr in Parks, Recreation, Leisure, & Fitness Studies."
lab var cip31cert2 "Cert. >1<2 academicyrs in Parks, Recreation, Leisure, & Fitness Studies."
lab var cip31assoc "Assoc. deg. in Parks, Recreation, Leisure, & Fitness Studies."
lab var cip31cert4 "Award >2<4 academicyrs in Parks, Recreation, Leisure, & Fitness Studies."
lab var cip31bachl "Bchlr's deg. in Parks, Recreation, Leisure, & Fitness Studies."
lab var cip38cert1 "Cert. <1 academic yr in Philosophy & Religious Studies."
lab var cip38cert2 "Cert. >1<2 academicyrs in Philosophy & Religious Studies."
lab var cip38assoc "Assoc. deg. in Philosophy & Religious Studies."
lab var cip38cert4 "Award >2<4 academicyrs in Philosophy & Religious Studies."
lab var cip38bachl "Bchlr's deg. in Philosophy & Religious Studies."
lab var cip39cert1 "Cert. <1 academic yr in Theology & Religious Vocations."
lab var cip39cert2 "Cert. >1<2 academicyrs in Theology & Religious Vocations."
lab var cip39assoc "Assoc. deg. in Theology & Religious Vocations."
lab var cip39cert4 "Award >2<4 academicyrs in Theology & Religious Vocations."
lab var cip39bachl "Bchlr's deg. in Theology & Religious Vocations."
lab var cip40cert1 "Cert. <1 academic yr in Physical Sciences."
lab var cip40cert2 "Cert. >1<2 academicyrs in Physical Sciences."
lab var cip40assoc "Assoc. deg. in Physical Sciences."
lab var cip40cert4 "Award >2<4 academicyrs in Physical Sciences."
lab var cip40bachl "Bchlr's deg. in Physical Sciences."
lab var cip41cert1 "Cert. <1 academic yr in Science Technologies/Technicians."
lab var cip41cert2 "Cert. >1<2 academicyrs in Science Technologies/Technicians."
lab var cip41assoc "Assoc. deg. in Science Technologies/Technicians."
lab var cip41cert4 "Award >2<4 academicyrs in Science Technologies/Technicians."
lab var cip41bachl "Bchlr's deg. in Science Technologies/Technicians."
lab var cip42cert1 "Cert. <1 academic yr in Psychology."
lab var cip42cert2 "Cert. >1<2 academicyrs in Psychology."
lab var cip42assoc "Assoc. deg. in Psychology."
lab var cip42cert4 "Award >2<4 academicyrs in Psychology."
lab var cip42bachl "Bchlr's deg. in Psychology."
lab var cip43cert1 "Cert. <1 academic yr in Homeland Security, Law Enforcement, Firefighting & Related Protective Services."
lab var cip43cert2 "Cert. >1<2 academicyrs in Homeland Security, Law Enforcement, Firefighting & Related Protective Services."
lab var cip43assoc "Assoc. deg. in Homeland Security, Law Enforcement, Firefighting & Related Protective Services."
lab var cip43cert4 "Award >2<4 academicyrs in Homeland Security, Law Enforcement, Firefighting & Related Protective Services."
lab var cip43bachl "Bchlr's deg. in Homeland Security, Law Enforcement, Firefighting & Related Protective Services."
lab var cip44cert1 "Cert. <1 academic yr in Public Administration & Social Service Professions."
lab var cip44cert2 "Cert. >1<2 academicyrs in Public Administration & Social Service Professions."
lab var cip44assoc "Assoc. deg. in Public Administration & Social Service Professions."
lab var cip44cert4 "Award >2<4 academicyrs in Public Administration & Social Service Professions."
lab var cip44bachl "Bchlr's deg. in Public Administration & Social Service Professions."
lab var cip45cert1 "Cert. <1 academic yr in Social Sciences."
lab var cip45cert2 "Cert. >1<2 academicyrs in Social Sciences."
lab var cip45assoc "Assoc. deg. in Social Sciences."
lab var cip45cert4 "Award >2<4 academicyrs in Social Sciences."
lab var cip45bachl "Bchlr's deg. in Social Sciences."
lab var cip46cert1 "Cert. <1 academic yr in Construction Trades."
lab var cip46cert2 "Cert. >1<2 academicyrs in Construction Trades."
lab var cip46assoc "Assoc. deg. in Construction Trades."
lab var cip46cert4 "Award >2<4 academicyrs in Construction Trades."
lab var cip46bachl "Bchlr's deg. in Construction Trades."
lab var cip47cert1 "Cert. <1 academic yr in Mechanic & Repair Technologies/Technicians."
lab var cip47cert2 "Cert. >1<2 academicyrs in Mechanic & Repair Technologies/Technicians."
lab var cip47assoc "Assoc. deg. in Mechanic & Repair Technologies/Technicians."
lab var cip47cert4 "Award >2<4 academicyrs in Mechanic & Repair Technologies/Technicians."
lab var cip47bachl "Bchlr's deg. in Mechanic & Repair Technologies/Technicians."
lab var cip48cert1 "Cert. <1 academic yr in Precision Production."
lab var cip48cert2 "Cert. >1<2 academicyrs in Precision Production."
lab var cip48assoc "Assoc. deg. in Precision Production."
lab var cip48cert4 "Award >2<4 academicyrs in Precision Production."
lab var cip48bachl "Bchlr's deg. in Precision Production."
lab var cip49cert1 "Cert. <1 academic yr in Transportation & Materials Moving."
lab var cip49cert2 "Cert. >1<2 academicyrs in Transportation & Materials Moving."
lab var cip49assoc "Assoc. deg. in Transportation & Materials Moving."
lab var cip49cert4 "Award >2<4 academicyrs in Transportation & Materials Moving."
lab var cip49bachl "Bchlr's deg. in Transportation & Materials Moving."
lab var cip50cert1 "Cert. <1 academic yr in Visual & Performing Arts."
lab var cip50cert2 "Cert. >1<2 academicyrs in Visual & Performing Arts."
lab var cip50assoc "Assoc. deg. in Visual & Performing Arts."
lab var cip50cert4 "Award >2<4 academicyrs in Visual & Performing Arts."
lab var cip50bachl "Bchlr's deg. in Visual & Performing Arts."
lab var cip51cert1 "Cert. <1 academic yr in Health Professions & Related Programs."
lab var cip51cert2 "Cert. >1<2 academicyrs in Health Professions & Related Programs."
lab var cip51assoc "Assoc. deg. in Health Professions & Related Programs."
lab var cip51cert4 "Award >2<4 academicyrs in Health Professions & Related Programs."
lab var cip51bachl "Bchlr's deg. in Health Professions & Related Programs."
lab var cip52cert1 "Cert. <1 academic yr in Business, Management, Marketing, & Related Support Services."
lab var cip52cert2 "Cert. >1<2 academicyrs in Business, Management, Marketing, & Related Support Services."
lab var cip52assoc "Assoc. deg. in Business, Management, Marketing, & Related Support Services."
lab var cip52cert4 "Award >2<4 academicyrs in Business, Management, Marketing, & Related Support Services."
lab var cip52bachl "Bchlr's deg. in Business, Management, Marketing, & Related Support Services."
lab var cip54cert1 "Cert. <1 academic yr in History."
lab var cip54cert2 "Cert. >1<2 academicyrs in History."
lab var cip54assoc "Assoc. deg. in History."
lab var cip54cert4 "Award >2<4 academicyrs in History."
lab var cip54bachl "Bchlr's deg. in History."
lab var distanceonly "Flag for distance-education-only education"
lab var ugds "Enrollment udgr. certificate/deg.-seeking stdnts"
lab var ug "Enrollment all udgr. stdnts"
lab var ugds_white "Tot. share enrlmt. udgr. deg.-seeking stdnts who are white"
lab var ugds_black "Tot. share enrlmt. udgr. deg.-seeking stdnts who are black"
lab var ugds_hisp "Tot. share enrlmt. udgr. deg.-seeking stdnts who are Hisp."
lab var ugds_asian "Tot. share enrlmt. udgr. deg.-seeking stdnts who are Asian"
lab var ugds_aian "Tot. share enrlmt. udgr. deg.-seeking stdnts who are Am. Indian/Alaska Natv."
lab var ugds_nhpi "Tot. share enrlmt. udgr. deg.-seeking stdnts who are Natv. Hawaiian/Pac. Islander"
lab var ugds_2mor "Tot. share enrlmt. udgr. deg.-seeking stdnts who are two or more races"
lab var ugds_nra "Tot. share enrlmt. udgr. deg.-seeking stdnts who are non-resident aliens"
lab var ugds_unkn "Tot. share enrlmt. udgr. deg.-seeking stdnts whose race is unkn"
lab var ugds_whitenh "Tot. share enrlmt. udgr. deg.-seeking stdnts who are white non-Hisp."
lab var ugds_blacknh "Tot. share enrlmt. udgr. deg.-seeking stdnts who are black non-Hisp."
lab var ugds_api "Tot. share enrlmt. udgr. deg.-seeking stdnts who are Asian/Pac. Islander"
lab var ugds_aianold "Tot. share enrlmt. udgr. deg.-seeking stdnts who are Am. Indian/Alaska Natv."
lab var ugds_hispold "Tot. share enrlmt. udgr. deg.-seeking stdnts who are Hisp."
lab var ug_nra "Tot. share enrlmt. udgr. stdnts who are non-resident aliens"
lab var ug_unkn "Tot. share enrlmt. udgr. stdnts whose race is unkn"
lab var ug_whitenh "Tot. share enrlmt. udgr. stdnts who are white non-Hisp."
lab var ug_blacknh "Tot. share enrlmt. udgr. stdnts who are black non-Hisp."
lab var ug_api "Tot. share enrlmt. udgr. stdnts who are Asian/Pac. Islander"
lab var ug_aianold "Tot. share enrlmt. udgr. stdnts who are Am. Indian/Alaska Natv."
lab var ug_hispold "Tot. share enrlmt. udgr. stdnts who are Hisp."
lab var pptug_ef "Share udgr., deg.-/certificate-seeking stdnts who are ptTime"
lab var pptug_ef2 "Share udgr., deg.-/certificate-seeking stdnts who are ptTime"
lab var curroper "Flag for currently operating inst, 0=closed, 1=operating"
lab var npt4_pub "Avg. net price for Title IV insts (public insts)"
lab var npt4_priv "Avg. net price for Title IV insts (private for-profit and nonprofit insts)"
lab var npt4_prog "Avg. net price for largest prog at inst for prog-yr insts"
lab var npt4_other "Avg. net price for largest prog at inst for schools on oth academic yr calendars"
lab var npt41_pub "Avg. net price for $0-$30,000 fam. inc. (public insts)"
lab var npt42_pub "Avg. net price for $30,001-$48,000 fam. inc. (public insts)"
lab var npt43_pub "Avg. net price for $48,001-$75,000 fam. inc. (public insts)"
lab var npt44_pub "Avg. net price for $75,001-$110,000 fam. inc. (public insts)"
lab var npt45_pub "Avg. net price for $110,000+ fam. inc. (public insts)"
lab var npt41_priv "Avg. net price for $0-$30,000 fam. inc. (private for-profit and nonprofit insts)"
lab var npt42_priv "Avg. net price for $30,001-$48,000 fam. inc. (private for-profit and nonprofit insts)"
lab var npt43_priv "Avg. net price for $48,001-$75,000 fam. inc. (private for-profit and nonprofit insts)"
lab var npt44_priv "Avg. net price for $75,001-$110,000 fam. inc. (private for-profit and nonprofit insts)"
lab var npt45_priv "Avg. net price for $110,000+ fam. inc. (private for-profit and nonprofit insts)"
lab var npt41_prog "Avg. net price for $0-$30,000 fam. inc. (prog-yr insts)"
lab var npt42_prog "Avg. net price for $30,001-$48,000 fam. inc. (prog-yr insts)"
lab var npt43_prog "Avg. net price for $48,001-$75,000 fam. inc. (prog-yr insts)"
lab var npt44_prog "Avg. net price for $75,001-$110,000 fam. inc. (prog-yr insts)"
lab var npt45_prog "Avg. net price for $110,000+ fam. inc. (prog-yr insts)"
lab var npt41_other "Avg. net price for $0-$30,000 fam. inc. (oth academic calendar insts)"
lab var npt42_other "Avg. net price for $30,001-$48,000 fam. inc. (oth academic calendar insts)"
lab var npt43_other "Avg. net price for $48,001-$75,000 fam. inc. (oth academic calendar insts)"
lab var npt44_other "Avg. net price for $75,001-$110,000 fam. inc. (oth academic calendar insts)"
lab var npt45_other "Avg. net price for $110,000+ fam. inc. (oth academic calendar insts)"
lab var npt4_048_pub "Avg. net price for $0-$48,000 fam. inc. (public insts)"
lab var npt4_048_priv "Avg. net price for $0-$48,000 fam. inc. (private for-profit and nonprofit insts)"
lab var npt4_048_prog "Avg. net price for $0-$48,000 fam. inc. (prog-yr insts)"
lab var npt4_048_other "Avg. net price for $0-$48,000 fam. inc. (oth academic calendar insts)"
lab var npt4_3075_pub "Avg. net price for $30,001-$75,000 fam. inc. (public insts)"
lab var npt4_3075_priv "Avg. net price for $30,001-$75,000 fam. inc. (private for-profit and nonprofit insts)"
lab var npt4_75up_pub "Avg. net price for $75,000+ fam. inc. (public insts)"
lab var npt4_75up_priv "Avg. net price for $75,000+ fam. inc. (private for-profit and nonprofit insts)"
lab var npt4_3075_prog "Avg. net price for $30,001-$75,000 fam. inc. (prog-yr insts)"
lab var npt4_3075_other "Avg. net price for $30,001-$75,000 fam. inc. (oth academic calendar insts)"
lab var npt4_75up_prog "Avg. net price for $75,000+ fam. inc. (prog-yr insts)"
lab var npt4_75up_other "Avg. net price for $75,000+ fam. inc. (oth academic calendar insts)"
lab var num4_pub "Num Title IV stdnts (public insts)"
lab var num4_priv "Num Title IV stdnts (private for-profit and nonprofit insts)"
lab var num4_prog "Num Title IV stdnts (prog-yr insts)"
lab var num4_other "Num Title IV stdnts (oth academic calendar insts)"
lab var num41_pub "Num Title IV stdnts, $0-$30,000 fam. inc. (public insts)"
lab var num42_pub "Num Title IV stdnts, $30,001-$48,000 fam. inc. (public insts)"
lab var num43_pub "Num Title IV stdnts, $48,001-$75,000 fam. inc. (public insts)"
lab var num44_pub "Num Title IV stdnts, $75,001-$110,000 fam. inc. (public insts)"
lab var num45_pub "Num Title IV stdnts, $110,000+ fam. inc. (public insts)"
lab var num41_priv "Num Title IV stdnts, $0-$30,000 fam. inc. (private for-profit and nonprofit insts)"
lab var num42_priv "Num Title IV stdnts, $30,001-$48,000 fam. inc. (private for-profit and nonprofit insts)"
lab var num43_priv "Num Title IV stdnts, $48,001-$75,000 fam. inc. (private for-profit and nonprofit insts)"
lab var num44_priv "Num Title IV stdnts, $75,001-$110,000 fam. inc. (private for-profit and nonprofit insts)"
lab var num45_priv "Num Title IV stdnts, $110,000+ fam. inc. (private for-profit and nonprofit insts)"
lab var num41_prog "Num Title IV stdnts, $0-$30,000 fam. inc. (prog-yr insts)"
lab var num42_prog "Num Title IV stdnts, $30,001-$48,000 fam. inc. (prog-yr insts)"
lab var num43_prog "Num Title IV stdnts, $48,001-$75,000 fam. inc. (prog-yr insts)"
lab var num44_prog "Num Title IV stdnts, $75,001-$110,000 fam. inc. (prog-yr insts)"
lab var num45_prog "Num Title IV stdnts, $110,000+ fam. inc. (prog-yr insts)"
lab var num41_other "Num Title IV stdnts, $0-$30,000 fam. inc. (oth academic calendar insts)"
lab var num42_other "Num Title IV stdnts, $30,001-$48,000 fam. inc. (oth academic calendar insts)"
lab var num43_other "Num Title IV stdnts, $48,001-$75,000 fam. inc. (oth academic calendar insts)"
lab var num44_other "Num Title IV stdnts, $75,001-$110,000 fam. inc. (oth academic calendar insts)"
lab var num45_other "Num Title IV stdnts, $110,000+ fam. inc. (oth academic calendar insts)"
lab var costt4_a "Avg. cost attendance (academic yr insts)"
lab var costt4_p "Avg. cost attendance (prog-yr insts)"
lab var tuitionfee_in "In-state tuition and fees"
lab var tuitionfee_out "Out-of-state tuition and fees"
lab var tuitionfee_prog "Tuition and fees for prog-yr insts"
lab var tuitfte "Net tuition revenue per flTime equiv. stdnt"
lab var inexpfte "Instructional expenditures per flTime equiv. stdnt"
lab var avgfacsal "Avg. faculty salary"
lab var pftfac "Proportion faculty that is flTime"
lab var pctpell "Pctg. udgr.s who rcve a Pell Grant"
lab var c150_4 "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn)"
lab var c150_l4 "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn)"
lab var c150_4_pooled "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn), pooled for two yr rolling avgs"
lab var c150_l4_pooled "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn), pooled for two yr rolling avgs"
lab var poolyrs "Yrs used for rolling avgs comp rt. C150_[4/L4]_POOLED and xfr rt. TRANS_[4/L4]_POOLED"
lab var pftftug1_ef "Share entering udgr. stdnts who are 1st-time, flTime deg.-/certificate-seeking udgr. stdnts"
lab var d150_4 "Adjstd cohort cnt. comp rt. at 4yr insts (dnmtr 150% comp rt.)"
lab var d150_l4 "Adjstd cohort cnt. comp rt. at <4yr insts (dnmtr 150% comp rt.)"
lab var d150_4_pooled "Adjstd cohort cnt. comp rt. at 4yr insts (dnmtr 150% comp rt.), pooled for 2yr rolling avgs"
lab var d150_l4_pooled "Adjstd cohort cnt. comp rt. at <4yr insts (dnmtr 150% comp rt.), pooled for 2yr rolling avgs"
lab var c150_4_white "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for white stdnts"
lab var c150_4_black "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for black stdnts"
lab var c150_4_hisp "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for Hisp. stdnts"
lab var c150_4_asian "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for Asian stdnts"
lab var c150_4_aian "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for Am. Indian/Alaska Natv. stdnts"
lab var c150_4_nhpi "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for Natv. Hawaiian/Pac. Islander stdnts"
lab var c150_4_2mor "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for stdnts two-or-more-races"
lab var c150_4_nra "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for non-resident alien stdnts"
lab var c150_4_unkn "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for stdnts whose race is unkn"
lab var c150_4_whitenh "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for white stdnts"
lab var c150_4_blacknh "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for black stdnts"
lab var c150_4_api "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for Asian/Pac. Islander stdnts"
lab var c150_4_aianold "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for Am. Indian/Alaska Natv. stdnts"
lab var c150_4_hispold "Completion rt. for 1st-time, flTime stdnts at 4yr insts (150% exp time to comltn) for Hisp. stdnts"
lab var c150_l4_white "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for white stdnts"
lab var c150_l4_black "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for black stdnts"
lab var c150_l4_hisp "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for Hisp. stdnts"
lab var c150_l4_asian "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for Asian stdnts"
lab var c150_l4_aian "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for Am. Indian/Alaska Natv. stdnts"
lab var c150_l4_nhpi "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for Natv. Hawaiian/Pac. Islander stdnts"
lab var c150_l4_2mor "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for stdnts two-or-more-races"
lab var c150_l4_nra "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for non-resident alien stdnts"
lab var c150_l4_unkn "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for stdnts whose race is unkn"
lab var c150_l4_whitenh "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for white non-Hisp. stdnts"
lab var c150_l4_blacknh "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for black non-Hisp. stdnts"
lab var c150_l4_api "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for Asian/Pac. Islander stdnts"
lab var c150_l4_aianold "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for Am. Indian/Alaska Natv. stdnts"
lab var c150_l4_hispold "Completion rt. for 1st-time, flTime stdnts at <4yr insts (150% exp time to comltn) for Hisp. stdnts"
lab var c200_4 "Completion rt. for 1st-time, flTime bachelor's-deg.-seeking stdnts at 4yr insts (200% exp time to comltn)"
lab var c200_l4 "Completion rt. for 1st-time, flTime stdnts at <4yr insts (200% exp time to comltn)"
lab var d200_4 "Adjstd cohort cnt. comp rt. at 4yr insts (dnmtr 200% comp rt.)"
lab var d200_l4 "Adjstd cohort cnt. comp rt. at <4yr insts (dnmtr 200% comp rt.)"
lab var ret_ft4 "1stTime, flTime stdnt retention rt. at 4yr insts"
lab var ret_ftl4 "1stTime, flTime stdnt retention rt. at <4yr insts"
lab var ret_pt4 "1stTime, ptTime stdnt retention rt. at 4yr insts"
lab var ret_ptl4 "1stTime, ptTime stdnt retention rt. at <4yr insts"
lab var c200_4_pooled "Completion rt. for 1st-time, flTime bachelor's-deg.-seeking stdnts at 4yr insts (200% exp time to comltn), pooled for two yr rolling avgs"
lab var c200_l4_pooled "Completion rt. for 1st-time, flTime stdnts at <4yr insts (200% exp time to comltn), pooled for two yr rolling avgs"
lab var poolyrs200 "Yrs used for rolling avgs comp rt. C200_[4/L4]_POOLED"
lab var d200_4_pooled "Adjstd cohort cnt. comp rt. at 4yr insts (dnmtr 200% comp rt.), pooled for 2yr rolling avgs"
lab var d200_l4_pooled "Adjstd cohort cnt. comp rt. at <4yr insts (dnmtr 200% comp rt.), pooled for 2yr rolling avgs"
lab var pctfloan "% all udgr. stdnts rcving a fed. stdnt loan"
lab var ug25abv "Pctg. udgr.s aged 25 and above"
lab var cdr2 "2yr cohort default rt."
lab var cdr3 "3yr cohort default rt."
lab var death_yr2_rt "% died within 2yrs at orig inst"
lab var comp_orig_yr2_rt "% completed within 2yrs at orig inst"
lab var comp_4yr_trans_yr2_rt "% who xfrred to a 4yr inst and completed within 2yrs"
lab var comp_2yr_trans_yr2_rt "% who xfrred to a 2yr inst and completed within 2yrs"
lab var wdraw_orig_yr2_rt "% withdrawn from orig inst within 2yrs"
lab var wdraw_4yr_trans_yr2_rt "% who xfrred to a 4yr inst and withdrew within 2yrs"
lab var wdraw_2yr_trans_yr2_rt "% who xfrred to a 2yr inst and withdrew within 2yrs"
lab var enrl_orig_yr2_rt "% still enrolled at orig inst within 2yrs"
lab var enrl_4yr_trans_yr2_rt "% who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var enrl_2yr_trans_yr2_rt "% who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var unkn_orig_yr2_rt "% with status unkn within 2yrs at orig inst"
lab var unkn_4yr_trans_yr2_rt "% who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var unkn_2yr_trans_yr2_rt "% who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var lo_inc_death_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who died within 2yrs at orig inst"
lab var lo_inc_comp_orig_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who completed within 2yrs at orig inst"
lab var lo_inc_comp_4yr_trans_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and completed within 2yrs"
lab var lo_inc_comp_2yr_trans_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and completed within 2yrs"
lab var lo_inc_wdraw_orig_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts withdrawn from orig inst within 2yrs"
lab var lo_inc_wdraw_4yr_trans_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and withdrew within 2yrs"
lab var lo_inc_wdraw_2yr_trans_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and withdrew within 2yrs"
lab var lo_inc_enrl_orig_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who were still enrolled at orig inst within 2yrs"
lab var lo_inc_enrl_4yr_trans_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var lo_inc_enrl_2yr_trans_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var lo_inc_unkn_orig_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts with status unkn within 2yrs at orig inst"
lab var lo_inc_unkn_4yr_trans_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var lo_inc_unkn_2yr_trans_yr2_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var md_inc_death_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who died within 2yrs at orig inst"
lab var md_inc_comp_orig_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who completed within 2yrs at orig inst"
lab var md_inc_comp_4yr_trans_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and completed within 2yrs"
lab var md_inc_comp_2yr_trans_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and completed within 2yrs"
lab var md_inc_wdraw_orig_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts withdrawn from orig inst within 2yrs"
lab var md_inc_wdraw_4yr_trans_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and withdrew within 2yrs"
lab var md_inc_wdraw_2yr_trans_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and withdrew within 2yrs"
lab var md_inc_enrl_orig_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who were still enrolled at orig inst within 2yrs"
lab var md_inc_enrl_4yr_trans_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var md_inc_enrl_2yr_trans_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var md_inc_unkn_orig_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts with status unkn within 2yrs at orig inst"
lab var md_inc_unkn_4yr_trans_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var md_inc_unkn_2yr_trans_yr2_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var hi_inc_death_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who died within 2yrs at orig inst"
lab var hi_inc_comp_orig_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who completed within 2yrs at orig inst"
lab var hi_inc_comp_4yr_trans_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and completed within 2yrs"
lab var hi_inc_comp_2yr_trans_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and completed within 2yrs"
lab var hi_inc_wdraw_orig_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts withdrawn from orig inst within 2yrs"
lab var hi_inc_wdraw_4yr_trans_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and withdrew within 2yrs"
lab var hi_inc_wdraw_2yr_trans_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and withdrew within 2yrs"
lab var hi_inc_enrl_orig_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who were still enrolled at orig inst within 2yrs"
lab var hi_inc_enrl_4yr_trans_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var hi_inc_enrl_2yr_trans_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var hi_inc_unkn_orig_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts with status unkn within 2yrs at orig inst"
lab var hi_inc_unkn_4yr_trans_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var hi_inc_unkn_2yr_trans_yr2_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var dep_death_yr2_rt "% dependent stdnts who died within 2yrs at orig inst"
lab var dep_comp_orig_yr2_rt "% dependent stdnts who completed within 2yrs at orig inst"
lab var dep_comp_4yr_trans_yr2_rt "% dependent stdnts who xfrred to a 4yr inst and completed within 2yrs"
lab var dep_comp_2yr_trans_yr2_rt "% dependent stdnts who xfrred to a 2yr inst and completed within 2yrs"
lab var dep_wdraw_orig_yr2_rt "% dependent stdnts withdrawn from orig inst within 2yrs"
lab var dep_wdraw_4yr_trans_yr2_rt "% dependent stdnts who xfrred to a 4yr inst and withdrew within 2yrs"
lab var dep_wdraw_2yr_trans_yr2_rt "% dependent stdnts who xfrred to a 2yr inst and withdrew within 2yrs"
lab var dep_enrl_orig_yr2_rt "% dependent stdnts who were still enrolled at orig inst within 2yrs"
lab var dep_enrl_4yr_trans_yr2_rt "% dependent stdnts who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var dep_enrl_2yr_trans_yr2_rt "% dependent stdnts who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var dep_unkn_orig_yr2_rt "% dependent stdnts with status unkn within 2yrs at orig inst"
lab var dep_unkn_4yr_trans_yr2_rt "% dependent stdnts who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var dep_unkn_2yr_trans_yr2_rt "% dependent stdnts who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var ind_death_yr2_rt "% independent stdnts who died within 2yrs at orig inst"
lab var ind_comp_orig_yr2_rt "% independent stdnts who completed within 2yrs at orig inst"
lab var ind_comp_4yr_trans_yr2_rt "% independent stdnts who xfrred to a 4yr inst and completed within 2yrs"
lab var ind_comp_2yr_trans_yr2_rt "% independent stdnts who xfrred to a 2yr inst and completed within 2yrs"
lab var ind_wdraw_orig_yr2_rt "% independent stdnts withdrawn from orig inst within 2yrs"
lab var ind_wdraw_4yr_trans_yr2_rt "% independent stdnts who xfrred to a 4yr inst and withdrew within 2yrs"
lab var ind_wdraw_2yr_trans_yr2_rt "% independent stdnts who xfrred to a 2yr inst and withdrew within 2yrs"
lab var ind_enrl_orig_yr2_rt "% independent stdnts who were still enrolled at orig inst within 2yrs"
lab var ind_enrl_4yr_trans_yr2_rt "% independent stdnts who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var ind_enrl_2yr_trans_yr2_rt "% independent stdnts who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var ind_unkn_orig_yr2_rt "% independent stdnts with status unkn within 2yrs at orig inst"
lab var ind_unkn_4yr_trans_yr2_rt "% independent stdnts who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var ind_unkn_2yr_trans_yr2_rt "% independent stdnts who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var female_death_yr2_rt "% fmle stdnts who died within 2yrs at orig inst"
lab var female_comp_orig_yr2_rt "% fmle stdnts who completed within 2yrs at orig inst"
lab var female_comp_4yr_trans_yr2_rt "% fmle stdnts who xfrred to a 4yr inst and completed within 2yrs"
lab var female_comp_2yr_trans_yr2_rt "% fmle stdnts who xfrred to a 2yr inst and completed within 2yrs"
lab var female_wdraw_orig_yr2_rt "% fmle stdnts withdrawn from orig inst within 2yrs"
lab var female_wdraw_4yr_trans_yr2_rt "% fmle stdnts who xfrred to a 4yr inst and withdrew within 2yrs"
lab var female_wdraw_2yr_trans_yr2_rt "% fmle stdnts who xfrred to a 2yr inst and withdrew within 2yrs"
lab var female_enrl_orig_yr2_rt "% fmle stdnts who were still enrolled at orig inst within 2yrs"
lab var female_enrl_4yr_trans_yr2_rt "% fmle stdnts who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var female_enrl_2yr_trans_yr2_rt "% fmle stdnts who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var female_unkn_orig_yr2_rt "% fmle stdnts with status unkn within 2yrs at orig inst"
lab var female_unkn_4yr_trans_yr2_rt "% fmle stdnts who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var female_unkn_2yr_trans_yr2_rt "% fmle stdnts who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var male_death_yr2_rt "% male stdnts who died within 2yrs at orig inst"
lab var male_comp_orig_yr2_rt "% male stdnts who completed within 2yrs at orig inst"
lab var male_comp_4yr_trans_yr2_rt "% male stdnts who xfrred to a 4yr inst and completed within 2yrs"
lab var male_comp_2yr_trans_yr2_rt "% male stdnts who xfrred to a 2yr inst and completed within 2yrs"
lab var male_wdraw_orig_yr2_rt "% male stdnts withdrawn from orig inst within 2yrs"
lab var male_wdraw_4yr_trans_yr2_rt "% male stdnts who xfrred to a 4yr inst and withdrew within 2yrs"
lab var male_wdraw_2yr_trans_yr2_rt "% male stdnts who xfrred to a 2yr inst and withdrew within 2yrs"
lab var male_enrl_orig_yr2_rt "% male stdnts who were still enrolled at orig inst within 2yrs"
lab var male_enrl_4yr_trans_yr2_rt "% male stdnts who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var male_enrl_2yr_trans_yr2_rt "% male stdnts who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var male_unkn_orig_yr2_rt "% male stdnts with status unkn within 2yrs at orig inst"
lab var male_unkn_4yr_trans_yr2_rt "% male stdnts who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var male_unkn_2yr_trans_yr2_rt "% male stdnts who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var pell_death_yr2_rt "% stdnts who rcved a Pell Grant at inst and who died within 2yrs at orig inst"
lab var pell_comp_orig_yr2_rt "% stdnts who rcved a Pell Grant at inst and who completed in 2yrs at orig inst"
lab var pell_comp_4yr_trans_yr2_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and completed within 2yrs"
lab var pell_comp_2yr_trans_yr2_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and completed within 2yrs"
lab var pell_wdraw_orig_yr2_rt "% stdnts who rcved a Pell Grant at inst and withdrew from orig inst within 2yrs"
lab var pell_wdraw_4yr_trans_yr2_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and withdrew within 2yrs"
lab var pell_wdraw_2yr_trans_yr2_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and withdrew within 2yrs"
lab var pell_enrl_orig_yr2_rt "% stdnts who rcved a Pell Grant at inst and who were still enrolled at orig inst within 2yrs"
lab var pell_enrl_4yr_trans_yr2_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var pell_enrl_2yr_trans_yr2_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var pell_unkn_orig_yr2_rt "% stdnts who rcved a Pell Grant at inst and with status unkn within 2yrs at orig inst"
lab var pell_unkn_4yr_trans_yr2_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var pell_unkn_2yr_trans_yr2_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var nopell_death_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and who died within 2yrs at orig inst"
lab var nopell_comp_orig_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and who completed in 2yrs at orig inst"
lab var nopell_comp_4yr_trans_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and completed within 2yrs"
lab var nopell_comp_2yr_trans_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and completed within 2yrs"
lab var nopell_wdraw_orig_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and withdrew from orig inst within 2yrs"
lab var nopell_wdraw_4yr_trans_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and withdrew within 2yrs"
lab var nopell_wdraw_2yr_trans_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and withdrew within 2yrs"
lab var nopell_enrl_orig_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and who were still enrolled at orig inst within 2yrs"
lab var nopell_enrl_4yr_trans_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var nopell_enrl_2yr_trans_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var nopell_unkn_orig_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and with status unkn within 2yrs at orig inst"
lab var nopell_unkn_4yr_trans_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var nopell_unkn_2yr_trans_yr2_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var loan_death_yr2_rt "% stdnts who rcved a fed. loan at inst and who died within 2yrs at orig inst"
lab var loan_comp_orig_yr2_rt "% stdnts who rcved a fed. loan at inst and who completed in 2yrs at orig inst"
lab var loan_comp_4yr_trans_yr2_rt "% stdnts who rcved a federel loan at inst and who xfrred to a 4yr inst and completed within 2yrs"
lab var loan_comp_2yr_trans_yr2_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and completed within 2yrs"
lab var loan_wdraw_orig_yr2_rt "% stdnts who rcved a fed. loan at inst and withdrew from orig inst within 2yrs"
lab var loan_wdraw_4yr_trans_yr2_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 4yr inst and withdrew within 2yrs"
lab var loan_wdraw_2yr_trans_yr2_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and withdrew within 2yrs"
lab var loan_enrl_orig_yr2_rt "% stdnts who rcved a fed. loan at inst and who were still enrolled at orig inst within 2yrs"
lab var loan_enrl_4yr_trans_yr2_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var loan_enrl_2yr_trans_yr2_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var loan_unkn_orig_yr2_rt "% stdnts who rcved a fed. loan at inst and with status unkn within 2yrs at orig inst"
lab var loan_unkn_4yr_trans_yr2_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var loan_unkn_2yr_trans_yr2_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var noloan_death_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and who died within 2yrs at orig inst"
lab var noloan_comp_orig_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and who completed in 2yrs at orig inst"
lab var noloan_comp_4yr_trans_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and completed within 2yrs"
lab var noloan_comp_2yr_trans_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and completed within 2yrs"
lab var noloan_wdraw_orig_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and withdrew from orig inst within 2yrs"
lab var noloan_wdraw_4yr_trans_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and withdrew within 2yrs"
lab var noloan_wdraw_2yr_trans_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and withdrew within 2yrs"
lab var noloan_enrl_orig_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and who were still enrolled at orig inst within 2yrs"
lab var noloan_enrl_4yr_trans_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var noloan_enrl_2yr_trans_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var noloan_unkn_orig_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and with status unkn within 2yrs at orig inst"
lab var noloan_unkn_4yr_trans_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var noloan_unkn_2yr_trans_yr2_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var firstgen_death_yr2_rt "% 1st-genrtn stdnts who died within 2yrs at orig inst"
lab var firstgen_comp_orig_yr2_rt "% 1st-genrtn stdnts who completed within 2yrs at orig inst"
lab var firstgen_comp_4yr_trans_yr2_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and completed within 2yrs"
lab var firstgen_comp_2yr_trans_yr2_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and completed within 2yrs"
lab var firstgen_wdraw_orig_yr2_rt "% 1st-genrtn stdnts withdrawn from orig inst within 2yrs"
lab var firstgen_wdraw_4yr_trans_yr2_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and withdrew within 2yrs"
lab var firstgen_wdraw_2yr_trans_yr2_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and withdrew within 2yrs"
lab var firstgen_enrl_orig_yr2_rt "% 1st-genrtn stdnts who were still enrolled at orig inst within 2yrs"
lab var firstgen_enrl_4yr_trans_yr2_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var firstgen_enrl_2yr_trans_yr2_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var firstgen_unkn_orig_yr2_rt "% 1st-genrtn stdnts with status unkn within 2yrs at orig inst"
lab var firstgen_unkn_4yr_trans_yr2_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var firstgen_unkn_2yr_trans_yr2_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var not1stgen_death_yr2_rt "% not-1st-genrtn stdnts who died within 2yrs at orig inst"
lab var not1stgen_comp_orig_yr2_rt "% not-1st-genrtn stdnts who completed within 2yrs at orig inst"
lab var not1stgen_comp_4yr_trans_yr2_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and completed within 2yrs"
lab var not1stgen_comp_2yr_trans_yr2_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and completed within 2yrs"
lab var not1stgen_wdraw_orig_yr2_rt "% not-1st-genrtn stdnts withdrawn from orig inst within 2yrs"
lab var not1stgen_wdraw_4yr_trans_yr2_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and withdrew within 2yrs"
lab var not1stgen_wdraw_2yr_trans_yr2_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and withdrew within 2yrs"
lab var not1stgen_enrl_orig_yr2_rt "% not-1st-genrtn stdnts who were still enrolled at orig inst within 2yrs"
lab var not1stgen_enrl_4yr_trans_yr2_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and were still enrolled within 2yrs"
lab var not1stgen_enrl_2yr_trans_yr2_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and were still enrolled within 2yrs"
lab var not1stgen_unkn_orig_yr2_rt "% not-1st-genrtn stdnts with status unkn within 2yrs at orig inst"
lab var not1stgen_unkn_4yr_trans_yr2_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and whose status is unkn within 2yrs"
lab var not1stgen_unkn_2yr_trans_yr2_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and whose status is unkn within 2yrs"
lab var death_yr3_rt "% died within 3yrs at orig inst"
lab var comp_orig_yr3_rt "% completed within 3yrs at orig inst"
lab var comp_4yr_trans_yr3_rt "% who xfrred to a 4yr inst and completed within 3yrs"
lab var comp_2yr_trans_yr3_rt "% who xfrred to a 2yr inst and completed within 3yrs"
lab var wdraw_orig_yr3_rt "% withdrawn from orig inst within 3yrs"
lab var wdraw_4yr_trans_yr3_rt "% who xfrred to a 4yr inst and withdrew within 3yrs"
lab var wdraw_2yr_trans_yr3_rt "% who xfrred to a 2yr inst and withdrew within 3yrs"
lab var enrl_orig_yr3_rt "% still enrolled at orig inst within 3yrs"
lab var enrl_4yr_trans_yr3_rt "% who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var enrl_2yr_trans_yr3_rt "% who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var unkn_orig_yr3_rt "% with status unkn within 3yrs at orig inst"
lab var unkn_4yr_trans_yr3_rt "% who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var unkn_2yr_trans_yr3_rt "% who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var lo_inc_death_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who died within 3yrs at orig inst"
lab var lo_inc_comp_orig_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who completed within 3yrs at orig inst"
lab var lo_inc_comp_4yr_trans_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and completed within 3yrs"
lab var lo_inc_comp_2yr_trans_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and completed within 3yrs"
lab var lo_inc_wdraw_orig_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts withdrawn from orig inst within 3yrs"
lab var lo_inc_wdraw_4yr_trans_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and withdrew within 3yrs"
lab var lo_inc_wdraw_2yr_trans_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and withdrew within 3yrs"
lab var lo_inc_enrl_orig_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who were still enrolled at orig inst within 3yrs"
lab var lo_inc_enrl_4yr_trans_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var lo_inc_enrl_2yr_trans_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var lo_inc_unkn_orig_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts with status unkn within 3yrs at orig inst"
lab var lo_inc_unkn_4yr_trans_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var lo_inc_unkn_2yr_trans_yr3_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var md_inc_death_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who died within 3yrs at orig inst"
lab var md_inc_comp_orig_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who completed within 3yrs at orig inst"
lab var md_inc_comp_4yr_trans_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and completed within 3yrs"
lab var md_inc_comp_2yr_trans_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and completed within 3yrs"
lab var md_inc_wdraw_orig_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts withdrawn from orig inst within 3yrs"
lab var md_inc_wdraw_4yr_trans_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and withdrew within 3yrs"
lab var md_inc_wdraw_2yr_trans_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and withdrew within 3yrs"
lab var md_inc_enrl_orig_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who were still enrolled at orig inst within 3yrs"
lab var md_inc_enrl_4yr_trans_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var md_inc_enrl_2yr_trans_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var md_inc_unkn_orig_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts with status unkn within 3yrs at orig inst"
lab var md_inc_unkn_4yr_trans_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var md_inc_unkn_2yr_trans_yr3_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var hi_inc_death_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who died within 3yrs at orig inst"
lab var hi_inc_comp_orig_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who completed within 3yrs at orig inst"
lab var hi_inc_comp_4yr_trans_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and completed within 3yrs"
lab var hi_inc_comp_2yr_trans_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and completed within 3yrs"
lab var hi_inc_wdraw_orig_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts withdrawn from orig inst within 3yrs"
lab var hi_inc_wdraw_4yr_trans_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and withdrew within 3yrs"
lab var hi_inc_wdraw_2yr_trans_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and withdrew within 3yrs"
lab var hi_inc_enrl_orig_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who were still enrolled at orig inst within 3yrs"
lab var hi_inc_enrl_4yr_trans_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var hi_inc_enrl_2yr_trans_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var hi_inc_unkn_orig_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts with status unkn within 3yrs at orig inst"
lab var hi_inc_unkn_4yr_trans_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var hi_inc_unkn_2yr_trans_yr3_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var dep_death_yr3_rt "% dependent stdnts who died within 3yrs at orig inst"
lab var dep_comp_orig_yr3_rt "% dependent stdnts who completed within 3yrs at orig inst"
lab var dep_comp_4yr_trans_yr3_rt "% dependent stdnts who xfrred to a 4yr inst and completed within 3yrs"
lab var dep_comp_2yr_trans_yr3_rt "% dependent stdnts who xfrred to a 2yr inst and completed within 3yrs"
lab var dep_wdraw_orig_yr3_rt "% dependent stdnts withdrawn from orig inst within 3yrs"
lab var dep_wdraw_4yr_trans_yr3_rt "% dependent stdnts who xfrred to a 4yr inst and withdrew within 3yrs"
lab var dep_wdraw_2yr_trans_yr3_rt "% dependent stdnts who xfrred to a 2yr inst and withdrew within 3yrs"
lab var dep_enrl_orig_yr3_rt "% dependent stdnts who were still enrolled at orig inst within 3yrs"
lab var dep_enrl_4yr_trans_yr3_rt "% dependent stdnts who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var dep_enrl_2yr_trans_yr3_rt "% dependent stdnts who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var dep_unkn_orig_yr3_rt "% dependent stdnts with status unkn within 3yrs at orig inst"
lab var dep_unkn_4yr_trans_yr3_rt "% dependent stdnts who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var dep_unkn_2yr_trans_yr3_rt "% dependent stdnts who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var ind_death_yr3_rt "% independent stdnts who died within 3yrs at orig inst"
lab var ind_comp_orig_yr3_rt "% independent stdnts who completed within 3yrs at orig inst"
lab var ind_comp_4yr_trans_yr3_rt "% independent stdnts who xfrred to a 4yr inst and completed within 3yrs"
lab var ind_comp_2yr_trans_yr3_rt "% independent stdnts who xfrred to a 2yr inst and completed within 3yrs"
lab var ind_wdraw_orig_yr3_rt "% independent stdnts withdrawn from orig inst within 3yrs"
lab var ind_wdraw_4yr_trans_yr3_rt "% independent stdnts who xfrred to a 4yr inst and withdrew within 3yrs"
lab var ind_wdraw_2yr_trans_yr3_rt "% independent stdnts who xfrred to a 2yr inst and withdrew within 3yrs"
lab var ind_enrl_orig_yr3_rt "% independent stdnts who were still enrolled at orig inst within 3yrs"
lab var ind_enrl_4yr_trans_yr3_rt "% independent stdnts who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var ind_enrl_2yr_trans_yr3_rt "% independent stdnts who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var ind_unkn_orig_yr3_rt "% independent stdnts with status unkn within 3yrs at orig inst"
lab var ind_unkn_4yr_trans_yr3_rt "% independent stdnts who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var ind_unkn_2yr_trans_yr3_rt "% independent stdnts who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var female_death_yr3_rt "% fmle stdnts who died within 3yrs at orig inst"
lab var female_comp_orig_yr3_rt "% fmle stdnts who completed within 3yrs at orig inst"
lab var female_comp_4yr_trans_yr3_rt "% fmle stdnts who xfrred to a 4yr inst and completed within 3yrs"
lab var female_comp_2yr_trans_yr3_rt "% fmle stdnts who xfrred to a 2yr inst and completed within 3yrs"
lab var female_wdraw_orig_yr3_rt "% fmle stdnts withdrawn from orig inst within 3yrs"
lab var female_wdraw_4yr_trans_yr3_rt "% fmle stdnts who xfrred to a 4yr inst and withdrew within 3yrs"
lab var female_wdraw_2yr_trans_yr3_rt "% fmle stdnts who xfrred to a 2yr inst and withdrew within 3yrs"
lab var female_enrl_orig_yr3_rt "% fmle stdnts who were still enrolled at orig inst within 3yrs"
lab var female_enrl_4yr_trans_yr3_rt "% fmle stdnts who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var female_enrl_2yr_trans_yr3_rt "% fmle stdnts who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var female_unkn_orig_yr3_rt "% fmle stdnts with status unkn within 3yrs at orig inst"
lab var female_unkn_4yr_trans_yr3_rt "% fmle stdnts who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var female_unkn_2yr_trans_yr3_rt "% fmle stdnts who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var male_death_yr3_rt "% male stdnts who died within 3yrs at orig inst"
lab var male_comp_orig_yr3_rt "% male stdnts who completed within 3yrs at orig inst"
lab var male_comp_4yr_trans_yr3_rt "% male stdnts who xfrred to a 4yr inst and completed within 3yrs"
lab var male_comp_2yr_trans_yr3_rt "% male stdnts who xfrred to a 2yr inst and completed within 3yrs"
lab var male_wdraw_orig_yr3_rt "% male stdnts withdrawn from orig inst within 3yrs"
lab var male_wdraw_4yr_trans_yr3_rt "% male stdnts who xfrred to a 4yr inst and withdrew within 3yrs"
lab var male_wdraw_2yr_trans_yr3_rt "% male stdnts who xfrred to a 2yr inst and withdrew within 3yrs"
lab var male_enrl_orig_yr3_rt "% male stdnts who were still enrolled at orig inst within 3yrs"
lab var male_enrl_4yr_trans_yr3_rt "% male stdnts who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var male_enrl_2yr_trans_yr3_rt "% male stdnts who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var male_unkn_orig_yr3_rt "% male stdnts with status unkn within 3yrs at orig inst"
lab var male_unkn_4yr_trans_yr3_rt "% male stdnts who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var male_unkn_2yr_trans_yr3_rt "% male stdnts who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var pell_death_yr3_rt "% stdnts who rcved a Pell Grant at inst and who died within 3yrs at orig inst"
lab var pell_comp_orig_yr3_rt "% stdnts who rcved a Pell Grant at inst and who completed in 3yrs at orig inst"
lab var pell_comp_4yr_trans_yr3_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and completed within 3yrs"
lab var pell_comp_2yr_trans_yr3_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and completed within 3yrs"
lab var pell_wdraw_orig_yr3_rt "% stdnts who rcved a Pell Grant at inst and withdrew from orig inst within 3yrs"
lab var pell_wdraw_4yr_trans_yr3_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and withdrew within 3yrs"
lab var pell_wdraw_2yr_trans_yr3_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and withdrew within 3yrs"
lab var pell_enrl_orig_yr3_rt "% stdnts who rcved a Pell Grant at inst and who were still enrolled at orig inst within 3yrs"
lab var pell_enrl_4yr_trans_yr3_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var pell_enrl_2yr_trans_yr3_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var pell_unkn_orig_yr3_rt "% stdnts who rcved a Pell Grant at inst and with status unkn within 3yrs at orig inst"
lab var pell_unkn_4yr_trans_yr3_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var pell_unkn_2yr_trans_yr3_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var nopell_death_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and who died within 3yrs at orig inst"
lab var nopell_comp_orig_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and who completed in 3yrs at orig inst"
lab var nopell_comp_4yr_trans_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and completed within 3yrs"
lab var nopell_comp_2yr_trans_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and completed within 3yrs"
lab var nopell_wdraw_orig_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and withdrew from orig inst within 3yrs"
lab var nopell_wdraw_4yr_trans_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and withdrew within 3yrs"
lab var nopell_wdraw_2yr_trans_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and withdrew within 3yrs"
lab var nopell_enrl_orig_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and who were still enrolled at orig inst within 3yrs"
lab var nopell_enrl_4yr_trans_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var nopell_enrl_2yr_trans_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var nopell_unkn_orig_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and with status unkn within 3yrs at orig inst"
lab var nopell_unkn_4yr_trans_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var nopell_unkn_2yr_trans_yr3_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var loan_death_yr3_rt "% stdnts who rcved a fed. loan at inst and who died within 3yrs at orig inst"
lab var loan_comp_orig_yr3_rt "% stdnts who rcved a fed. loan at inst and who completed in 3yrs at orig inst"
lab var loan_comp_4yr_trans_yr3_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 4yr inst and completed within 3yrs"
lab var loan_comp_2yr_trans_yr3_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and completed within 3yrs"
lab var loan_wdraw_orig_yr3_rt "% stdnts who rcved a fed. loan at inst and withdrew from orig inst within 3yrs"
lab var loan_wdraw_4yr_trans_yr3_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 4yr inst and withdrew within 3yrs"
lab var loan_wdraw_2yr_trans_yr3_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and withdrew within 3yrs"
lab var loan_enrl_orig_yr3_rt "% stdnts who rcved a fed. loan at inst and who were still enrolled at orig inst within 3yrs"
lab var loan_enrl_4yr_trans_yr3_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var loan_enrl_2yr_trans_yr3_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var loan_unkn_orig_yr3_rt "% stdnts who rcved a fed. loan at inst and with status unkn within 3yrs at orig inst"
lab var loan_unkn_4yr_trans_yr3_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var loan_unkn_2yr_trans_yr3_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var noloan_death_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and who died within 3yrs at orig inst"
lab var noloan_comp_orig_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and who completed in 3yrs at orig inst"
lab var noloan_comp_4yr_trans_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and completed within 3yrs"
lab var noloan_comp_2yr_trans_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and completed within 3yrs"
lab var noloan_wdraw_orig_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and withdrew from orig inst within 3yrs"
lab var noloan_wdraw_4yr_trans_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and withdrew within 3yrs"
lab var noloan_wdraw_2yr_trans_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and withdrew within 3yrs"
lab var noloan_enrl_orig_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and who were still enrolled at orig inst within 3yrs"
lab var noloan_enrl_4yr_trans_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var noloan_enrl_2yr_trans_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var noloan_unkn_orig_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and with status unkn within 3yrs at orig inst"
lab var noloan_unkn_4yr_trans_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var noloan_unkn_2yr_trans_yr3_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var firstgen_death_yr3_rt "% 1st-genrtn stdnts who died within 3yrs at orig inst"
lab var firstgen_comp_orig_yr3_rt "% 1st-genrtn stdnts who completed within 3yrs at orig inst"
lab var firstgen_comp_4yr_trans_yr3_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and completed within 3yrs"
lab var firstgen_comp_2yr_trans_yr3_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and completed within 3yrs"
lab var firstgen_wdraw_orig_yr3_rt "% 1st-genrtn stdnts withdrawn from orig inst within 3yrs"
lab var firstgen_wdraw_4yr_trans_yr3_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and withdrew within 3yrs"
lab var firstgen_wdraw_2yr_trans_yr3_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and withdrew within 3yrs"
lab var firstgen_enrl_orig_yr3_rt "% 1st-genrtn stdnts who were still enrolled at orig inst within 3yrs"
lab var firstgen_enrl_4yr_trans_yr3_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var firstgen_enrl_2yr_trans_yr3_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var firstgen_unkn_orig_yr3_rt "% 1st-genrtn stdnts with status unkn within 3yrs at orig inst"
lab var firstgen_unkn_4yr_trans_yr3_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var firstgen_unkn_2yr_trans_yr3_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var not1stgen_death_yr3_rt "% not-1st-genrtn stdnts who died within 3yrs at orig inst"
lab var not1stgen_comp_orig_yr3_rt "% not-1st-genrtn stdnts who completed within 3yrs at orig inst"
lab var not1stgen_comp_4yr_trans_yr3_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and completed within 3yrs"
lab var not1stgen_comp_2yr_trans_yr3_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and completed within 3yrs"
lab var not1stgen_wdraw_orig_yr3_rt "% not-1st-genrtn stdnts withdrawn from orig inst within 3yrs"
lab var not1stgen_wdraw_4yr_trans_yr3_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and withdrew within 3yrs"
lab var not1stgen_wdraw_2yr_trans_yr3_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and withdrew within 3yrs"
lab var not1stgen_enrl_orig_yr3_rt "% not-1st-genrtn stdnts who were still enrolled at orig inst within 3yrs"
lab var not1stgen_enrl_4yr_trans_yr3_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and were still enrolled within 3yrs"
lab var not1stgen_enrl_2yr_trans_yr3_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and were still enrolled within 3yrs"
lab var not1stgen_unkn_orig_yr3_rt "% not-1st-genrtn stdnts with status unkn within 3yrs at orig inst"
lab var not1stgen_unkn_4yr_trans_yr3_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and whose status is unkn within 3yrs"
lab var not1stgen_unkn_2yr_trans_yr3_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and whose status is unkn within 3yrs"
lab var death_yr4_rt "% died within 4yrs at orig inst"
lab var comp_orig_yr4_rt "% completed within 4yrs at orig inst"
lab var comp_4yr_trans_yr4_rt "% who xfrred to a 4yr inst and completed within 4yrs"
lab var comp_2yr_trans_yr4_rt "% who xfrred to a 2yr inst and completed within 4yrs"
lab var wdraw_orig_yr4_rt "% withdrawn from orig inst within 4yrs"
lab var wdraw_4yr_trans_yr4_rt "% who xfrred to a 4yr inst and withdrew within 4yrs"
lab var wdraw_2yr_trans_yr4_rt "% who xfrred to a 2yr inst and withdrew within 4yrs"
lab var enrl_orig_yr4_rt "% still enrolled at orig inst within 4yrs"
lab var enrl_4yr_trans_yr4_rt "% who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var enrl_2yr_trans_yr4_rt "% who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var unkn_orig_yr4_rt "% with status unkn within 4yrs at orig inst"
lab var unkn_4yr_trans_yr4_rt "% who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var unkn_2yr_trans_yr4_rt "% who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var lo_inc_death_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who died within 4yrs at orig inst"
lab var lo_inc_comp_orig_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who completed within 4yrs at orig inst"
lab var lo_inc_comp_4yr_trans_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and completed within 4yrs"
lab var lo_inc_comp_2yr_trans_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and completed within 4yrs"
lab var lo_inc_wdraw_orig_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts withdrawn from orig inst within 4yrs"
lab var lo_inc_wdraw_4yr_trans_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and withdrew within 4yrs"
lab var lo_inc_wdraw_2yr_trans_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and withdrew within 4yrs"
lab var lo_inc_enrl_orig_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who were still enrolled at orig inst within 4yrs"
lab var lo_inc_enrl_4yr_trans_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var lo_inc_enrl_2yr_trans_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var lo_inc_unkn_orig_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts with status unkn within 4yrs at orig inst"
lab var lo_inc_unkn_4yr_trans_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var lo_inc_unkn_2yr_trans_yr4_rt "% LWinc. (less than $30,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var md_inc_death_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who died within 4yrs at orig inst"
lab var md_inc_comp_orig_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who completed within 4yrs at orig inst"
lab var md_inc_comp_4yr_trans_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and completed within 4yrs"
lab var md_inc_comp_2yr_trans_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and completed within 4yrs"
lab var md_inc_wdraw_orig_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts withdrawn from orig inst within 4yrs"
lab var md_inc_wdraw_4yr_trans_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and withdrew within 4yrs"
lab var md_inc_wdraw_2yr_trans_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and withdrew within 4yrs"
lab var md_inc_enrl_orig_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who were still enrolled at orig inst within 4yrs"
lab var md_inc_enrl_4yr_trans_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var md_inc_enrl_2yr_trans_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var md_inc_unkn_orig_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts with status unkn within 4yrs at orig inst"
lab var md_inc_unkn_4yr_trans_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var md_inc_unkn_2yr_trans_yr4_rt "% MIDinc. (btwn $30,000 and $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var hi_inc_death_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who died within 4yrs at orig inst"
lab var hi_inc_comp_orig_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who completed within 4yrs at orig inst"
lab var hi_inc_comp_4yr_trans_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and completed within 4yrs"
lab var hi_inc_comp_2yr_trans_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and completed within 4yrs"
lab var hi_inc_wdraw_orig_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts withdrawn from orig inst within 4yrs"
lab var hi_inc_wdraw_4yr_trans_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and withdrew within 4yrs"
lab var hi_inc_wdraw_2yr_trans_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and withdrew within 4yrs"
lab var hi_inc_enrl_orig_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who were still enrolled at orig inst within 4yrs"
lab var hi_inc_enrl_4yr_trans_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var hi_inc_enrl_2yr_trans_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var hi_inc_unkn_orig_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts with status unkn within 4yrs at orig inst"
lab var hi_inc_unkn_4yr_trans_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var hi_inc_unkn_2yr_trans_yr4_rt "% HIinc. (above $75,000 in nominal fam. inc.) stdnts who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var dep_death_yr4_rt "% dependent stdnts who died within 4yrs at orig inst"
lab var dep_comp_orig_yr4_rt "% dependent stdnts who completed within 4yrs at orig inst"
lab var dep_comp_4yr_trans_yr4_rt "% dependent stdnts who xfrred to a 4yr inst and completed within 4yrs"
lab var dep_comp_2yr_trans_yr4_rt "% dependent stdnts who xfrred to a 2yr inst and completed within 4yrs"
lab var dep_wdraw_orig_yr4_rt "% dependent stdnts withdrawn from orig inst within 4yrs"
lab var dep_wdraw_4yr_trans_yr4_rt "% dependent stdnts who xfrred to a 4yr inst and withdrew within 4yrs"
lab var dep_wdraw_2yr_trans_yr4_rt "% dependent stdnts who xfrred to a 2yr inst and withdrew within 4yrs"
lab var dep_enrl_orig_yr4_rt "% dependent stdnts who were still enrolled at orig inst within 4yrs"
lab var dep_enrl_4yr_trans_yr4_rt "% dependent stdnts who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var dep_enrl_2yr_trans_yr4_rt "% dependent stdnts who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var dep_unkn_orig_yr4_rt "% dependent stdnts with status unkn within 4yrs at orig inst"
lab var dep_unkn_4yr_trans_yr4_rt "% dependent stdnts who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var dep_unkn_2yr_trans_yr4_rt "% dependent stdnts who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var ind_death_yr4_rt "% independent stdnts who died within 4yrs at orig inst"
lab var ind_comp_orig_yr4_rt "% independent stdnts who completed within 4yrs at orig inst"
lab var ind_comp_4yr_trans_yr4_rt "% independent stdnts who xfrred to a 4yr inst and completed within 4yrs"
lab var ind_comp_2yr_trans_yr4_rt "% independent stdnts who xfrred to a 2yr inst and completed within 4yrs"
lab var ind_wdraw_orig_yr4_rt "% independent stdnts withdrawn from orig inst within 4yrs"
lab var ind_wdraw_4yr_trans_yr4_rt "% independent stdnts who xfrred to a 4yr inst and withdrew within 4yrs"
lab var ind_wdraw_2yr_trans_yr4_rt "% independent stdnts who xfrred to a 2yr inst and withdrew within 4yrs"
lab var ind_enrl_orig_yr4_rt "% independent stdnts who were still enrolled at orig inst within 4yrs"
lab var ind_enrl_4yr_trans_yr4_rt "% independent stdnts who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var ind_enrl_2yr_trans_yr4_rt "% independent stdnts who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var ind_unkn_orig_yr4_rt "% independent stdnts with status unkn within 4yrs at orig inst"
lab var ind_unkn_4yr_trans_yr4_rt "% independent stdnts who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var ind_unkn_2yr_trans_yr4_rt "% independent stdnts who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var female_death_yr4_rt "% fmle stdnts who died within 4yrs at orig inst"
lab var female_comp_orig_yr4_rt "% fmle stdnts who completed within 4yrs at orig inst"
lab var female_comp_4yr_trans_yr4_rt "% fmle stdnts who xfrred to a 4yr inst and completed within 4yrs"
lab var female_comp_2yr_trans_yr4_rt "% fmle stdnts who xfrred to a 2yr inst and completed within 4yrs"
lab var female_wdraw_orig_yr4_rt "% fmle stdnts withdrawn from orig inst within 4yrs"
lab var female_wdraw_4yr_trans_yr4_rt "% fmle stdnts who xfrred to a 4yr inst and withdrew within 4yrs"
lab var female_wdraw_2yr_trans_yr4_rt "% fmle stdnts who xfrred to a 2yr inst and withdrew within 4yrs"
lab var female_enrl_orig_yr4_rt "% fmle stdnts who were still enrolled at orig inst within 4yrs"
lab var female_enrl_4yr_trans_yr4_rt "% fmle stdnts who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var female_enrl_2yr_trans_yr4_rt "% fmle stdnts who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var female_unkn_orig_yr4_rt "% fmle stdnts with status unkn within 4yrs at orig inst"
lab var female_unkn_4yr_trans_yr4_rt "% fmle stdnts who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var female_unkn_2yr_trans_yr4_rt "% fmle stdnts who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var male_death_yr4_rt "% male stdnts who died within 4yrs at orig inst"
lab var male_comp_orig_yr4_rt "% male stdnts who completed within 4yrs at orig inst"
lab var male_comp_4yr_trans_yr4_rt "% male stdnts who xfrred to a 4yr inst and completed within 4yrs"
lab var male_comp_2yr_trans_yr4_rt "% male stdnts who xfrred to a 2yr inst and completed within 4yrs"
lab var male_wdraw_orig_yr4_rt "% male stdnts withdrawn from orig inst within 4yrs"
lab var male_wdraw_4yr_trans_yr4_rt "% male stdnts who xfrred to a 4yr inst and withdrew within 4yrs"
lab var male_wdraw_2yr_trans_yr4_rt "% male stdnts who xfrred to a 2yr inst and withdrew within 4yrs"
lab var male_enrl_orig_yr4_rt "% male stdnts who were still enrolled at orig inst within 4yrs"
lab var male_enrl_4yr_trans_yr4_rt "% male stdnts who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var male_enrl_2yr_trans_yr4_rt "% male stdnts who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var male_unkn_orig_yr4_rt "% male stdnts with status unkn within 4yrs at orig inst"
lab var male_unkn_4yr_trans_yr4_rt "% male stdnts who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var male_unkn_2yr_trans_yr4_rt "% male stdnts who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var pell_death_yr4_rt "% stdnts who rcved a Pell Grant at inst and who died within 4yrs at orig inst"
lab var pell_comp_orig_yr4_rt "% stdnts who rcved a Pell Grant at inst and who completed in 4yrs at orig inst"
lab var pell_comp_4yr_trans_yr4_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and completed within 4yrs"
lab var pell_comp_2yr_trans_yr4_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and completed within 4yrs"
lab var pell_wdraw_orig_yr4_rt "% stdnts who rcved a Pell Grant at inst and withdrew from orig inst within 4yrs"
lab var pell_wdraw_4yr_trans_yr4_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and withdrew within 4yrs"
lab var pell_wdraw_2yr_trans_yr4_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and withdrew within 4yrs"
lab var pell_enrl_orig_yr4_rt "% stdnts who rcved a Pell Grant at inst and who were still enrolled at orig inst within 4yrs"
lab var pell_enrl_4yr_trans_yr4_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var pell_enrl_2yr_trans_yr4_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var pell_unkn_orig_yr4_rt "% stdnts who rcved a Pell Grant at inst and with status unkn within 4yrs at orig inst"
lab var pell_unkn_4yr_trans_yr4_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var pell_unkn_2yr_trans_yr4_rt "% stdnts who rcved a Pell Grant at inst and who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var nopell_death_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and who died within 4yrs at orig inst"
lab var nopell_comp_orig_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and who completed in 4yrs at orig inst"
lab var nopell_comp_4yr_trans_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and completed within 4yrs"
lab var nopell_comp_2yr_trans_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and completed within 4yrs"
lab var nopell_wdraw_orig_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and withdrew from orig inst within 4yrs"
lab var nopell_wdraw_4yr_trans_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and withdrew within 4yrs"
lab var nopell_wdraw_2yr_trans_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and withdrew within 4yrs"
lab var nopell_enrl_orig_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and who were still enrolled at orig inst within 4yrs"
lab var nopell_enrl_4yr_trans_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var nopell_enrl_2yr_trans_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var nopell_unkn_orig_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and with status unkn within 4yrs at orig inst"
lab var nopell_unkn_4yr_trans_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var nopell_unkn_2yr_trans_yr4_rt "% stdnts who nvr rcved a Pell Grant at inst and who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var loan_death_yr4_rt "% stdnts who rcved a fed. loan at inst and who died within 4yrs at orig inst"
lab var loan_comp_orig_yr4_rt "% stdnts who rcved a fed. loan at inst and who completed in 4yrs at orig inst"
lab var loan_comp_4yr_trans_yr4_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 4yr inst and completed within 4yrs"
lab var loan_comp_2yr_trans_yr4_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and completed within 4yrs"
lab var loan_wdraw_orig_yr4_rt "% stdnts who rcved a fed. loan at inst and withdrew from orig inst within 4yrs"
lab var loan_wdraw_4yr_trans_yr4_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 4yr inst and withdrew within 4yrs"
lab var loan_wdraw_2yr_trans_yr4_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and withdrew within 4yrs"
lab var loan_enrl_orig_yr4_rt "% stdnts who rcved a fed. loan at inst and who were still enrolled at orig inst within 4yrs"
lab var loan_enrl_4yr_trans_yr4_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var loan_enrl_2yr_trans_yr4_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var loan_unkn_orig_yr4_rt "% stdnts who rcved a fed. loan at inst and with status unkn within 4yrs at orig inst"
lab var loan_unkn_4yr_trans_yr4_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var loan_unkn_2yr_trans_yr4_rt "% stdnts who rcved a fed. loan at inst and who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var noloan_death_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and who died within 4yrs at orig inst"
lab var noloan_comp_orig_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and who completed in 4yrs at orig inst"
lab var noloan_comp_4yr_trans_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and completed within 4yrs"
lab var noloan_comp_2yr_trans_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and completed within 4yrs"
lab var noloan_wdraw_orig_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and withdrew from orig inst within 4yrs"
lab var noloan_wdraw_4yr_trans_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and withdrew within 4yrs"
lab var noloan_wdraw_2yr_trans_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and withdrew within 4yrs"
lab var noloan_enrl_orig_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and who were still enrolled at orig inst within 4yrs"
lab var noloan_enrl_4yr_trans_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var noloan_enrl_2yr_trans_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var noloan_unkn_orig_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and with status unkn within 4yrs at orig inst"
lab var noloan_unkn_4yr_trans_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var noloan_unkn_2yr_trans_yr4_rt "% stdnts who nvr rcved a fed. loan at inst and who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var firstgen_death_yr4_rt "% 1st-genrtn stdnts who died within 4yrs at orig inst"
lab var firstgen_comp_orig_yr4_rt "% 1st-genrtn stdnts who completed within 4yrs at orig inst"
lab var firstgen_comp_4yr_trans_yr4_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and completed within 4yrs"
lab var firstgen_comp_2yr_trans_yr4_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and completed within 4yrs"
lab var firstgen_wdraw_orig_yr4_rt "% 1st-genrtn stdnts withdrawn from orig inst within 4yrs"
lab var firstgen_wdraw_4yr_trans_yr4_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and withdrew within 4yrs"
lab var firstgen_wdraw_2yr_trans_yr4_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and withdrew within 4yrs"
lab var firstgen_enrl_orig_yr4_rt "% 1st-genrtn stdnts who were still enrolled at orig inst within 4yrs"
lab var firstgen_enrl_4yr_trans_yr4_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var firstgen_enrl_2yr_trans_yr4_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var firstgen_unkn_orig_yr4_rt "% 1st-genrtn stdnts with status unkn within 4yrs at orig inst"
lab var firstgen_unkn_4yr_trans_yr4_rt "% 1st-genrtn stdnts who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var firstgen_unkn_2yr_trans_yr4_rt "% 1st-genrtn stdnts who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var not1stgen_death_yr4_rt "% not-1st-genrtn stdnts who died within 4yrs at orig inst"
lab var not1stgen_comp_orig_yr4_rt "% not-1st-genrtn stdnts who completed within 4yrs at orig inst"
lab var not1stgen_comp_4yr_trans_yr4_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and completed within 4yrs"
lab var not1stgen_comp_2yr_trans_yr4_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and completed within 4yrs"
lab var not1stgen_wdraw_orig_yr4_rt "% not-1st-genrtn stdnts withdrawn from orig inst within 4yrs"
lab var not1stgen_wdraw_4yr_trans_yr4_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and withdrew within 4yrs"
lab var not1stgen_wdraw_2yr_trans_yr4_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and withdrew within 4yrs"
lab var not1stgen_enrl_orig_yr4_rt "% not-1st-genrtn stdnts who were still enrolled at orig inst within 4yrs"
lab var not1stgen_enrl_4yr_trans_yr4_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and were still enrolled within 4yrs"
lab var not1stgen_enrl_2yr_trans_yr4_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and were still enrolled within 4yrs"
lab var not1stgen_unkn_orig_yr4_rt "% not-1st-genrtn stdnts with status unkn within 4yrs at orig inst"
lab var not1stgen_unkn_4yr_trans_yr4_rt "% not-1st-genrtn stdnts who xfrred to a 4yr inst and whose status is unkn within 4yrs"
lab var not1stgen_unkn_2yr_trans_yr4_rt "% not-1st-genrtn stdnts who xfrred to a 2yr inst and whose status is unkn within 4yrs"
lab var death_yr6_rt "% died within 6yrs at orig inst"
lab var comp_orig_yr6_rt "% completed within 6yrs at orig inst"
lab var comp_4yr_trans_yr6_rt "% who xfrred to a 4yr inst and completed within 6yrs"
lab var comp_2yr_trans_yr6_rt "% who xfrred to a 2yr inst and completed within 6yrs"
lab var wdraw_orig_yr6_rt "% withdrawn from orig inst within 6yrs"
lab var wdraw_4yr_trans_yr6_rt "% who xfrred to a 4yr inst and withdrew within 6yrs"
lab var wdraw_2yr_trans_yr6_rt "% who xfrred to a 2yr inst and withdrew within 6yrs"
lab var enrl_orig_yr6_rt "% still enrolled at orig inst within 6yrs"
lab var enrl_4yr_trans_yr6_rt "% who xfrred to a 4yr inst and were still enrolled within 6yrs"