Data Cart

Your data extract

0 variables
0 samples
View Cart
EDUCJO
Educational attainment, Jordan

Codes and Frequencies



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

00NIU (not in universe)X
Less than primary
11IlliterateX
12LiterateX
Basic education
20Some primary (grades 1-5)X
21Primary (grades 1-6 completed)X
22Preparatory (grades 7-9 completed)X
23Basic education (grade 10 completed)X
Secondary (grades 11-12 completed)
30Secondary, unspecified trackX
31Vocational secondaryX
32Academic secondaryX
Higher education
41Intermediate diplomaX
42Bachelor'sX
43Higher diplomaX
44Master'sX
45Ph.D.X
99UnknownX

Explore how IPUMS created this variable

Download


      class Educjo : public Editor {

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::jo2004a: {
      if (JO2004A_0448() == 999 && JO2004A_0449() == 99 && JO2004A_0431() < 15)
        a = 0;
    } break;
    }

    setData(a);
  }
};