Data Cart

Your data extract

0 variables
0 samples
View Cart
INCFMIC
Income from family members living in the country

INCFMIC is a 6-digit numeric variable.

Codes

999998 = Unknown/missing.
999999 = NIU (not in universe).

Explore how IPUMS created this variable

Download


      class Incfmic : public Editor {

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

    long a = getRecoded();
    if (dataSet == dataset_id::mx2000a) {
      if (MX2000A_0455() == 0 || MX2000A_0456() == 0)
        a = 999998;
      if (MX2000A_0455() == 0 && MX2000A_0456() == 0)
        a = 999999;
      if (MX2000A_0455() == 9 || MX2000A_0456() > 999997)
        a = 999998;
      if (MX2000A_0455() == 2)
        a = 0;
    }

    setData(a);
  }
};