Data Cart

Your data extract

0 variables
0 samples
View Cart

Codes

This variable is not available for any of the currently selected samples.

Explore how IPUMS created this variable

Download


      class Agemonth : public Editor {

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::us1910a: {
      if (US1910A_0430() >= 0 && US1910A_0430() <= 12 && US1910A_0427() == 1)
        a = 99;
    } break;
    }

    setData(a);
  }
};