Nothing
#' Prints question summary for two years
#'
#' @param question_summary data.frame, summarises selected question
#' @noRd
#'
.print_two_year_summary <- function(question_summary) {
message(paste(
"This questions was asked in",
paste(question_summary$year, collapse = " and ")
))
for (i in seq_len(nrow(question_summary))) {
message(paste(
"In", question_summary$year[i],
"it was asked in", question_summary$n[i],
"of the selected geographies"))
}
}
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.