parlitools
parlitools
is a collection of datasets, maps and data retrieval functions for analysing UK politics.
In addition to this introductory vignette, there are vignettes on using parlitools
with cartogram
, the British Election Study dataset and mapping local authorities.
party_colours
- A tibble with the ID, name and hex code for the official colour of a variety of political parties, taken from Wikipedia. Includes all political parties with MPs and a number without MPs. (Sources: https://en.wikipedia.org/wiki/Wikipedia:Index_of_United_Kingdom_political_parties_meta_attributes, mnis::ref_parties()
)
bes_2015
- A tibble with the British Election Study 2015 Constituency Results Version 2.2. For information on all the variables in this dataset, see the bes-2015 vignette (Source: http://www.britishelectionstudy.com/data-object/2015-bes-constituency-results-with-census-and-candidate-data/)
council_data
- A tibble with data on the size of each local council (in terms of councillors), and the party or parties controlling the council. (Sources: http://opencouncildata.co.uk/councils.php?model=, http://geoportal.statistics.gov.uk/datasets/464be6191a434a91a5fa2f52c7433333_0)
leave_votes_west
- The percentage of votes cast for leave in the 2016 EU referendum. Some constituencies have actual results and others only have estimates by Chris Hanretty; in cases where the actual cote count is known, both the estimates and the actual results are reported. (Sources: https://secondreading.uk/brexit/brexit-votes-by-constituency/ http://www.bbc.co.uk/news/uk-northern-ireland-36616830)
current_mps
- Uses functions from hansard
and mnis
to create a tibble with data on all current MPs, their party affiliation and their constituency.
mps_on_date
- Uses functions from hansard
and mnis
to create a tibble with data on all MPs from a given date, their party affiliation and their constituency.
west_hex_map
- A hexagonal cartogram, stored as a simple feature and data frame, of Westminster parliamentary constituencies. west_hex_map
can be used to create maps like this:
local_hex_map
- Hexagonal cartogram, A hexagonal cartogram, stored as a simple feature and data frame, of all Local Authorities in England, Wales and Scotland.
There are a variety of potentially relevant data sources and datasets on UK politics, far too many for me to include them all in this package, and many of which are far too large. This list is by no means complete:
Electoral Commission - Electoral results dating back to 2005.
British Election Study - A large selection of open data, including panel surveys, linked data and aggregated Twitter data, covering elections and referenda.
hansard
& mnis
data retrieval packages for parliamentary APIs.
Open Council Data has data on the names, parties, and wards of all UK councillors, updated more or less weekly.
parlitools
Create a hexagonal map of all constituency MPs, at the time Parliament was dissolved for the 2017 General Election.
The code below creates a hexagonal map of UK constituency MPs, as of 20 June 2017.
library(leaflet)
library(sf)
library(htmlwidgets)
library(dplyr)
library(parlitools)
west_hex_map <- parlitools::west_hex_map
party_col <- parlitools::party_colour
mps <- mps_on_date("2017-06-20")
mps_colours <- left_join(mps, party_col, by = "party_id") #Join to current MP data
west_hex_map <- left_join(west_hex_map, mps_colours, by = "gss_code") #Join colours to hexagon map
# Creating map labels
labels <- paste0(
"<strong>", west_hex_map$constituency_name, "</strong>", "</br>",
"Party: ", west_hex_map$party_name, "</br>",
"MP: ", west_hex_map$display_as, "</br>",
"Most Recent Result: ", west_hex_map$result_of_election, "</br>",
"Current Majority: ", west_hex_map$majority, " votes"
) %>% lapply(htmltools::HTML)
# Creating the map itself
leaflet(options=leafletOptions(
dragging = FALSE, zoomControl = FALSE, tap = FALSE,
minZoom = 6, maxZoom = 6, maxBounds = list(list(2.5,-7.75),list(58.25,50.0)),
attributionControl = FALSE),
west_hex_map) %>%
addPolygons(
color = "grey",
weight=0.75,
opacity = 0.5,
fillOpacity = 1,
fillColor = ~party_colour,
label=labels) %>%
htmlwidgets::onRender(
"function(x, y) {
var myMap = this;
myMap._container.style['background'] = '#fff';
}")
The UK Parliamentary Petition site has facilities for mapping which parliamentary constituencies signatories of petitions live in. However, it only produces geographic maps, not hexagrams.
I have the petition ‘Prevent Donald Trump from making a State Visit to the United Kingdom’, both of which attracted 1,863,565 signatures.
library(leaflet)
library(sf)
library(htmlwidgets)
library(dplyr)
library(hansard)
library(parlitools)
west_hex_map <- parlitools::west_hex_map #Base map
trump_no <- hansard::epetition(ID = 648278, by_constituency=TRUE) #Download anti-inviting Trump signatures
west_trump_no <- dplyr::left_join(west_hex_map, trump_no, by = "gss_code") #Joining to base map
pal = colorNumeric("Blues", trump_no$number_of_signatures)
label_no <- paste0(
"<strong>", west_trump_no$constituency_name, "</strong>", "</br>",
"Signatures: ", west_trump_no$number_of_signatures
) %>% lapply(htmltools::HTML)
leaflet(options=leafletOptions(
dragging = FALSE, zoomControl = FALSE, tap = FALSE,
minZoom = 6, maxZoom = 6, maxBounds = list(list(2.5,-7.75),list(58.25,50.0)),
attributionControl = FALSE),
west_trump_no) %>%
addPolygons(
color = "grey",
weight=0.75,
opacity = 0.5,
fillOpacity = 1,
fillColor = ~pal(number_of_signatures),
label = label_no) %>%
addLegend("topright", pal = pal, values = ~number_of_signatures,
title = "Number of Signatures",
opacity = 1) %>%
htmlwidgets::onRender(
"function(x, y) {
var myMap = this;
myMap._container.style['background'] = '#fff';
}")%>%
mapOptions(zoomToLimits = "first")