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 Mig1_p_sv : public Editor {
public:
Mig1_p_sv(VarPointer varInfo) : Editor(varInfo) {}
void edit() {
long a = getRecoded();
switch (dataSet) {
case dataset_id::sv1992a: {
if (SV1992A_0444() == 99)
a = GEO1_SV(0);
} break;
case dataset_id::sv2007a: {
if (SV2007A_0474() == 99 && SV2007A_0475() == 3)
a = 222097;
if (SV2007A_0474() == 99 && SV2007A_0475() == 1)
a = GEO1_SV(0);
} break;
}
setData(a);
}
};
Description
MIG1_P_SV indicates the person's department of previous residence within El Salvador. The migration could have occurred at any time in the past.
Click on the Source Variables tab for information on place of residence for each sample year. Source variables may contain more geographic unit detail but are not suitable for cross-temporal comparison.
Universe
- El Salvador 1992: All persons
- El Salvador 2007: All persons
Availability
- El Salvador: 1992, 2007
Loading...