Skip to contents

A function for retrieving meetings from a specific parliamentary session

Usage

get_session_meetings(sessionid = NA, good_manners = 0)

Arguments

sessionid

Character string indicating the id of the session to request all votes from

good_manners

Integer. Seconds delay between calls when making multiple calls to the same function

Value

A data.frame with the following variables:

response_dateDate of data retrieval
versionData version from the API
session_idSession id
agenda_numberAgenda number within the session
footnoteFootnotes for the meeting
meeting_idMeeting id
no_meeting_textDescription of why there was no meeting, if relevant
evening_meetingWhether the meeting was an evening meeting or not
noteNote for the meeting
meeting_dateDate the meeting took place
meeting_orderIndicator for meeting order
meeting_placeWhere the meeting took place
transcript_idId for transcript (usually empty)
additional_agendaLogical indicator for whether there was additional agenda to the meeting

Examples


if (FALSE) {

meet <- get_session_meetings("2013-2014")
head(meet)

}