Nothing
### tidy function for epetition_tibble
epetition_tibble_tidy <- function(df, tidy_style) {
if (nrow(df) > 0) {
df$created._value <- gsub("T", " ", df$created._value)
df$created._value <- lubridate::parse_date_time(
df$created._value, "Y-m-d H:M:S"
)
df$created._datatype <- "POSIXct"
df$status <- as.factor(df$status)
}
df <- hansard_tidy(df, tidy_style)
df
}
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.