Codes and Frequencies
Can't find the category you are looking for? Try the Detailed codes
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 Sizemx : public Editor {
public:
Sizemx(VarPointer varInfo) : Editor(varInfo) {}
void edit() {
long a = getRecoded();
switch (dataSet) {
case dataset_id::mx2005a: {
if (MX2005A_0423(1) == 1)
a = 1;
if (MX2005A_0423(1) == 2)
a = 2;
if (MX2005A_0423(1) == 3)
a = 3;
if (MX2005A_0423(1) == 4)
a = 8;
if (MX2005A_0423(1) == 5)
a = 9;
} break;
}
setData(a);
}
};
Description
SIZEMX identifies the population of the locality within Mexico in all sample years. The unharmonized source variables from 1995, 2000, and 2015 samples provide greater detail between 15,000 and 100,000 inhabitants. Unharmonized source variables from 1990, 2005, and 2005 samples provide more detail between 100,000 and more inhabitants.
The full set of geography variables for Mexico can be found in the IPUMS International Geography variables list. For cross-national geographic analysis on the first and second major administrative level of any country refer to GEOLEV1, and GEOLEV2. More information on IPUMS-International geography can be found here.
Universe
- All households
Availability
- Mexico: 1990, 1995, 2000, 2005, 2010, 2015, 2020

Loading...