Data Cart

Your data extract

0 variables
0 samples
View Cart

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

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::kg1999a: {
      if (KG1999A_0056() == 2 && KG1999A_0057() == 1)
        a = 2;
    } break;
    }

    setData(a);
  }
};