Codes and Frequencies
An 'X' indicates the category is available for that sample
Code | Label |
iraq
1997
|
---|---|---|
00 | No certificate | X |
10 | Primary | X |
20 | Lower secondary | X |
30 | Upper secondary | · |
31 | Academic diploma | X |
32 | Vocational diploma | X |
40 | Post-secondary | · |
41 | Technical degree | X |
42 | College or university degree | X |
43 | High diploma | X |
44 | Masters degree | X |
45 | Doctoral degree | X |
98 | Unknown | X |
99 | NIU (not in universe) | X |
Can't find the category you are looking for? Try the Detailed codes
Explore how IPUMS created this variable
Most IPUMS data transformations are performed using variable harmonization tables that specify how each value in the source data is recoded. Some variables also require programming logic in addition to the harmonization table. The harmonization documents for this variable are:
- Harmonization table
- Supplemental programming
- Instructions for interpreting harmonization documents
class Educiq : public Editor {
public:
Educiq(VarPointer varInfo) : Editor(varInfo) {}
void edit() {
long a = getRecoded();
switch (dataSet) {
case dataset_id::iq1997a: {
if (IQ1997A_0443() == 0) {
if (IQ1997A_0449() >= 16 && IQ1997A_0449() < 23 ||
IQ1997A_0449() >= 31 && IQ1997A_0449() < 33)
a = 10;
if (IQ1997A_0449() >= 23 && IQ1997A_0449() < 26 ||
IQ1997A_0449() >= 33 && IQ1997A_0449() < 36)
a = 20;
if (IQ1997A_0449() == 26 || IQ1997A_0449() >= 51 && IQ1997A_0449() < 54)
a = 31;
if (IQ1997A_0449() == 36 || IQ1997A_0449() == 41)
a = 32;
if (IQ1997A_0449() >= 42 && IQ1997A_0449() <= 45)
a = 41;
if (IQ1997A_0449() >= 54 && IQ1997A_0449() <= 56)
a = 42;
if (IQ1997A_0449() == 60)
a = 43;
if (IQ1997A_0449() == 70)
a = 44;
if (IQ1997A_0449() == 80)
a = 45;
}
if (IQ1997A_0449() >= 90 && IQ1997A_0443() == 0 || IQ1997A_0448() == 999)
a = 98;
if (IQ1997A_0448() < 10)
a = 99;
} break;
}
setData(a);
}
};
Description
EDUCIQ indicates the highest level of schooling in Iraq the person had completed at the time of the census.
Comparability — General
Primary and secondary school are each six years in duration. There are two secondary tracks and several post-secondary degrees.
EDUCIQ is constructed from separate variables recording the grade being attended by persons in school and educational attainment for persons who were no longer attending school. To convert the attendance variable to educational attainment we assumed the person completed one fewer year of schooling. Fortunately, the level-attended variable provided number of years within level. The attendance variable was converted to attainment using the following thresholds:
No certificate: persons who are currently attending but have 5 or less years of primary education
Primary certificate: 6 years of primary, or up to two years of intermediate or vocational secondary education.
Lower secondary certificate: 3 to 5 years of intermediate or vocational secondary education.
Academic secondary certificate: 6 years of intermediate secondary or 1 to 3 years of college education.
Vocation secondary certificate: 6 years of vocational secondary or 1 year of intermediate post-secondary education
Post secondary degree: 2 to 5 years of post-secondary education
College degree: 4 or more years of college education
It should be noted that the category "no certificate" could include non-responses.
Universe
- Persons age 10+
Availability
- Iraq: 1997

Loading...