#' Print all data frame rows to console
#' @return A data frame.
#' @export
#' @examples
#' require(ggplot2)
#' mpg |> print_all()
#' mpg |> print_all(n=50)
print_all <- function(x, n = nrow(x)){print(x, n = n )}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.