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 (110 111 112 113 114 115) or eloisirb in (110 111 112 113 114 115) or eloisirc in (110 111 112 113 114 115) or eloisird in (110 111 112 113 114 115) or eloisire in (110 111 112 113 114 115)) then do;
if sexe=1 then hlecture=1; if sexe=2 then flecture=1; end;
if (cloisira in (110 111 112 113 114 115) or cloisirb in (110 111 112 113 114 115) or cloisirc in (110 111 112 113 114 115) or cloisird in (110 111 112 113 114 115) or cloisire in (110 111 112 113 114 115)) then do;
if sexe=1 then flecture=1; if sexe=2 then hlecture=1; end;
if hlecture ne 1 then hlecture=0; if flecture ne 1 then flecture=0;