Notes
Variable construite à partir des variables suivantes :
- SEXE (Sexe)
- ELOISIRA (1er loisir préféré)
- ELOISIRB (2e loisir préféré)
- ELOISIRC (3e loisir préféré)
- ELOISIRD (4e loisir préféré)
- ELOISIRE (5e loisir préféré)
- CLOISIRA (1er loisir préféré du conjoint)
- CLOISIRB (2e loisir préféré du conjoint)
- CLOISIRC (3e loisir préféré du conjoint)
- CLOISIRD (4e loisir préféré du conjoint)
- CLOISIRE (5e loisir préféré du conjoint)
Programme SAS :
if (eloisira in (80 81 82 83 84 170 180 181 182 183 184 185 187)
or eloisirb in (80 81 82 83 84 170 180 181 182 183 184 185 187)
or eloisirc in (80 81 82 83 84 170 180 181 182 183 184 185 187)
or eloisird in (80 81 82 83 84 170 180 181 182 183 184 185 187)
or eloisire in (80 81 82 83 84 170 180 181 182 183 184 185 187)) then do;
if sexe=1 then hcoutric=1; if sexe=2 then fcoutric=1; end;
if (cloisira in (80 81 82 83 84 170 180 181 182 183 184 185 187)
or cloisirb in (80 81 82 83 84 170 180 181 182 183 184 185 187)
or cloisirc in (80 81 82 83 84 170 180 181 182 183 184 185 187)
or cloisird in (80 81 82 83 84 170 180 181 182 183 184 185 187)
or cloisire in (80 81 82 83 84 170 180 181 182 183 184 185 187)) then do;
if sexe=1 then fcoutric=1; if sexe=2 then hcoutric=1; end;
if hcoutric ne 1 then hcoutric=0; if fcoutric ne 1 then fcoutric=0;