Data Cart

Your data extract

0 variables
0 samples
View Cart
BPLCO2
Municipality of birth recode, Colombia

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 Bplco2 : public Editor {

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::co1993a: {
      if (CO1993A_0415() == 99999 && CO1993A_0413() == 3)
        a = 990;
      if (CO1993A_0415() == 99999 && CO1993A_0413() == 1)
        a = Z_MUNICO(0);
    } break;
    }

    setData(a);
  }
};