| Table=13. Educational Attainment Universe=Persons Over 25 |
| Variable Name |
Label |
Definition - Code used to derive |
Comment |
Universe Variable |
Weight Variable |
| Over25 |
Over 25 Yrs of Age |
p37i1 |
|
TotPop |
|
| LessThan9th |
Less Than 9th Grade |
sum(of P37i3-P37i6 P37i20-P37i23) |
|
Over25 |
|
| SomeHighSchool |
9th thru 12th grade, No Diploma |
sum(of P37i7-P37i10 P37i24-P37i27) |
|
Over25 |
|
| HighSchool |
High School Grad or GED |
P37i11 + P37i28 |
These are people with nothing beyond High School |
Over25 |
|
| NoCollege |
Did Not Attend College |
LessThan9th + SomeHighSchool + HighSchool |
|
Over25 |
|
| SomeCollege |
Some College, no degree |
sum(of P37i12-P37i14 P37i29-P37i31) |
This is not the complement of NoCollege. It is people with some college but no degree except maybe an associates |
Over25 |
|
| Bachelors |
Bachelors |
P37i15 + P37i32 |
People with a Bachelors and no more |
Over25 |
|
| Masters |
Masters |
P37i16 + P37i33 |
People with a Masters and no more. NA on STF3 in 1990. |
Over25 |
|
| ProfPHD |
Prof School Degree or PhD |
P37i17 + P37i18 + P37i34 + P37i35 |
NA on STF3 in 1990 |
Over25 |
|
| GradProf |
Graduate or Professional Degree |
Masters + ProfPHD |
Added together for compatibility with 1990 STF3 |
Over25 |
|
The value displayed in bold in the Variable Name column is the name on the dataset. These are the names you will see displayed on the drop-down variables menu list when running the Dexter program. To run an extract that included the education attainment table you would just select these 10 variables. Note that the first variable in the table, Over25, is a special table-universe variable. It is not really an education item per se, but it is included because of its importance as a denominator used in calculating Pct variables. What are those? A footnote at the bottom of the report gives a brief explanation, but we need to make it clearer. Most variables on this dataset represent counts of things with a certain property. For example, the variable LessThan9th is the count of persons over 25 with less than a 9th grade education. We also generate a variable, PctLessThan9th, containing the percentage this is of the universe. The "Universe Variable" column tells you what variable, if any, we use as the denominator to create the corresponding Pct variable. Notice that the Over25 row has an entry of "TotPop" in the Universe Variable column. This tells us that the dataset has a variable named PctOver25 and that the value of this variable is the Over 25 population as a percentage of the total population. I.e., PctOver25=100*Over25/TotPop . Note that these percentage variables are the source of the values that appear in the Percent column of the Demographic Profile 3 (dp3_2k) reports. (See sample).
The Label column contains a more extended description of the variable and corresponds to the Label item stored on the SAS dataset. It will appear in the second row of Dexter-generated csv files and as the column label on html output.
The Definition column is for people who want to know precisely how we derived the variable. It is a SAS numeric expression that was used on the right side of a SAS assignment statement to define the variable. For example, the SAS program that creates these extract datasets (by accessing the full-table sf32000-filetype datasets) contains the statement:
HighSchool=P37i11 + P37i28;
You can verify that the formula is correct by browsing the plabels.txt file in the Varlabs subdirectory of the sf32000 data directory. That file contains the following text:
/* P37. SEX BY EDUCATIONAL ATTAINMENT FOR THE POPULATION */
/* 25 YEARS AND OVER [35] */
/* Universe: Population 25 years and over */
P37i1='Total:' /* P037001 */
P37i2=' Male:' /* P037002 */
P37i3=' No schooling completed' /* P037003 */
P37i4=' Nursery to 4th grade' /* P037004 */
P37i5=' 5th and 6th grade' /* P037005 */
P37i6=' 7th and 8th grade' /* P037006 */
P37i7=' 9th grade' /* P037007 */
P37i8=' 10th grade' /* P037008 */
P37i9=' 11th grade' /* P037009 */
P37i10=' 12th grade, no diploma' /* P037010 */
P37i11=' High school graduate (includes equivalency)' /* P037011 */
P37i12=' Some college, less than 1 year' /* P037012 */
P37i13=' Some college, 1 or more years, no degree' /* P037013 */
P37i14=' Associate degree' /* P037014 */
P37i15=' Bachelor''s degree' /* P037015 */
P37i16=' Master''s degree' /* P037016 */
P37i17=' Professional school degree' /* P037017 */
P37i18=' Doctorate degree' /* P037018 */
P37i19=' Female:' /* P037019 */
P37i20=' No schooling completed' /* P037020 */
P37i21=' Nursery to 4th grade' /* P037021 */
P37i22=' 5th and 6th grade' /* P037022 */
P37i23=' 7th and 8th grade' /* P037023 */
P37i24=' 9th grade' /* P037024 */
P37i25=' 10th grade' /* P037025 */
P37i26=' 11th grade' /* P037026 */
P37i27=' 12th grade, no diploma' /* P037027 */
P37i28=' High school graduate (includes equivalency)' /* P037028 */
P37i29=' Some college, less than 1 year' /* P037029 */
P37i30=' Some college, 1 or more years, no degree' /* P037030 */
P37i31=' Associate degree' /* P037031 */
P37i32=' Bachelor''s degree' /* P037032 */
P37i33=' Master''s degree' /* P037033 */
P37i34=' Professional school degree' /* P037034 */
P37i35=' Doctorate degree' /* P037035 */
You can see from this that P37i11 is the male high school graduates and P37i28 is the female high school grads. So the sum is the total high school graduates, as advertised. Users are encouraged to examine these definitions carefully and to report any errors to the author. In some cases, the definition may not be in error exactly, but it may be less than perfectly clear from the name and label what it really represents. This is where the Definition column can be very helpful.
The Comment column is pretty obvious. Where we felt there was some need to clarify something about the variable we added it here. Thus the explanation for SomeCollege is to warn users that is not all people who have at least some college experience, but rather only those with some college experience but no degree. There is a lot of this "fine print" that has to be understood when dealing with census data.
The Universe Variable column has already been discussed above. If it is blank then there will not be a corresponding Pct variable. If a value appears, it means it was used as the denominator in generating a Pct variable.
The Weight Variable column is blank for all entries in our sample Educational Attainment table. It will only have a value for variables that can be aggregated by taking a weighted average. If, for example, the Bureau had reported (which they did not) total years of school completed then this table might have had an entry labeled "Average Years of School". The weight variable for such an item would have been the universe variable Over25. An example of this that actually exists on the dataset occurs in Table 21. The PCI variable (Per Capita Income) has TotPop listed as the weight variable. This means when you aggregate a dataset containing the PCI variable you need to take a weighted average of the variable, using the total population count as the weight.