增加图例字体大小ggplot2


128

有没有办法增加字体大小ggplot2?我想我需要legend.key.width = unit(2, "line")theme函数中指定类似的内容,但这用于调整图例中的键,而不是字体大小。谢谢!


2
我通常会提到?theme这类问题
里卡多·萨波特

Answers:




17

您还可以使用函数指定对于base_size主题中包含的字体大小,例如theme_bw()(其中base_size为11)rel()

例如:

ggplot(mtcars, aes(disp, mpg, col=as.factor(cyl))) +
  geom_point() +
  theme_bw() +
  theme(legend.text=element_text(size=rel(0.5)))

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.