Learn R Programming

agricolaeplotr (version 0.6.1)

theme_gi: 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()

Arguments

Value

a 'ggplot' graph with a modified theme

Examples

Run this code
# 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