Data Cart

Your data extract

0 variables
0 samples
View Cart
EDUCMZ
Educational attainment, Mozambique

Codes and Frequencies



An 'X' indicates the category is available for that sample

000No educationXXX
010Preschool··X
020Literacy programXXX
Primary school (1-5 grade)
031Not completed or grade unspecifiedXX·
032CompletedXXX
Primary school (6-7 grade)
041Not completed or grade unspecifiedXX·
042CompletedXXX
General secondary 1st cycle
051Not completedXX·
052CompletedXXX
General secondary 2nd cycle
061Not completed·X·
062CompletedXXX
Technical and vocational education
070Elementary or basic technical school···
071Not completedXX·
072CompletedXXX
Upper technical school
081Not completed·X·
082CompletedXXX
Primary teacher training course
091Not completed·X·
092CompletedXXX
Higher education
101Not completed·X·
102CompletedXXX
998UnknownXXX
999NIU (not in universe)XXX

Explore how IPUMS created this variable

Download


      class Educmz : public Editor {

public:
  Educmz(VarPointer varInfo) : Editor(varInfo) {}
  void edit() {

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::mz2007a: {
      if (MZ2007A_0403() >= 5 && MZ2007A_0445() == 3)
        a = 10;
    } break;
    }

    setData(a);
  }
};