Data Cart

Your data extract

0 variables
0 samples
View Cart
ECLASSWK
Status in employment (class of worker), Europe

Codes and Frequencies



Loading Frequency Data...

Can't find the category you are looking for? Try the Detailed codes

Explore how IPUMS created this variable

Download


      class Eclasswk : public Editor {

public:
  Eclasswk(VarPointer varInfo) : Editor(varInfo) {}
  void edit() {
    // The source variable is identified in the trans table. It's an integrated
    // variable. Rather than the recoded version, we want the fully edited
    // version as the input to the translation table of ECLASSWK:
    long a = getRecodedFromEditedSource();

    setData(a);
  }
};