Professional politicians and their position on electoral lists
Austria
elections
Electoral lists in Austria include next to the name of each candidate also their profession. How prevalent are candidates who are politicians by profession and where are they located on the lists? An analysis of the electoral lists of the recent European Elections.
Author
Roland Schmidt
Published
9 Jul 2024
Just the results, please!
For interactive version see plots in the post below.
1 Context
A few weeks ago, I attended a presentation on the question how far elected MPs are representative of the wider population when it comes to their demographic and socioeconomic features. In the subsequent Q & A round, a participant mentioned that she recently voted for the first time in Austria (EP elections), and was somewhat surprised to see that the profession of each candidate is stated on the electoral list, next to the candidate’s name. Considering that voters may have different associations with different professions, this detail could be pertinent to the question how voters feel represented.
I have to admit that I have never given any thought to why a candidate’s job is actually put on an electoral list. But it seems indeed reasonable to me to assume that a specific profession, intentionally or not, conveys at least on a purely emotional level something about the candidate, what may or may not be reflective of his political position, but what may have further implications on how voters can relate to a specific candidate.
Most interestingly though, the mentioned participant then went on to highlight one particular professional group: Politicians. Unsurprisingly, there are some candidates who put forward a political mandate as their professional occupation. E.g. an incumbent member of the European Parliament will submit this MEP position as her profession; a mayor who pursues her mandate as a job will state this position etc. But considering the relatively small number of political mandates, this is likely to be one of the most unrepresentative professional groups one can think of.
But there might be more to it. From a voter’s perspective, a candidate with a professional political occupation might be perceived in starkly contrasting ways. For some, the political profession of a candidate may suggest the presence of a distinct set of skills, expertise, and experience, and hence a level of ‘professionalization’ which makes a candidate particularly qualified for a future mandate. On the other hand, for some other voters, seeing a candidate who earns his or her money with a political mandate might evoke the feeling of detachment and an insider-outsider division at play. How can somebody represent the wider population if he/she even doesn’t form part of the general (working) population, but rather forms part of a political elite?
To be clear, I am exaggerating here and I do not pretend to have read up on any of these aspects. But be it as it may, this all made me wonder how prevalent professional politicians are actually on electoral lists. Are there many and where are they located on their respective parties’ electoral lists. To answer these questions, I scraped the electoral lists of the recent EP elections from the website of the Austrian MoI, extracted candidates’ data on their professional background and their position on the electoral list. Below the required steps in R and the eventual result.
As always, if you spot any error, have a suggestion or question, feel free to contact me via direct message on X or, preferably, mastadon.
The electoral lists are available on the website of the Austrian MoI. Here, I first identify the relevant links, load the relevant files, and then extract the data of interest.
Now with the raw data available, the next step is about identifying candidates who are ‘professional politicians’. While it’s in most cases relatively straightforward, there are also a few edge cases, e.g. should an MP’s assistant who runs now as a candidate be coded as a professional politician (here coded as ‘yes’)? Furthermore, as it turns out, some candidates’ professional description may not be entirely accurate (e.g. KPÖ’s Michael Dankl is a historian, but also Vice-Mayor of Salzburg). So, these are some caveats to bear in mind. To be transparent, below the search terms which have to be matched in order to qualify as a professional politician. The search terms were inductively identified.
Identify candidates who are professional politicians
Once we have categorized the different professional occupations, we can plot these categories in relation to their position on parties’ electoral lists.
Create plot
txt_subtitle=glue::glue("The graph depicts the position of professional politicians on the electoral lists of the Austrian parties running in the European Parliament elections 2024. Of those parties which have already previously won a seat in the EP, only the Green party featured a non-professional politician at the top of its electoral list. In general, with the ÖVP, SPÖ and FPÖ, the most promising positions were dominated by professional politicans. In contrast, NEOS featured only one single candidate who holds a political position according to the data provided on the electoral list. Hover over the dots to get candidates' details.")df_candidates <- df_res %>%mutate(lfd_nr=forcats::fct_inseq(lfd_nr)) %>%mutate(party=forcats::fct(party, levels=c("OEVP", "GRUENE", "SPOE", "FPOE", "NEOS", "KPOE", "DNA")) %>% fct_rev) %>%mutate(candidate_type=case_when( beruf_pol==T &str_detect(beruf, regex("Mitglied des Europ\\w+\\sParlaments")) ~"MEP", beruf_pol==T ~"other politician", beruf_pol==F ~"no politician",.default=NA)) %>%mutate(candidate_type=forcats::fct(candidate_type, levels=c("MEP", "other politician", "no politician")))pl_candidates <- df_candidates %>%ggplot()+labs(title="European Parliament Elections 2024 in Austria: Professional Politicians and their position on the electoral list",subtitle=txt_subtitle,x="Listenplatz *(position on ballot)*",caption=txt_caption_graph)+geom_point_interactive(aes(x=lfd_nr, y=party, shape=candidate_type, color=party, group=party,tooltip=glue::glue("{vorname} {familienname}, {beruf}") ),stat="identity",size=5)+geom_text(aes(x=lfd_nr, y=party,label=lfd_nr),size=2,color="black")+scale_y_discrete(labels=\(x) str_replace_all(x, c("OE"="Ö", "UE"="Ü")), expand=expansion(mult=c(0.15,.1)))+scale_shape_manual(values=c("no politician"=1, "other politician"=16, "MEP"=18))+scale_color_manual(values=vec_party_colors)+# scale_fill_manual(values=vec_party_colors)+theme(axis.title.y=element_blank(),axis.title.x=element_blank(),panel.background=element_rect(fill="transparent"),legend.position="top",legend.text=element_text(color="grey30"),panel.grid.major.x=element_blank(),panel.grid.major.y=element_blank(),axis.text.x=element_blank(),axis.text.y=element_text(face="bold"),plot.subtitle=element_textbox_simple(),legend.title=element_blank(),plot.caption.position="plot",plot.caption=element_textbox_simple(margin=ggplot2::margin(t=0, unit="cm")) )+guides(color="none",fill="none",shape=guide_legend() )gi_pl_candidates <-girafe(ggobj = pl_candidates,options =list(opts_toolbar(saveaspng =FALSE)))gi_pl_candidates
3.2 Aggregate number per party
Now let’s compare the aggregate number of professional politicians per party.
Get numbers per party
df_pol_share <- df_candidates %>%mutate(candidate_type=fct_collapse(candidate_type, politician=c("MEP", "other politician"))) %>%count(party, candidate_type, .drop=F) %>%group_by(party) %>%mutate(n_candidates_total=sum(n, na.rm=T)) %>%pivot_wider(id_cols=c(party, n_candidates_total),values_from=n,names_from=candidate_type) %>%janitor::clean_names() %>%mutate(n_rel=politician/n_candidates_total) %>%arrange(desc(n_rel)) %>%ungroup()rt_pol_share <- df_pol_share %>%select(-no_politician) %>%mutate(party=as.character(party)) %>%mutate(party_col = vec_party_colors[party]) %>%mutate(party=str_replace_all(party, c("OE"="Ö", "UE"="Ü"))) %>%reactable(columns=list(party=colDef(name="Party",width=75),n_candidates_total=colDef(name="on the electoral list in total",align="center",width=125 ),politician=colDef(name="who are politicians by profession",align="center",width=125 ),n_rel=colDef(name="Share of candidates who are politicians by profession",align="left",cell =data_bars(., fill_color_ref ="party_col", number_fmt = scales::label_percent(), background ="white", force_outside=c(0,.1)) ),party_col=colDef(show=FALSE) ),columnGroups =list(colGroup(name ="Number of candidates", columns =c("n_candidates_total", "politician"))),fullWidth =TRUE,compact =TRUE,highlight =FALSE,defaultPageSize =23,theme =nytimes(font_size =12) ) %>%add_title(title =html("<span style='font-size:12pt'>European Parliament Elections 2024: Number of 'professional' politicians on electoral lists in Austria</span>")) %>%add_subtitle(subtitle =html("<span style='font-size:10pt'>Electoral lists provide details on candidates' profession. How many candidates are professionally politicians, e.g. pursue a political mandate as a job. </span>"), font_color ="black", font_weight ="normal") %>%add_source(source =html("<span style='font-size:9pt; font-family:Segoe UI !important;'> Data: www.bmi.gv.at. Analysis: Roland Schmidt - werk.statt.codes - @zoowalk</span>"), font_size =9, font_color ="grey30")rt_pol_share
European Parliament Elections 2024: Number of 'professional' politicians on electoral lists in Austria
Electoral lists provide details on candidates' profession. How many candidates are professionally politicians, e.g. pursue a political mandate as a job.
Data: www.bmi.gv.at. Analysis: Roland Schmidt - werk.statt.codes - @zoowalk
4 Wrap up
So that’s it. There’s nothing groundbreaking in this exercise, but I still find it informative to see how professional politicians dominate the top electoral positions on the lists of the ÖVP and the SPÖ. The picture is only somewhat different with the FPÖ which has more non-politicians running on promising positions. As far as the the total number of professional politicians is concerned, there is nothing what would distinguish the radical right from the other two major parties.
@online{schmidt2024,
author = {Schmidt, Roland},
title = {Professional Politicians and Their Position on Electoral
Lists},
date = {2024-07-09},
url = {https://werk.statt.codes/posts/2024-06-26-euparl-2024-ballot},
langid = {en}
}