senate_carto: Produce a Senate cartogram

View source: R/ggsenate.r

senate_cartoR Documentation

Produce a Senate cartogram

Description

Produce a Senate cartogram

Usage

senate_carto(vote_tally)

Arguments

vote_tally

either a pprc object (the result of a call to roll_call()) or a data.frame of vote tallies for the senate. It expects 3 columns. state_abbrev : the 2-letter U.S. state abbreviation; district : either 1 or 2 to distinguish between each senator; party : R, D or ID; position : yes, no, present, none for how the senator voted.

Value

a ggplot2 object that you can further customize with scales, labels, etc.

Note

No "themeing" is applied to the returned ggplot2 object. You can use theme_voteogram() if you need a base theme.

Examples

## Not run: 
# what you'd normally do
sen <- roll_call("senate", 115, 1, 110)

## End(Not run)

# Using a saved object
sen <- readRDS(system.file("extdata", "sen.rds", package = "voteogram"))

senate_carto(sen)

hrbrmstr/voteogram documentation built on March 12, 2023, 8:06 a.m.