Description Usage Arguments Value Examples
View source: R/mnis_joined_between.R
Function returns all members who took their seats in the house between two given dates.
1 2 3 4 5 6 7 8 9 | mnis_joined_between(
start_date = "1900-01-01",
end_date = Sys.Date(),
house = "all",
party = NULL,
eligible = "all",
tidy = TRUE,
tidy_style = "snake_case"
)
|
start_date |
The start date of the search, Accepts character values in
|
end_date |
The end date of the search. Accepts character values in
|
house |
The house to which the member belongs. Accepts one of
|
party |
All members from a given party who joined between the two
dates. The party name must be fully spelled out (e.g. |
eligible |
If the member is currently eligible to sit. Accepts
one of |
tidy |
If |
tidy_style |
The style to convert variable names to, if
|
A tibble with data on all members who joined between the two given dates.
1 2 3 4 5 6 7 | ## Not run:
x <- mnis_joined_between(
start_date = "2015-01-01",
end_date = "2017-01-01", party = "labour"
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.