View source: R/get_voteview_parties.R
get_voteview_parties | R Documentation |
get_voteview_parties()
returns a tibble with information on the parties (aka caucuses)
in each Congress. The party information includes a party's ICPSR code, number of
members, and DW-NOMINATE scores.
The parties of the President, Senate, and House are listed in the data. Each row is one party in one chamber for each Congress (i.e., each party is listed once for every two years).
get_voteview_parties(chamber = "all", congress = NULL, local_path = NULL)
chamber |
(Optional) Which chamber to get data for. Options are:
These options are case-insensitive. If you explicitly pass a different value, it will default to "all" with a warning. Note that presidents are included in all datasets. Therefore, reading both |
congress |
(Optional) A whole number (to get data for a single Congress), or a numeric vector (to get data for a set of congresses). If not provided, will retrieve data for all Congresses by default.
If specified, Congress numbers cannot be greater than the |
local_path |
(Optional) A file path for reading from a local file. If no
|
See the Voteview website for more information on their data.
Please cite this dataset as:
Lewis, Jeffrey B., Keith Poole, Howard Rosenthal, Adam Boche, Aaron Rudkin, and Luke Sonnet (2025). Voteview: Congressional Roll-Call Votes Database. https://voteview.com/
A tibble.
get_voteview_parties()
# get parties for only one chamber
# NOTE: the President is included in all data
get_voteview_parties(chamber = "house")
get_voteview_parties(chamber = "senate")
# get parties for a specific Congress
get_voteview_parties(congress = 100)
get_voteview_parties(congress = current_congress())
# get parties for a set of Congresses
get_voteview_parties(congress = 1:10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.