Imports data on general and by-elections from the 2010 General Election onwards.
elections(ID = NULL, type = NULL, start_date = "1900-01-01",
end_date = Sys.Date(), label = NULL, extra_args = NULL, tidy = TRUE,
tidy_style = "snake_case", verbose = TRUE)hansard_elections(ID = NULL, type = NULL, start_date = "1900-01-01",
end_date = Sys.Date(), label = NULL, extra_args = NULL, tidy = TRUE,
tidy_style = "snake_case", verbose = TRUE)
Accepts an ID for a general or by-election from the 2010 General
Election onwards, and returns the date and type of the elction.
If NULL
, returns the date and type of all available elections,
subject to other parameters. Defaults to NULL
.
Accepts 'General Election'
or 'By-election'
as
arguments if ID is NULL
, and returns all General Elections or all
By-elections, as specified, subject to other parameters.
Defaults to NULL
.
Only includes elections held on or after this date.
Accepts character values in 'YYYY-MM-DD'
format, and objects of
class Date
, POSIXt
, POSIXct
, POSIXlt
or
anything else that can be coerced to a date with as.Date()
.
Defaults to '1900-01-01'
.
Only includes elections held on or before this date.
Accepts character values in 'YYYY-MM-DD'
format, and objects of
class Date
, POSIXt
, POSIXct
, POSIXlt
or
anything else that can be coerced to a date with as.Date()
.
Defaults to the current system date.
Label of the election. By-elections are in
'dd-mmm-yyyy By-election'
format;
e.g. '23-Feb-2017 By-election'
, and general elections use
'YYYY General Election'
format. The parameter cannot search,
so check your formatting, spelling and make sure there were actually
elections with the label specified. If NULL, returns all
Elections/By-elections subject to other parameters.
Defaults to NULL
.
Additional parameters and queries to pass to API. These
queries must be strings and start with "&". See the
API documentation
or the package vignette for more details. Defaults to NULL
.
Logical parameter. If TRUE
, fixes the variable names
in the tibble to remove special characters and superfluous text, and
converts the variable names to a consistent style. Defaults to TRUE
.
The style to convert variable names to, if
tidy = TRUE
. Accepts one of 'snake_case'
, 'camelCase'
and 'period.case'
. Defaults to 'snake_case'
.
If TRUE
, returns data to console on the progress
of the API request. Defaults to TRUE
.
A tibble with details on all elections from the 2010 General Election onwards, subject to function parameters. Includes the election ID, the date, and the type of election(s).
If both ID
and type
are used to query the API, ID
takes precedence and type
is ignored.
# NOT RUN {
x <- elections(517994)
# }
Run the code above in your browser using DataLab