Data Cart

Your data extract

0 variables
0 samples
View Cart
EDUCSD
Educational attainment, Sudan

Codes and Frequencies



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

00NIU (not in universe)X
10NoneX
11PreschoolX
Primary
23Primary less than grade 4X
24Primary grade 4X
26Primary grade 6X
28Primary grade 8X
Junior secondary
31Junior secondary 3X
32Junior secondary 4X
Secondary
33Secondary grade 3X
34Secondary grade 4X
35Secondary grade 5X
36Secondary grade 6X
Higher education, undergraduate
41Post-secondary diplomaX
42University first degreeX
Higher education, graduate
51Post-graduate diplomaX
52Master's degreeX
53Doctorate degreeX
99UnknownX

Explore how IPUMS created this variable

Download


      class Educsd : public Editor {

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::sd2008a: {
      if (SD2008A_0433() == 99 && SD2008A_0406() >= 6)
        a = 10;
    } break;
    }

    setData(a);
  }
};