#' Convert data frame to vector
#' @param data data.frame
#'
convert_data_frame_to_vector <- function(data) {
data %>%
as.list() %>%
unlist()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.