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 (120 121 122 123 124 125 126 127 128) or eloisirb in (120 121 122 123 124 125 126 127 128) or eloisirc in (120 121 122 123 124 125 126 127 128) or eloisird in (120 121 122 123 124 125 126 127 128) or eloisire in (120 121 122 123 124 125 126 127 128)) then do;
if sexe=1 then hmusiq=1; if sexe=2 then fmusiq=1; end;
if (cloisira in (120 121 122 123 124 125 126 127 128) or cloisirb in (120 121 122 123 124 125 126 127 128) or cloisirc in (120 121 122 123 124 125 126 127 128) or cloisird in (120 121 122 123 124 125 126 127 128) or cloisire in (120 121 122 123 124 125 126 127 128)) then do;
if sexe=1 then fmusiq=1; if sexe=2 then hmusiq=1; end;
if hmusiq ne 1 then hmusiq=0; if fmusiq ne 1 then fmusiq=0;