INCFMIC is a 6-digit numeric variable.
Codes
999998 = Unknown/missing.
999999 = NIU (not in universe).
Explore how IPUMS created this variable
Most IPUMS data transformations are performed using variable harmonization tables that specify how each value in the source data is recoded. Some variables also require programming logic in addition to the harmonization table. The harmonization documents for this variable are:
- Harmonization table
- Supplemental programming
- Instructions for interpreting harmonization documents
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);
}
};
Description
INCFMIC reports the amount of income the respondent received from family members living in the country (as opposed to family members living abroad; see INCFMAB). The amounts are provided on a monthly basis in pesos.
Universe
- Mexico 2000: Persons age 12+
Availability
- Mexico: 2000

Loading...