Data Cart

Your data extract

0 variables
0 samples
View Cart
WGMOBIL
Difficulty walking or climbing stairs (Washington group)

Codes and Frequencies



An 'X' indicates the category is available for that sample

1No difficultyXXXXXXXXXXXXXXX1No difficultyXXXXXX
2Some difficultyXXXXXXXXXXXXXXX2Some difficultyXXXXXX
3A lot of difficultyXXX·XXXXXXXXXXX3A lot of difficultyXXXXXX
4Cannot do at allXXXXXXXXXXXXXXX4Cannot do at allXXXXXX
8UnknownXX··XX·XX···XXX8Unknown·X·XXX
9NIU (not in universe)··XXX·X····XXX·9NIU (not in universe)·XX·XX

Explore how IPUMS created this variable

Download


      class Wgmobil : public Editor {

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

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

    setData(a);
  }
};