geom_highlight_government: Highlight governments or parties in control of the...

View source: R/geom_highlight_government.R

geom_highlight_governmentR Documentation

Highlight governments or parties in control of the legislature by encircling the points.

Description

Highlight governments or parties in control of the legislature by encircling the points.

Usage

geom_highlight_government(expr, colour, size, shape, stroke)

Arguments

expr

Expr refers to the observation that you wish to highlight.

colour

Colour of the highlight

size

Size of highlighter

shape

Shape of highlight

stroke

Size of stroke shape

Author(s)

Zoe Meers

Source

https://yutani.rbind.io/post/2017-11-07-ggplot-add/

Examples

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
)
ggplot2::ggplot(usa_data, ggplot2::aes(x, y, colour = party_long)) +
  geom_parliament_seats() +
  geom_highlight_government(government == 1) +
  theme_ggparliament()

leeper/ggparliament documentation built on March 27, 2022, 1:05 p.m.