Description Usage Arguments Details Value See Also Examples
View source: R/lords_attendance_session.R
Imports data on House of Lords attendance from each parliamentary session. Please note that the attendance data is not as tidy as some of the others that are accessible through this API, and so additional work to prepare this data in a way that you want may be required.
1 2 3 4 5 | lords_attendance_session(session_id = NULL, extra_args = NULL,
tidy = TRUE, tidy_style = "snake", verbose = TRUE)
hansard_lords_attendance_session(session_id = NULL, extra_args = NULL,
tidy = TRUE, tidy_style = "snake", verbose = TRUE)
|
session_id |
The ID of the House of Lords session. If |
extra_args |
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 |
tidy |
Logical parameter. If |
tidy_style |
The style to convert variable names to, if
|
verbose |
If |
To return a tibble with all codes from available individual sessions, use
lords_attendance_session(session_id=NULL)
, or use
lords_sessions()
to retrieve codes for a given date range.
Attendance from multiple sessions can be accessed by using lapply
with the output from lords_sessions()
.
Please note that House of Lords attendance data is not as tidy as some of the others that are accessible through this API, and so additional work on the return from the API may be required.
Also note that this API does not appear to have been updated with data after 2017-01-31.
A tibble with details on the lords who attended a given session.
1 2 3 4 5 6 7 8 9 | ## Not run:
x <- lords_attendance_session(session_id = 706178)
# Returns a list of data frames with details of
# attendance for each day of a given vector of sessions.
u <- lords_sessions(start_date = "2017-01-01")
m <- lapply(u$about, lords_attendance_session)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.