THE RESULTS OF THE AUSTRIAN GENERAL ELECTIONS

Source: "Der Standard", 10th October 1994

Information adapted by Guenther Rieder
Interdisciplinary Institute for Urban and Regional Planning
University of Economics and Business Administration, Vienna, Austria
*/
data election;
input code county $&45. SPabs SPper VPabs VPper FPabs FPper
GRUENabs GRUENper LIFabs LIFper
VGabs VGper KPabs KPper;

Label code="county"
county="name of county"
SPabs="votes for Sozialdemokratische Partei, absolute"
SPper="votes for Sozialdemokratische Partei, per cent"
VPabs="votes for Volkspartei, absolute"
VPper="votes for Volkspartei, per cent"
FPabs="votes for Freiheitliche Partei, absolute"
FPper="votes for Freiheitliche Partei, per cent"
GRUENabs="votes for Die Gruenen, absolute"
GRUENper="votes for Die Gruenen, per cent"
LIFabs="votes for Liberales Forum, absolute"
LIFper="votes for Liberales Forum, per cent"
VGabs="votes for Die Vereinten Gruenen, absolute"
VGper="votes for Die Vereinten Gruenen, per cent"
KPper="votes for Kommunistische Partei, absolute"
KPabs="votes for Kommunistische Partei, per cent";

cards;

100 Burgenland        79597  44.48   56521  21.58   29935  16.73   6413   3.58
  5164   2.89
126    0.07    178    0.1
200 Carinthia        129307  40.16   52533  16.32  109043  33.87  17133   5.32
 10908   3.39
511    0.16    475    0.15
300 Lower Austria    318322  35.07  308312  33.97  165160  18.2   50554   5.57
 51060   5.63
877    0.1    2440    0.27
400 Upper Austria    267766  34.8   223175  29.01  174898  22.73  55231   7.18
 34434   4.48
1311    0.17   1528    0.2
500 Salzburg          80298  31.5    74055  29.     61719  24.2   19797   7.8
 15442   6.
344    0.1       .    .
600 Styria           273432  36.89  204205  27.55  174435  23.53  43633   5.89
 34881   4.71
1017    0.14   2865    0.39
700 Tyrol             85143  24.68  125349  36.33   76918  22.29  31697   9.19
 17514   5.08
461    0.13    626    0.18
800 Vorarlberg        32004  21.20   57270  37.94   36312  24.06  12561   8.32
  9273   6.14
248    0.16      .    .
900 Vienna           287931  38.91  121841  16.47  169986  22.97  72053   9.74
 74506  10.07
622    0.08   3281    0.44
;
run;
data election; set election;
  tvot=SPabs+VPabs+FPabs+GRUENabs+LIFabs+VGabs+KPabs;
  hh=SPper*SPper/10000+VPper*VPper/10000+FPper*FPper/10000;
  if GRUENper ne . then hh=hh+GRUENper*GRUENper/10000;
  if LIFper ne . then hh=hh+LIFper*LIFper/10000;
  if VGper ne . then hh=hh+VGper*VGper/10000;
  if KPper ne . then hh=hh+KPper*KPper/10000;
  enpv=1/hh;
if county='Burgenland' then mag =  9;
if county='Carinthia' then mag = 9;
if county='Lower Austria' then mag = 25;
if county='Upper Austria' then mag = 18;
if county='Salzburg' then mag = 6;
if county='Styria' then mag = 17;
if county='Tyrol' then mag = 9;
if county='Vorarlberg' then mag =  4;
if county='Vienna' then mag = 23;
if mag le 10 then bin=1;
if mag ge 11 then bin=2;
run;
proc print; var county enpv mag spper vpper fpper gruenper lifper
            vgper kpper; run;
proc sort; by bin; run;
proc means; var enpv; by bin; run;