Description Usage Arguments Author(s) Examples
A function that prepares data for parliamentary plots
1 2 3 4 | parliament_data(election_data = NULL, parl_rows = NULL,
party_seats = election_data$seats, group = NULL, plot_order = NULL,
type = c("horseshoe", "semicircle", "circle", "classroom",
"opposing_benches"))
|
election_data |
aggregate election results |
parl_rows |
number of rows in parliament |
party_seats |
seats per party |
group |
grouping variable for separate chunks. e.g. opposing benches in UK parliament |
plot_order |
plot the data in a specified order |
type |
type of parliament (horseshoe, semicircle, circle, classroom, opposing benches) |
Zoe Meers, Rob Hickman
1 2 3 4 5 6 7 8 9 10 | data <- election_data[
election_data$country == "USA" &
election_data$house == "Representatives" &
election_data$year == "2016",]
usa_data <- parliament_data(
election_data = data,
type = "semicircle",
party_seats = data$seats,
parl_rows = 8
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.