Sunday, June 26, 2022
HomeData ScienceVisualizing Electoral Knowledge: Polarization and Mobilization Through the 2021 Chilean Presidential Elections...

Visualizing Electoral Knowledge: Polarization and Mobilization Through the 2021 Chilean Presidential Elections | by Louis Leclerc | Jun, 2022


A case examine from Chile’s final presidential elections

On December twenty first passed off probably the most disputed presidential races within the historical past of Chile. The 2-round voting system left all conventional events behind in a context of political antagonism that had not been seen for fairly a very long time and led to the disqualification of standard events.

However the function of this text is to not talk about politics. As a substitute, it’s about investigating one fascinating reality about this election: the variety of expressed votes (i.e., that aren’t clean nor invalid) strongly elevated between the 2 rounds, from 7,028,345 expressed votes as much as 8,271,893 for the second spherical, in keeping with information of the Nationwide Electoral Service (SERVEL). That’s a rise of 17.7%, nearly 1.25 million votes!

Abstention is normally excessive in Chile. The electoral register counts 15 million voters, of which barely 47.5% participated within the first spherical and 55.9% for the second, but thought of one of many nation’s greatest scores. Nonetheless, I’ll deal with the rise of expressed votes solely, as the explanations behind abstention are an entire completely different matter that I received’t take care of right here.

As I stated, these elections had been extremely polarized. The rise of expressed ballots for the second spherical has benefited the successful candidate, Gabriel Boric. To scrutinize this phenomenon, I’ve analyzed the polling information from SERVEL, which supplies us detailed data on the poll in the entire 46,888 polling locations all through the nation and overseas: variety of votes obtained by every candidate, clean and invalid votes, abstention, location, gender, and so on.

As a reminder, earlier than all issues, let’s checklist all candidates in each rounds with their respective scores. The second spherical noticed the victory of Gabriel Boric Font with 55.87% of the ballots, defeating José Antonio Kast, who scored 44.13%.

Through the first spherical, José Antonio Kast arrived at 27.91%, whereas Gabriel Boric made it to second place with 25.83% of the ballots. The remaining candidates had been Francisco Parisi (12.80%), Sebastián Sichel (12.78%), Yasna Provoste (11.60%), Marco Enríquez-Ominami (7.60%), and Eduardo Artés (1.47%).

# libraries used
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from matplotlib.pyplot import cm
from matplotlib.ticker import PercentFormatter
import seaborn as sn
# preparation of the information contains:
# importing first-round and second-round datasets
# becoming a member of information from polling locations throughout the nation and overseas
# cleansing the information
# counting complete variety of expressed ballots per polling station
(abstention and clean/invalid votes usually are not taken into consideration)
# computing share of every candidate in every polling station
# returning a NumPy array of all 46,888 scores (one per polling
station), for each the 7 first-round candidates and the two
second-round candidates
# calculating the distinction of expressed votes between the 2
rounds to measure the electoral mobilization in every polling
station. Outliers are set to a restrict to slim the
unfold of the array when plotted as a heatmap
# all operations are usually asserted all through the script to be in keeping with the totals supplied by SERVEL in a separate sheet. # the detailed script is on the market on GitHub.

For every of the seven candidates, I displayed polling locations on the x-axis of a scatter plot in keeping with the rating obtained by the candidate within the stated polling place. Every polling place strikes alongside the y-axis in keeping with the second-round rating to see how the voters of this polling place reacted to the second-round duel.

# candidate is an array of scores of the 1st-round candidate 
# candidate2 is an array of scores of the 2nd-round candidate
#
diff_votes_perc is an array of the variations of expressed votes between the 2 rounds
# plot
sns.scatterplot(
x=candidate,
y=candidate2,
hue=diff_votes_perc,
palette='coolwarm',
alpha=0.5,
ax=ax
)
# legend
ax.legend(
title=f'Acquire/lack of votes betweennthe two rounds (in %)',
title_fontsize='small',
fontsize='small'
)

A candidate’s voters consists of the polling locations furthest to the fitting, the place the perfect first-round scores are. How this voters locates on the y-axis reveals the way it behaved within the second spherical. In different phrases, it signifies the assist of a first-round candidate’s voters to one of many two runoff candidates.

The graphs additionally present the electoral mobilization in each polling station. The colour of a degree signifies whether or not the variety of expressed votes elevated or decreased between the primary and the second spherical, following a heatmap logic: a heat crimson signifies a robust mobilization, whereas a chilly blue means the participation decreased.

# test distribution of the distinction of expressed ballots array
plt.hist(diff_votes_perc)
plt.present()
# slim vary of the array to keep away from outliers
diff_votes_perc = np.the place(
diff_votes_perc < -30, -30, diff_votes_perc
)
diff_votes_perc = np.the place(
diff_votes_perc > 55, 55, diff_votes_perc
)

