La variable indique dans quelle province la personne habite. La province est dérivé de
PP0025 (Domicile).
Codification|
Code | Province |
|---|
|
. | missing |
|
10000 | ANVERS |
|
30000 | FLANDRE OCCIDENTALE |
|
40000 | FLANDRE ORIENTALE |
|
50000 | HAINAUT |
|
60000 | LIEGE |
|
70000 | LIMBOURG |
|
80000 | LUXEMBOURG |
|
90000 | NAMUR |
|
21000 | BXL – BRU |
|
20001 | BRABANT FLAMAND |
|
20002 | BRABANT WALLON |
|
0 | étranger |
|
|
Remarques
Pour les premières années 2002-2004, il n’est pas possible d’établir une distinction entre le statut ‘missing’ (.) et les valeurs nulles (0) étant donné que les données ont été toutes mises à zéro (0).
Méthode de calcul
%let NIS = PP0025;
if missing(&NIS.) then PROVINCE=.;
else if 93999 < &NIS. then PROVINCE=.;
else if &NIS. < 100 then PROVINCE=.;
else if &NIS. in (995,999) then PROVINCE=.;
else if &NIS. < 1000 then PROVINCE=0;
else if INT(&NIS./10000)in (1,3,4,5,6,7,8,9) then PROVINCE=INT(&NIS./10000)*10000;
else if INT(&NIS./1000)=21 then PROVINCE=21000;
else if INT(&NIS./1000)=23 then PROVINCE=20001;
else if INT(&NIS./1000)=24 then PROVINCE=20001;
else if INT(&NIS./1000)=25 then PROVINCE=20002;
else PROVINCE=.;