theme_isb_oPfeil: ggplot2 theme ohne Pfeile an den Achsen

Description Usage Arguments Examples

View source: R/theme_isb.R

Description

ggplot2 theme ohne Pfeile an den Achsen

Title

Usage

1
2
3
theme_isb_oPfeil(Winkel = 90, hVer = 1)

theme_isb_oPfeil_quer(Winkel = 0, hVer = 0.5)

Arguments

Winkel
hVer

Examples

1
2
3
4
5
require(ggplot2)
p4 <- ggplot(tibble(x=rnorm(100),y=rnorm(100)^3),aes(x,y))+geom_point()+stat_smooth()+theme_isb_oPfeil()
p5 <- ggplot(tibble(x=rnorm(100),y=rnorm(100)^3),aes(x,y))+geom_point()+stat_smooth()+theme_isb_oPfeil_quer()
cowplot::plot_grid(p4, p5, labels = c("theme_isb_oPfeil","theme_isb_oPfeil_quer"))
ggplot(tibble(x=rnorm(100),y=rnorm(100)^3),aes(x,y))+geom_point()+stat_smooth()+stat_smooth(method="lm",color="red",fill="lightblue")+theme_isb_oPfeil_quer()

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