View source: R/Plotting_Utilities.R
Blank_Theme | R Documentation |
Shortcut for thematic modification to remove all axis labels and grid lines
Blank_Theme(...)
... |
extra arguments passed to |
Returns a list-like object of class theme.
# Generate a plot and customize theme
library(ggplot2)
df <- data.frame(x = rnorm(n = 100, mean = 20, sd = 2), y = rbinom(n = 100, size = 100, prob = 0.2))
p <- ggplot(data = df, mapping = aes(x = x, y = y)) + geom_point(mapping = aes(color = 'red'))
p + Blank_Theme()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.