That method, the graphs not solely inform us whether or not a first-round candidate’s voters rallied or not a runoff candidate but additionally if the assist was an enthusiastic one or not.

Let’s have a look at an instance to make clear this level, as an illustration, the graph evaluating the scores obtained by the standard proper candidate Sebastián Sichel within the first spherical and the far-right candidate José Antonio Kast within the second spherical.

Picture by the writer

There’s a heap of blue factors within the higher proper of the determine, from which we will draw two conclusions:

  • First, concerning the existence or lack of assist for José Antonio Kast within the second spherical. The polling locations the place Sichel registered his greatest outcomes (proper of the x-axis) voted in favor of Kast within the second spherical (high of the y-axis). Stated in any other case, the voters of Sichel rallied Kast within the second spherical.
  • Second, concerning the passion for this assist. The prevalence of blue exhibits electoral demobilization as there was a lack of expressed ballots between the 2 rounds. In different phrases, the voters of Sichel supplied a “demobilized assist” to Kast.

It will get much more fascinating after we evaluate the evolution of the scores of the identical candidate between the primary and the second spherical. Subsequently, we will solely make such a comparability with candidates that did make it to the second spherical.

What can be the purpose of seeing if a candidate’s voters did assist him in each rounds?

It might sound counterintuitive, as we will moderately count on polling locations that voted massively for a candidate for the primary spherical to vote for a similar candidate within the second spherical.

As an indication, let’s first have a look at the polling locations that voted massively for Kast, the defeated runoff candidate.

Picture by the writer

It appears like a dense swarm, with a swelling on the highest.

The linear form of the scatter plot means that his voters was steady: the extra a polling place voted for him within the first spherical, the extra doubtless it’s to have voted massively for him within the second spherical.

There are exceptions. Some locations strongly voted for Kast within the second spherical, with scores as excessive as 100%, although his first-round rating was low. However we’re speaking about barely a only a few polling stations on a complete of 46,888, and usually at the price of demobilized voters as urged by the blue-colored dots.

An important conclusion to attract from this graph is much less putting. The scale of the swelling just isn’t that massive, particularly on the left. However that upper-left / upper-middle half might exactly be the place victory lies. It’s critical in an election to assemble voters that had not voted for you within the first spherical. These voters ought to precisely seem throughout the determine drawn in crimson.

Picture by the writer

For instance higher the thought of electoral outbreak, let’s now have a look at the successful candidate’s scores.

Picture by the writer

The swelling is extra important and crammed with dots. It’s composed of two elements: a blue one on the left, which voted strongly for Boric within the second spherical however demobilized, and a bigger crimson one, which strongly mobilized in favor of Boric.

Let’s show the exact same determine with the nationwide common rating obtained by Boric in every spherical.

# get max values of the information to get restrict coordinates
X_max = float(max(candidate))
Y_max = float(max(candidate2))

# plot, identical as earlier than
sns.scatterplot(
x=candidate,
y=candidate2,
hue=diff_votes_perc,
palette='coolwarm',
alpha=0.5,
ax=ax
)

# compute nationwide averages of candidates
cand2_mean = float(np.imply(candidate2))
cand_mean = float(np.imply(candidate))
# compute variety of polling locations
nb_pp = int(len(SERVEL_data) / 7)
# plot nationwide common of 2nd-round candidate
X_plot = np.linspace(0, X_max, nb_pp)
Y_plot = np.linspace(cand2_mean, cand2_mean, nb_pp)
ax.plot(
X_plot,
Y_plot,
coloration='black',
linestyle='-.',
label=f'{candidate2name}n2nd spherical: {spherical(cand2_mean,1)}%'
)
# plot nationwide common of 1st-round candidate
X_plot2 = np.linspace(cand_mean, cand_mean, nb_pp)
Y_plot2 = np.linspace(0, Y_max, nb_pp)
ax.plot(
X_plot2,
Y_plot2,
coloration='black',
linestyle=':',
label=f'{candidate1name}n1st spherical: {spherical(cand_mean, 1)}%'
)
Picture by the writer

The upper-right quarter gathers all polling locations that voted extra for Boric than the nationwide common for each rounds. In distinction with Kast’s determine, we will see that it’s not linear-shaped. Quite the opposite, the crimson burst increasing to the highest highlights the mobilization in favor of Boric.

The upper-left quarter can also be fairly insightful. It gathers all locations that didn’t vote a lot for Boric within the first spherical, lower than the nationwide common. Nonetheless, these polling locations voted considerably in his favor in the course of the second spherical. They mobilized extra, because the crimson coloration signifies.

