Data Cart

Your data extract

0 variables
0 samples
View Cart
ERELATE
Relationship to head, 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 Erelate : public Editor {

public:
  Erelate(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);
  }
};