请考虑以下图形:
require(ggplot2)
ggplot(iris, aes(Sepal.Length, Sepal.Width)) + geom_point() +
labs(title = 'Iris[small font]' ) +
theme_classic()
左图是代码输出,右图显示了所需的结果,我为此使用了Adobe Illustrator
问题是,是否可以在行中更改字体大小 ,在此示例中,标题中的标签为[[small font]],但这当然也是一个普遍的问题关于其他标签,例如轴和图例等。
显然,字体大小是用theme()
设置的。但是,可能有一种方法可以设置“相对字体大小”,例如使用rel()
并以某种方式将其与贴标签程序一起使用?
答案 0 :(得分:6)
library(grid)
library(gridtext) # devtools::install_github("clauswilke/gridtext")
library(gridExtra)
library(ggplot2)
ggplot(iris, aes(Sepal.Width, Sepal.Length)) +
geom_point() +
labs(title = "Replace-able") -> gg
gb <- ggplot_build(gg)
gt <- ggplot_gtable(gb)
title <- "<span style='font-size:20'>Iris </span><span style='font-size:12'>[some text]</span>"
tg <- rich_text_grob(title, x = unit(0, "lines"), y = unit(2, "lines"))
gt$grobs[[16]] <- tg
grid.newpage()
grid.draw(gt)
然后,是:
ggplot(iris, aes(Sepal.Width, Sepal.Length)) +
geom_point() -> gg
title <- "<span style='font-size:20'>Iris </span><span style='font-size:12'>[some text]</span>"
tg <- rich_text_grob(title, x = unit(2, "lines"), y = unit(2, "lines"))
grid.newpage()
grid.draw(
arrangeGrob(tg, gg, heights=c(0.1, 0.8))
)
答案 1 :(得分:1)
如果改用ggtext软件包,则可以避免摆弄网格杂物。
# this requires the current development versions of ggplot2 and ggtext
# remotes::install_github("tidyverse/ggplot2")
# remotes::install_github("clauswilke/ggtext")
library(ggplot2)
library(ggtext)
ggplot(iris, aes(Sepal.Width, Sepal.Length)) +
geom_point() +
ggtitle("<span style='font-size:20pt'>Iris </span><span style='font-size:12pt'>[some text]</span>") +
theme(
plot.title = element_markdown()
)
由reprex package(v0.3.0)于2019-12-03创建