Data Cart

Your data extract

0 variables
0 samples
View Cart
WGVISION
Difficulty seeing (Washington group)

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

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

    long a = getRecoded();
    switch (dataSet) {
    case dataset_id::tt2011a: {
      if (TT2011A_0424() == 2 && TT2011A_0431() == 9)
        a = 1;
      if (TT2011A_0424() == 9 && TT2011A_0431() == 9)
        a = 8;
    } break;
    }

    setData(a);
  }
};