errickson.net
Back to Blog

Increase ALL Text Size in ggplot

#ggplot #r #visualization

You can add

1
+ theme( text = element_text(size=20)))

to a ggplot object to modify the size of ALL text elements.

(This is with ggplot 3.4.1 in case they change the API again.)


Back to Blog