The truth that there’s loads of crimson within the higher elements of the graph emphasizes that Boric was elected because of an important electoral mobilization that went method past his authentic voters. This conclusion is in keeping with the truth that he received the election by a handful although he got here second within the first spherical.

Quite the opposite, keep in mind that Kast’s swelling was nearly empty and filled with demobilized polling locations, which means he had failed to draw voters past the boundaries of his voters.

Listed below are the whole figures for all of the seven first-round candidates. For every certainly one of them, there are three views of the identical information:

  • Expressed votes per polling station, with the nationwide common rating of the first-round and second-round candidates. There is no such thing as a color-based data to deal with the form of the swarm and the way the averages find.
  • Heatmap of the electoral mobilization between the 2 rounds. That’s the visualization we’ve been seeing thus far.
  • Vote per area. One other form of data show for which I’ve confronted the strangest problem: rating areas in keeping with two various kinds of numbering (some by their geographical place, others by their creation date).
Pictures by the writer

Right here’s the script to generate these plots. First, we outline candidates and set the final options of the determine. As solely three subplots are displayed, we will put a personalized legend within the upper-right quarter as an alternative of a fourth one.

for i, candidate in enumerate(
[Boric, Kast, Provoste, Sichel, Artés, Ominami, Parisi]
):
fig, axs = plt.subplots(2, 2, figsize=[15,10])

# extract identify of the first spherical candidate
candidate1name = names[i].title()

# outline candidate 2nd spherical to match to
if i == 1 or i == 3:
candidate2name= 'José Antonio Kast Rist'
candidate2 = Kast2
else:
candidate2name= 'Gabriel Boric Font'
candidate2 = Boric2

# format x and y axis in percentages
for a, b in [(0,0), (0,1), (1,0), (1,1)]:
axs[a][b].xaxis.set_major_formatter(PercentFormatter())
axs[a][b].yaxis.set_major_formatter(PercentFormatter())

# put the title within the second plot
axs[0][1].annotate(
textual content=f"2nd spherical conduct ofn{candidate1name}'s voters",
xy=[0.5,0.8],
horizontalalignment='middle',
fontsize=20,
fontweight='daring'
)

# add basic description
axs[0][1].annotate(
textual content='Comparability of the outcomes obtained at every spherical of then2021 Chilean presidential elections (by polling station)',
xy=[0.5,0.6],
horizontalalignment='middle',
fontsize=12,
fontstyle='italic'
)
# annote personalized legend
axs[0][1].annotate('Legend:n'
'1 - Expressed votes per polling station (in %)n'
'2 - Electoral mobilization between the 2 roundsn'
'3 - Vote per area',
xy=[0.05,0.05],
horizontalalignment='left',
fontsize=12,
fontweight='gentle',
backgroundcolor='white',
bbox=dict(edgecolor='black', facecolor='white',boxstyle='spherical')
)
# fetch restrict coordinates of every plot
X_max = float(max(candidate))
Y_max = float(max(candidate2))
# put numbered references of the legend within the upper-right nook of every subplot
axs[0][0].annotate(
textual content='1',
xy=[X_max,90],
coloration='darkred',
fontsize=20,
fontweight='black'
)
axs[1][0].annotate(
textual content='2',
xy=[X_max,90],
coloration='darkred',
fontsize=20,
fontweight='black'
)
axs[1][1].annotate(
textual content='3',
xy=[X_max,90],
coloration='darkred',
fontsize=20,
fontweight='black'
)
# disguise axis
axs[0][1].axis('off')

# set labels of the final determine
fig.supylabel(
f'{candidate2name} - 2nd spherical outcomes',
fontsize=16,
ha='middle',
va='middle'
)
fig.supxlabel(
f'{candidate1name} - 1st spherical outcomes',
fontsize=16,
ha='middle',
va='middle'
)

We now generate the scatter plot with nationwide averages. Remind that we’re nonetheless in the identical “for loop”.

    # plot comparability of expressed votes within the first subplot
sns.scatterplot(
x=candidate,
y=candidate2,
coloration=colours[i],
alpha=0.3,
ax=axs[0][0]
)
# outline variables to plot nationwide averages of candidates
cand2_mean = float(np.nanmean(candidate2))
cand_mean = float(np.nanmean(candidate))
nb_pp = int(len(SERVEL_data) / 7)
# plot nationwide common of 2nd-round candidate
X_plot = np.linspace(0, X_max, nb_pp)
Y_plot = np.linspace(cand2_mean, cand2_mean, nb_pp)
axs[0][0].plot(
X_plot,
Y_plot,
coloration='black',
linestyle='-.',
label=f'{candidate2name}n2nd spherical: {spherical(cand2_mean,1)}%'
)
# plot nationwide common of first-round candidate
X_plot2 = np.linspace(cand_mean, cand_mean, nb_pp)
Y_plot2 = np.linspace(0, Y_max, nb_pp)
axs[0][0].plot(
X_plot2,
Y_plot2,
coloration='black',
linestyle=':',
label=f' {candidate1name}n1st spherical: {spherical(cand_mean, 1)}%'
)
axs[0][0].legend(
fontsize='small',
title='Nationwide common',
title_fontsize='small'
)

