Description Usage Arguments Value Examples
Get minutes from the Danish Parliament
1 | get_MeetingData(MeetingList, return = "DTlist", verbose = FALSE)
|
MeetingList |
list; A list of meetings you wish
to get data on buildt using |
return |
character; The form to return data in. See return for more. |
verbose |
Tells you what is going on. |
Data can be returned in one of the following formats:
DTlist: (default) A list containing three data.tables named Meeting, DagsordenPunkt and Aktivitet.
DTnested: A nested data.table, with colum 'DagsordenPunkt' containing a data.table for each DagsordenPunkt, which again contains the column 'Aktivitet' containing a data.table for each Aktivitet
XMLlist: The raw XML data parsed as an R list
XMLdata: The raw XML data as an XMLInternalDocument
1 2 3 4 5 6 7 8 | # Get a list of all available parliamentary sessions
FT_sessions <- getList_Session()
# Get a list of all meetings in the third session
FT_meetings <- getList_Meeting(FT_sessions[3])
# Return the parsed meeting minutes of that session as a list of data.tables
FT_data <- get_MeetingData(FT_meetings)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.