#' Print every row of data
#'
#' Quickly print every row of your data.
#'
#' @param data Tibble, data.frame, etc. that you want to print.
#'
#' @return A dataset with all of the rows printed to screen.
#' @export
#'
#' @examples
#' `%>%` <- magrittr::`%>%`
#' dplyr::starwars %>% dplyr::count(name) %>% print_all()
print_all <- function(data) {
print(data, n = nrow(data))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.