Returns a list with details of the constituency and a tibble with election results.
mnis_constituency_results(
constituency_id = NULL,
election_id = 0,
tidy = TRUE,
tidy_style = "snake_case"
)
The ID of the constituency to return the data for.
If NULL
, no data is returned. Defaults to NULL
.
The ID of the election to return the data for. Defaults to 0, which returns the result of all elections held in that constituency.
If TRUE
, fixes the variable names in the tibble to
remove non-alphanumeric characters and superfluous text, and convert 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"
.
A list with details of the constituency, labelled 'details'
and a tibble with election results, labelled 'results'
. The list and
tibble are stored in a single object.
if (FALSE) {
x <- mnis_constituency_results(constituency_id = 3709, election_id = 0)
}