theme_isb: Helles Thema für ggplot2

Description Usage Arguments Examples

Description

Helles Thema für ggplot2

Themen für ggplot2

Thema ohne Achsen

Title

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
theme_isb()

theme_isb_grey()

theme_isb_ohneAxis()

theme_min(
  size = 10,
  font = NA,
  face = "plain",
  backgroundColor = "white",
  panelColor = "grey",
  axisColor = "#999999",
  gridColor = "grey",
  textColor = "black"
)

Arguments

size
font
face
backgroundColor
panelColor
axisColor
gridColor
textColor

Examples

1
2
3
4
5
require(ggplot2)
p1 <- ggplot(tibble(x=rnorm(100),y=rnorm(100)^3),aes(x,y))+geom_point()+stat_smooth()+theme_isb()
p2 <- ggplot(tibble(x=rnorm(100),y=rnorm(100)^3),aes(x,y))+geom_point()+stat_smooth()+theme_isb_grey()
p3 <- ggplot(tibble(x=rnorm(100),y=rnorm(100)^3),aes(x,y))+geom_point()+stat_smooth()+theme_isb_ohneAxis()
cowplot::plot_grid(p1, p2, p3, labels = c("theme_isb","theme_isb_grey","theme_isb_ohneAxis"),hjust=-.1,scale=.85,label_size=12)

lillion/emittr documentation built on May 10, 2020, 7:23 a.m.