theme_gi: theme_gi

View source: R/hello.R

theme_giR 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

agricolaeplotr documentation built on July 26, 2023, 5:47 p.m.