Then the electoral mobilization heatmaps that we’ve already seen.

# plot electoral mobilization within the third subplot
sns.scatterplot(
x=candidate,
y=candidate2,
hue=diff_votes_perc,
palette='coolwarm',
alpha=0.5,
ax=axs[1][0]
)
# legend with complete variety of votes in each rounds, in addition to improve of participation in %
axs[1][0].legend(
title=f'Acquire/lack of votes betweennthe two rounds (in %)', title_fontsize='small',
fontsize='small'
)

And final, a bonus area plot. For these unfamiliar with Chile’s geography, it’s the world’s longest nation from north to south, at 4,270 km lengthy.

It goes from the world’s driest desert within the north to the antarctic within the south and gathers every kind of climates. Nevertheless it’s slim, caught between the ocean and the mighty Andes. So on common, it’s solely 177 km massive.

Areas pile on high of the opposite, and no exact east/west layering seems on the map. We are able to benefit from this peculiar geography and attribute shades of colours to the dots in keeping with their place on a north/south axis. In any case, Chile is ultimately formed like an axis!

From Wikimedia Commons

In different phrases, we will order Chile’s areas numerically. There aren’t many international locations the place you are able to do that! In most international locations, a coloured plot of the regional format will likely be categorical and is much less doubtless to offer important visible insights.

So, we will show geographical information in Chile as shades from north to south. This type of scatter plot will give us a touch about what’s the approximate location of polling stations at a naked look. It brings some fascinating insights for some candidates, similar to Parisi and Provoste, whose electorates find in northern Chile.

Picture by the writer
Picture by the writer

So, again to the script. We would like areas ordered from north to south. The great factor is, they’re numbered, apparently from north to south. However in case you have a look at the map of Chile’s areas above, you’ll see that not the entire numbering is sensible.

Chile has created new areas on a number of events. That’s a difficult one! Initially, the criterion to quantity the primary areas was their geographical place. However a number of new areas have been created in the meantime, and their rank stems from their order of creation, not their geographical place.

We are able to think about some ways of ordering all areas appropriately from north to south, nevertheless it would possibly as effectively be executed manually by indexing, zipping, and NumPy.

    # plot votes in keeping with area within the final subplot
# a reordering the place to the north is important to create a readable heatmap
# instantiate an inventory with the results of
areas = np.distinctive(location_array)
# zip the area checklist with an inventory of their respective place ranging from the north
north_to_south = [3, 1, 4, 15, 5, 12, 14, 13, 16, 2, 6, 10, 11, 8, 9, 17, 7]
region_position = zip(areas, north_to_south)
# create an array of the regional place of every polling place
position_array = np.empty(len(location_array))
for area, place in region_position:
position_array[location_array == region] = place
# stack all arrays of curiosity right into a single one
ordered_array = np.column_stack(
[candidate, candidate2, position_array]
)
# type array in keeping with the regional place
sorted_array = ordered_array[
np.argsort(ordered_array[:,2])
]
# create plot
sns.scatterplot(
x=sorted_array[:,0],
y=sorted_array[:,1],
hue=sorted_array[:,2].astype('<U44'),
palette='Spectral',
alpha=0.4,
ax=axs[1][1]
)
# readjust labels from north to south
location_labels = [
'ARICA',
'TARAPACA',
'ANTOFAGASTA',
'ATACAMA',
'COQUIMBO',
'VALPARAISO',
'METROPOLITANA',
"O'HIGGINS",
'MAULE',
'ÑUBLE',
'BIOBIO',
'ARAUCANIA',
'LOS RIOS',
'LOS LAGOS',
'AYSEN',
'MAGALLANES',
'EXTRANJERO'
]
axs[1][1].legend(
labels = location_labels,
ncol=4,
fontsize='xx-small'
)

There’s loads that this evaluation doesn’t cowl, similar to the explanations behind abstention. However this information may very well be used to offer one other examine in regards to the gender-based vote, because the gender information is on the market aside from the polling locations overseas.

Evaluating the gender information with the mobilization plot may very well be fascinating as a result of Boric is claimed to have received the second spherical because of a sturdy mobilization of younger feminine voters.

Regardless that the elections passed off final December and the case examine comes a bit late, it would nonetheless be fascinating to investigate this information with one other essential election in Chile coming quickly: the Structure Referendum on September 4th.

A translation to Spanish is underway.

A visualization of Le Monde following the final French presidential elections impressed this case examine.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments