mnis_general_election_results {mnis} | R Documentation |
Election results
Description
Returns an object containing list with details of the search parameter and a tibble with election results. Accepts queries on location type and name, and the start and end date to return general elections between. The API does not contain data for Norther Ireland.
Usage
mnis_general_election_results(
location_type = "Country",
location_name = "Great Britain",
start_date = "1900-01-01",
end_date = Sys.Date(),
tidy = TRUE,
tidy_style = "snake_case"
)
Arguments
location_type |
The type of area to return information for. Accepts
|
location_name |
The location to return data for. It can be the name of any Country, Region, County or Constituency. Defaults to 'Great Britain'. |
start_date |
Start date of search. Accepts character values in
|
end_date |
End date of search. Accepts character values in
|
tidy |
If |
tidy_style |
The style to convert variable names to, if
|
Value
Returns a list with details of the search parameter and a tibble with election results.
Examples
## Not run:
x <- mnis_general_election_results(
location_type = "Country", location_name = "England",
start_date = "2010-01-01", end_date = "2016-01-01"
)
## End(Not run)