Description Usage Arguments Value See Also Examples
Get Bill Suummary Page URL or scrapeBill
object by Bill Number and Congress Number.
1 2 3 4 5 6 7 8 | getBill(number, congress, chamber = "House", type = "Bill",
out = "URL")
getscrapeBill(number, congress, chamber = "House", type = "Bill")
getBillDF(infoDF, out = "URL", progress = FALSE)
getscrapeBillDF(infoDF, progress = TRUE)
|
number |
|
congress |
|
chamber |
Choose from |
type |
Choose from |
out |
The output type. |
infoDF |
(Only used in |
progress |
(Only used in |
character
scalar of URL or "scrapeBill"
object.
scrapeBill
, read_scrapeBill
, and write_scrapeBill
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | a <- getBill(1, 103)
b <- scrapeBill(a)
collectBillID(b)
a <- getBill(1, 103, "Senate", "Joint Resolution")
b <- scrapeBill(a)
collectBillID(b)
a <- getBill(1, 101, out="scrapeBill")
collectBillID(a)
a <- data.frame(number = c(1,2,3,4),
congress = c(103,104,108,109),
chamber = "House",
type = "Bill")
b <- getBillDF(a, out="scrapeBill")
collectBillID(b)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.