Learn R Programming

hansard (version 0.5.0)

research_briefings: Imports data on Parliamentary Research Briefings.

Description

Imports data on Parliamentary Research Briefings. To see a list of possible topics call research_topics_list or research_subtopics_list for both topics and subtopics. To see a list of briefing types, call research_types_list. This function can return results with newlines in the text of the abstract or description of the research briefing, represented as '\n'.

Usage

research_briefings(topic = NULL, subtopic = NULL, type = NULL,
  extra_args = NULL, tidy = TRUE, tidy_style = "snake_case")

hansard_research_briefings(topic = NULL, subtopic = NULL, type = NULL, extra_args = NULL, tidy = TRUE, tidy_style = "snake_case")

Arguments

topic

The topic of the parliamentary briefing.

subtopic

The subtopic of the parliamentary briefing.

type

The type of research briefing.

extra_args

Additional parameters to pass to API. Defaults to NULL.

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 TRUE.

tidy_style

The style to convert variable names to, if tidy = TRUE. Accepts one of 'snake_case', 'camelCase' and 'period.case'. Defaults to 'snake_case'.

Value

A tibble with details on parliamentary research briefings on the given topic.

See Also

research_subtopics_list

research_types_list

research_topics_list

Examples

Run this code
# NOT RUN {
x <- research_briefings('Housing and planning')

# Requests can be made using lists created using `research_topics_list`
# and `research_subtopics_list`

research_topics_list <- research_topics_list()

x <- research_briefings(topic = research_topics_list[[7]])

research_subtopics_list <- research_subtopics_list()

x <- research_briefings(subtopic = research_subtopics_list[[7]][10])

# Requests for certain briefing types can also be made using lists
# created with 'research_types_list'.

research_types_list <- research_types_list()

x <- research_briefings(type = research_types_list[[3]])


# }

Run the code above in your browser using DataLab