You can set theme options globally for each session with theme_set()
library(ggplot2)
theme_set(
theme_classic(base_size = 25)
)
ggplot(mtcars, aes(wt, mpg)) +
geom_point() +
labs(title = "Fuel economy declines as weight increases")
You can set theme options globally for each session with theme_set()
library(ggplot2)
theme_set(
theme_classic(base_size = 25)
)
ggplot(mtcars, aes(wt, mpg)) +
geom_point() +
labs(title = "Fuel economy declines as weight increases")