#' standard ggplot2 theme to use throughout the package
#' @import ggplot2
#' @export
theme_apps <- function() {
theme_minimal() +
theme(panel.border = element_blank(),
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
axis.line = element_line(colour = "black"),
plot.tag = element_text(face = "bold"),
axis.title = element_text(size = 15),
plot.caption = element_text(size = 15)
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.