Nothing
#' Whippr ggplot2 theme
#'
#' This theme was inspired by the plots from the Acta Physiologica Journal
#'
#' @param base_size base font size, given in pts. Default is `14`.
#' @param base_family base font family. Default is `sans`.
#'
#' @return a ggplot2 object
#' @export
#' @importFrom ggplot2 theme_light theme element_rect element_line element_text
theme_whippr <- function(base_size = 14, base_family = "sans") {
theme_light(base_size = base_size, base_family = base_family) +
theme(
panel.background = element_rect(fill = "#fefeda"),
axis.line = element_line(color = "black"),
axis.ticks = element_line(color = "black", linewidth = 1),
axis.text = element_text(color = "black", face = "bold"),
axis.title = element_text(face = "bold"),
plot.title = element_text(face = "bold"),
panel.border = element_rect(colour = NA)
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.