mnis_all_members {mnis} | R Documentation |
All members data
Description
Returns a tibble with information on all members of both houses or a given house.
Usage
mnis_all_members(
house = "all",
party = NULL,
tidy = TRUE,
tidy_style = "snake_case"
)
Arguments
house |
The house to which the member belongs. Accepts one of
|
party |
The party to which a member belongs. If |
tidy |
Fix the variable names in the tibble to remove special
characters and superfluous text, and converts the variable names to a
consistent style. Defaults to |
tidy_style |
The style to convert variable names to, if
|
Value
A tibble with information on all members of the House of Commons and/or the House of Lords that meet the criteria included in the function parameters.
Examples
## Not run:
x <- mnis_all_members(
house = "all", party = NULL, tidy = TRUE,
tidy_style = "snake_case"
)
## End(Not run)
## Not run:
x <- mnis_all_members(
house = "all", party = NULL, tidy = TRUE,
tidy_style = "snake_case"
)
## End(Not run)