UShouse.senate {Ecdat} | R Documentation |
Combine the output of readUShouse
and
readUSsenate
.
UShouse.senate(house=readUShouse(), senate=readUSsenate())
house, senate |
|
Convert the two into a common format and rbind.
a data.frame
with the following columns:
Office |
A factor identifying "House" vs. "Senate", indicating whether the person is in the US House or Senate |
state |
A factor identifying the state using the USPS 2-letter state code (all caps) |
district |
"0" or "At-Large" for members of the US House representing an entire state or integers in character format indicating the district. For the Senate, this contains the "class", which codes the year of the next election for that seat is an integer multiple of 6 years after 2012, 2008, or 2010 for class "1", "2", or "3", respectively. |
Party |
a factor identifying the party affiliation of each representative, e.g., 'Democratic', 'Republican', 'Democratic-Farmer-Labor', 'Independent'. |
surname |
family name |
givenname |
first name with possibly a middle name, nickname, and suffix (e.g., Jr., III). |
Spencer Graves
house <- readUShouse() USreps <- UShouse.senate(house)