#' Show all rows in a tibble
#'
#' Takes a data frame or tibble input and outputs a tibble that shows all rows.
#'
#' @param df a dataframe or tibble
#' @export
show_all <- function(df){
dplyr::as_tibble(df) %>% print(n=nrow(df))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.