This dataset contains the results of the first round of the 2021 Chilean presidential elections. It provides
9 possible voting options (7 candidates, blank, and null). Each ballot-box is identified by its id (BALLOT.BOX) and an electoral circumscription
(ELECTORAL.DISTRICT). Additionally, it provides demographic information on voters' age range for each ballot box.
data("chile_election_2021")A data frame with 46,639 rows and 14 variables:
REGIONThe region of the ELECTORAL.DISTRICT
ELECTORAL.DISTRICTThe electoral circumscription of the ballot box.
BALLOT.BOXAn identifier for the ballot box within the ELECTORAL.DISTRICT.
C1The number of votes cast for the candidate Gabriel Boric.
C2The number of votes cast for the candidate José Antonio Kast.
C3The number of votes cast for the candidate Yasna Provoste.
C4The number of votes cast for the candidate Sebastián Sichel.
C5The number of votes cast for the candidate Eduardo Artés.
C6The number of votes cast for the candidate Marco Enríquez-Ominami.
C7The number of votes cast for the candidate Franco Parisi.
BLANK.VOTESThe number of blank votes.
NULL.VOTESThe number of null votes.
X18.19Number of voters aged 18–19.
X20.29Number of voters aged 20–29.
X30.39Number of voters aged 30–39.
X40.49Number of voters aged 40–49.
X50.59Number of voters aged 50–59.
X60.69Number of voters aged 60–69.
X70.79Number of voters aged 70–79.
X80.Number of voters aged 80 and older.
MISMATCHBoolean that takes value TRUE if the ballot-box has a mismatch between the total number of votes and the total number of voters. If this is not the case, its value is FALSE.
FNumber of female voters in the ballot box.
MNumber of male voters in the ballot box.
data("chile_election_2021")
head(chile_election_2021)
#> REGION ELECTORAL.DISTRICT BALLOT.BOX C1 C2 C3 C4 C5 C6 C7 BLANK.VOTES
#> 1 DE ANTOFAGASTA ANTOFAGASTA NORTE 126 12 22 3 4 1 5 71 0
#> 2 DE ANTOFAGASTA ANTOFAGASTA NORTE 127 11 25 4 4 0 6 70 1
#> 3 DE ANTOFAGASTA ANTOFAGASTA NORTE 128 16 23 3 3 1 5 70 1
#> 4 DE ANTOFAGASTA ANTOFAGASTA NORTE 129 10 22 4 4 0 2 75 0
#> 5 DE ANTOFAGASTA ANTOFAGASTA NORTE 130 16 23 4 3 1 3 76 0
#> 6 DE ANTOFAGASTA ANTOFAGASTA NORTE 131 22 25 3 4 3 2 62 0
#> NULL.VOTES X18.19 X20.29 X30.39 X40.49 X50.59 X60.69 X70.79 X80. MISMATCH M
#> 1 0 1 7 103 3 0 3 1 0 FALSE 107
#> 2 0 2 10 98 6 4 1 0 0 FALSE 106
#> 3 2 3 5 111 2 2 0 1 0 FALSE 116
#> 4 2 2 2 103 7 3 2 0 0 FALSE 110
#> 5 1 4 9 112 1 2 0 0 0 TRUE 116
#> 6 3 3 8 103 4 3 1 0 2 FALSE 111
#> F
#> 1 11
#> 2 15
#> 3 8
#> 4 9
#> 5 12
#> 6 13