Data Cart

Your data extract

0 variables
0 samples
View Cart
MIG1_5_US
State of residence 5 years ago, United States; consistent boundaries, GIS

Codes and Frequencies



Loading Frequency Data...

Can't find the category you are looking for? Try the Detailed codes

Explore how IPUMS created this variable

Download


      class Mig1_5_us : public Editor {

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::us1980a: {
      if (US1980A_0481() == 990 && US1980A_0423() >= 5)
        a = GEO1_US(0);
    } break;
    }

    setData(a);
  }
};