How to change the default font size in ggplot2?

700    Asked by ChloeBurgess in Data Science , Asked on Jul 8, 2021

I'd like to know if it is possible to change some default parameters of ggplot2 graphics, like font size for instance, for a whole R session. The idea is to avoid setting them for each plot. How ggplot change font size?

Answered by Behailu

To change the default font size in ggplot2, you can use the theme_set() function as follows:

theme_set(theme_gray(base_size = 15))

For example:

ggplot(mpg, aes(cty, hwy)) + geom_point()

Output:



Your Answer

Interviews

Parent Categories