Data Cart

Your data extract

0 variables
0 samples
View Cart
EDUCPT
Educational attainment, Portugal

Codes and Frequencies



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

Less than primary completed
11IlliterateXXXX
12Can read and writeXXXX
Basic education
21Grades 1-4XXXX
22Grades 5-6XXXX
23Grades 7-9XXXX
24Grades 10-12XXXX
Higher education
40Post-secondary technical····
41Specialized technical school (level 4)···X
42Professional school (courses)XX··
43Other post-secondary educationXXX·
50University degreeX···
51Bachelor's degree·XXX
52Professional degree (licenciature)·XXX
53Master's and PhD·XXX

Explore how IPUMS created this variable

Download


      class Educpt : public Editor {

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::pt2011a: {
      if (PT2011A_0419() == 1 && PT2011A_0417() == 1)
        a = 12;
    } break;
    }

    setData(a);
  }
};