Data Cart

Your data extract

0 variables
0 samples
View Cart
LABFORCE
Labor force participation

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

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

    long a = getRecodedFromEditedSource();
    if (AGE() < 15)
      a = 9;

    setData(a);
  }
};