Description Usage Arguments Value Author(s) References Examples
This function is a wrapper for the Committee.getCommitteeMembers() method of the PVS API Committee class which returns a list of members of a committee. The function sends a request with this method to the PVS API for all committee IDs given as a function input, extracts the XML values from the returned XML file(s) and returns them arranged in one data frame.
1  | Committee.getCommitteeMembers(committeeId)
 | 
committeeId | 
 a character string or list of character strings with the committee ID(s) (see references for details)  | 
A data frame with a row for each committee member and columns with the following variables describing the committee member:
 committeeMembers.committee.committeeId,
 committeeMembers.committee.parentId,
 committeeMembers.committee.name,
 committeeMembers.member*.candidateId,
 committeeMembers.member*.title,
 committeeMembers.member*.firstName,
 committeeMembers.member*.middleName,
 committeeMembers.member*.lastName,
 committeeMembers.member*.suffix,
 committeeMembers.member*.party,
 committeeMembers.member*.position.
Ulrich Matter <ulrich.matter-at-unibas.ch>
http://api.votesmart.org/docs/Committee.html
Use CandidateBio.getBio(), Committee.getCommitteesByTypeState() or Votes.getBill() to get committee ID(s).
See also: Matter U, Stutzer A (2015) pvsR: An Open Source Interface to Big Data on the American Political Sphere. PLoS ONE 10(7): e0130501. doi: 10.1371/journal.pone.0130501
1 2 3 4 5 6  | # First, make sure your personal PVS API key is saved as an option
# (options("pvs.key" = "yourkey")) or in the pvs.key variable:
## Not run: pvs.key <- "yourkey"
# get a list of members of certain committees
## Not run: comember <- Committee.getCommitteeMembers(1)
## Not run: comember
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.