De variabele duidt aan aan in welke provincie de persoon woont. De provincie wordt afgeleid uit
PP0025 (Woonplaats).
Codering
Code | Provincie |
---|
. | missing |
10000 | ANTWERPEN |
30000 | WEST-VLAANDEREN |
40000 | OOST-VLAANDEREN |
50000 | HAINAUT |
60000 | LIEGE |
70000 | LIMBURG |
80000 | LUXEMBOURG |
90000 | NAMUR |
21000 | BXL – BRU |
20001 | VLAAMS BRABANT |
20002 | WAALS BRABANT |
0 | buitenland |
|
Opmerkingen
Voor de eerste jaren 2002-2004 is het niet mogelijk een onderscheid te maken tussen missings (.) en nul waarden (0) omdat deze alle op nul (0) werden gezet.
Berekeningswijze
%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=.;