powered by
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
Run the code above in your browser using DataLab