Data Cart

Your data extract

0 variables
0 samples
View Cart
WRKMORE
Would like to work more hours

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 Wrkmore : public Editor {

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::ng2009a: {
      if (NG2009A_0419() + NG2009A_0425() > 40)
        a = 9;
    } break;
    }

    setData(a);
  }
};