Nothing
## tidying sessions queries
sessions_tidy <- function(df, days, tidy_style) {
df$`_about` <- gsub("http://data.parliament.uk/resources/", "", df$`_about`)
if (days == FALSE) {
df$endDate._value <- as.POSIXct(df$endDate._value)
df$startDate._value <- as.POSIXct(df$startDate._value)
df$endDate._datatype <- "POSIXct"
df$startDate._datatype <- "POSIXct"
} else {
df$date._value <- as.POSIXct(df$date._value)
df$date._datatype <- "POSIXct"
}
df <- hansard_tidy(df, tidy_style)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.