GermanElection21 {GmooG} | R Documentation |
Detailed results by constituency for the German election of 2021 (and for the previous election in 2017)
data(GermanElection21)
A data frame with 16024 observations on the following 9 variables
WkNr
Constituency (Wahlkreis) number
WkName
Constituency name
Land
Bundesland number
Partei
Party
Stimme
First (personal) or second (party) vote
Anzahl
Number of votes in 2021 election
VorpAnzahl
Number of votes in 2017 election
Bundesland
Bundesland name
Region
Region: West, Berlin, East
This dataset and the datasets GermanDemographics and GermanExtraSeats are all used in Chapter 26, "German Election 2021–what happened?"
https://www.bundeswahlleiterin.de Derived from btw21_kerg2.csv
library(tidyverse)
data(GermanElection21, package="GmooG")
btw1vP <- GermanElection21 %>% count(Partei) %>% arrange(-n)