theme_gi {agricolaeplotr} | R Documentation |
theme_gi
Description
Creates a theme for 'ggplot' based graphics to ensure to meet formal requirements for conferences of the Gesellschaft fuer Informatik
Usage
theme_gi()
Value
a 'ggplot' graph with a modified theme
Examples
# 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
[Package agricolaeplotr version 0.5.0 Index]