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 (160 161 162 550 551 560 562) or eloisirb in (160 161 162 550 551 560 562)
or eloisirc in (160 161 162 550 551 560 562) or eloisird in (160 161 162 550 551 560 562)
or eloisire in (160 161 162 550 551 560 562)) then do; if sexe=1 then hjardin=1; if sexe=2 then fjardin=1; end;
if (cloisira in (160 161 162 550 551 560 562) or cloisirb in (160 161 162 550 551 560 562)
or cloisirc in (160 161 162 550 551 560 562) or cloisird in (160 161 162 550 551 560 562)
or cloisire in (160 161 162 550 551 560 562)) then do; if sexe=1 then fjardin=1; if sexe=2 then hjardin=1; end;
if hjardin ne 1 then hjardin=0; if fjardin ne 1 then fjardin=0;