Nothing
# Contains <ggplot> themes for float_contrast == TRUE | FALSE
#
# Contains themes `float_contrast_theme` and `non_float_contrast_theme`.
# Theme for left-right graph
float_contrast_theme <- ggplot2::theme(
plot.margin = ggplot2::unit(c(0, 0, 0, 0), "pt"),
axis.line.x = ggplot2::element_blank(),
axis.title.x = ggplot2::element_blank(),
axis.ticks.x = ggplot2::element_blank(),
axis.title.x.bottom = ggplot2::element_blank(),
legend.title = ggplot2::element_blank()
)
# Theme for top-down graph
non_float_contrast_theme <- ggplot2::theme(
plot.margin = ggplot2::unit(c(0, 0, 0, 0), "pt"),
axis.line.x = ggplot2::element_blank(),
axis.title.x = ggplot2::element_blank(),
axis.ticks.x = ggplot2::element_blank(),
axis.title.x.bottom = ggplot2::element_blank(),
legend.title = ggplot2::element_blank()
)
# Theme for removal of all axes and labels
remove_all_axes_theme <- ggplot2::theme(
axis.line = ggplot2::element_blank(),
axis.title = ggplot2::element_blank(),
axis.ticks = ggplot2::element_blank(),
legend.title = ggplot2::element_blank(),
plot.margin = ggplot2::unit(c(0, 0, 0, 0), "pt")
)
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.