#' A function that allows piping ggsave
#'
#' @param NULL It doesn't require parameters
#' @keywords ggsave
#' @return A saved ggplot object
#' @examples
#' ggsave2()
#' @export
ggsave2 <- function(...) {
require(tidyverse)
ggplot2::ggsave(...)
invisible()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.