Nothing
#' A theme to minimally strip away the context
#'
#' Note this is not a complete theme hence why there are no arguments.
#'
#' @examples
#' library(ggplot2)
#' ggplot(cars, aes(dist, speed)) + theme_strip()
#'
#' @export
theme_strip <- function() {
ggplot2::theme(axis.title = ggplot2::element_blank(),
axis.text = ggplot2::element_blank(),
axis.ticks.length = grid::unit(0, "mm"))
}
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.