theme_gi | R Documentation |
Creates a theme for 'ggplot' based graphics to ensure to meet formal requirements for conferences of the Gesellschaft fuer Informatik
theme_gi()
a 'ggplot' graph with a modified theme
# example borrowed from ggplot2
library(ggplot2)
df <- data.frame(
gp = factor(rep(letters[1:3], each = 10)),
y = rnorm(30))
p <- ggplot() +
geom_point(data = df, aes(gp, y))
p <- p + theme_gi();p
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.