Basic theme for Bivaran packages plots
Usage
theme_serene(
base_size = 14,
base_family = "sans",
base_fontface = "plain",
base_line_size = base_size/14,
base_rect_size = base_size/14,
axis_text_angle = 0,
border = FALSE
)Examples
library(ggplot2)
data <- mtcars
p1 <- ggplot(data, aes(disp, hp))+
geom_point()+
geom_smooth()
p1 + theme_serene()
#> `geom_smooth()` using method = 'loess' and formula = 'y ~ x'
