Data Cart

Your data extract

0 variables
0 samples
View Cart
EDUCIL
Educational attainment, Israel

Codes and Frequencies



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

00No schoolingXXXX
10No degree or certificate·XXX
20Primary or intermediate school·XXX
211-4 yearsX···
225-8 yearsX···
239-10 yearsX···
31Secondary (not Matriculation)XXXX
32Matriculation (Begrut)XXXX
Post-secondary
41Post secondary but no degree or unknownX···
42Non-academic post-secondary degreeXXXX
43Other post-secondary degree··X·
44Lower post-secondary academic degreeX···
45Bachelor's degreeXXXX
46Masters or doctoral degreeXXXX
97Other, unclassifiedXX·X
98UnknownXXX·
99NIU (not in universe)XXXX

Explore how IPUMS created this variable

Download


      class Educil : public Editor {

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::il1972a: {
      if (IL1972A_0415() == 99 && IL1972A_0422() >= 1 && IL1972A_0422() <= 4)
        a = 0;
    } break;
    case dataset_id::il1983a: {
      if (IL1983A_0431() == 0 && IL1983A_0403() >= 15 && IL1983A_0403() <= 80 &&
          IL1983A_0427() == 1)
        a = 0;
      if (IL1983A_0431() == 0 && IL1983A_0403() >= 15 && IL1983A_0403() <= 80 &&
          IL1983A_0427() == 8)
        a = 98;
    } break;
    case dataset_id::il1995a: {
      if (IL1995A_0421() == 99 && IL1995A_0404() >= 15 &&
          IL1995A_0404() <= 80 && IL1995A_0418() == 3)
        a = 0;
    } break;
    case dataset_id::il2008a: {
      if (IL2008A_0451() == 0 && IL2008A_0406() >= 15 && IL2008A_0406() <= 85)
        a = 0;
    } break;
    }

    setData(a);
  }
};