powered by
Custom ggplot theme
theme_significance( family = "Source Sans Pro", base_size = 13, hjust = 0, text_col = "black", bg_col = "white" )
A ggplot2 theme
Font used for all text elements. Default "Source Sans Pro".
Base font size for text elements. Default 12.
Horizontal alignment of title, subtitle, and caption. Default 0.
Text colour. Default "black".
Background colour. Default "white".
library(ggplot2) ggplot(data = mtcars, aes(x = mpg, y = disp, color = wt)) + geom_point() + theme_significance()
Run the code above in your browser using DataLab