gpt4 book ai didi

r - 使用 grid.arrange 更改 multiplot ggplot2 中的多行标题

转载 作者:行者123 更新时间:2023-12-01 07:54:51 25 4
gpt4 key购买 nike

我遵循了讨论中的建议

changing title in multiplot ggplot2 using grid.arrange

但我的 2 行标题不会改变字体大小。

1- 我应该在 grid.arrange 中声明 main 还是在没有 main 的情况下使用 grid.arrange 然后添加以下脚本

main=textGrob(paste("titleLine1", "titleLine2", sep = "\n"),gp=gpar(fontsize=20))

谢谢

颂歌

最佳答案

这是一种可能性,

enter image description here

library(grid); library(gridExtra)
tg <- textGrob("Title Goes Here", gp=gpar(fontsize=30))
sg <- textGrob("more subtle subtitle ", gp=gpar(fontsize=15, fontface=3L))
margin <- unit(0.5, "line")
grid.newpage()
grid.arrange(tg, sg, rectGrob(),
heights = unit.c(grobHeight(tg) + 1.2*margin,
grobHeight(sg) + margin,
unit(1,"null")))

关于r - 使用 grid.arrange 更改 multiplot ggplot2 中的多行标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31630020/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com