La variable indique le régime de sécurité sociale appliqué à la personne assurée.
CodificationValeur | Signification |
---|
1 | régime des travailleurs salariés |
2 | secteur public |
3 | régime des travailleurs indépendants |
4 | autres |
. | missing |
Méthode de calcul
%let SOC = PP1003;
if missing(&SOC.) then SOCIAL_CAT =.;
else if &SOC. in (0) then SOCIAL_CAT =.;
else if &SOC. in (1,2,5,7,10,11) then SOCIAL_CAT = 1;
else if &SOC. in (3,9) then SOCIAL_CAT = 2;
else if &SOC. in (4,6,8,12) then SOCIAL_CAT = 3;
else if &SOC. in (13,14,15) then SOCIAL_CAT = 4;
else SOCIAL_CAT =.;