我希望所有元素的第一个图的字体大小均为22。我可以通过theme_set(theme_gray(base_size = 22))
来实现。我希望第二个图返回到默认大小,这已在下面完成。问题-theme_set(theme_gray(base_size = 22))
是否有一个我可以在第一个绘图上使用的替代命令,它将使我不必在随后的绘图上将值重置为正常值?
library(ggplot2)
# First plot with base size of 22
theme_set(theme_gray(base_size = 22))
ggplot(mpg, aes(hwy)) + geom_density()
# Second plot, which I want to return to the default size 10
theme_set(theme_gray(base_size = 10))
ggplot(mpg, aes(hwy)) + geom_histogram()