congress
provides a mostly tidy interface to
the Congress.gov API, available at https://github.com/LibraryOfCongress/api.congress.gov/.
It provides a simple R interface for downloading and working with
actions, bills, nominations, and more from Congress.
You can install the development version of congress from GitHub with:
# install.packages("devtools")
::install_github("christopherkenny/congress") devtools
To get the most recent nomination
s, we can use the
cong_nomination()
function. By default, it gets the most
recent 20. We request here, the most recent 10.
library(congress)
cong_nomination(limit = 10)
#> # A tibble: 10 × 13
#> citation congress description lates…¹ lates…² nomin…³ nomin…⁴ nomin…⁵ number
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 PN2678 117 " " 2022-0… Receiv… FALSE TRUE "U.S. … 2678
#> 2 PN2673 117 " " 2022-0… Receiv… FALSE TRUE "U.S. … 2673
#> 3 PN2675 117 " " 2022-0… Receiv… FALSE TRUE "U.S. … 2675
#> 4 PN2677 117 " " 2022-0… Receiv… FALSE TRUE "U.S. … 2677
#> 5 PN2676 117 " " 2022-0… Receiv… FALSE TRUE "U.S. … 2676
#> 6 PN2674 117 " " 2022-0… Receiv… FALSE TRUE "U.S. … 2674
#> 7 PN2672 117 "Ronald T. … 2022-0… Receiv… TRUE FALSE "Gover… 2672
#> 8 PN2670 117 "Todd E. Ed… 2022-0… Receiv… TRUE FALSE "Gover… 2670
#> 9 PN2666 117 "Travis Hil… 2022-0… Receiv… TRUE FALSE "Gover… 2666
#> 10 PN2669 117 " " 2022-0… Receiv… FALSE TRUE "U.S. … 2669
#> # … with 4 more variables: part_number <chr>, received_date <chr>,
#> # update_date <chr>, url <chr>, and abbreviated variable names
#> # ¹latest_action_action_date, ²latest_action_text,
#> # ³nomination_type_is_civilian, ⁴nomination_type_is_military,
#> # ⁵nomination_type_name
This package is designed for v3
of the Congress.gov
API. It currently supports the following endpoints:
cong_bill()
cong_amendment()
cong_summaries()
cong_congress()
cong_member()
cong_committee()
cong_committee_report()
cong_record()
cong_communication()
cong_nomination()
cong_treaty()