我正在尝试编写一个函数,其中我们的公司徽标会在导出时自动添加到每个图表中,作为函数的一部分,在标题和副标题旁边。每个输出的尺寸将取决于当时的需求,因此不幸的是,设定尺寸不会特别有用。
为此,我已经生成了一系列网格,将所有内容放在一起,如下所示(使用虹膜数据集)。
library(datasets)
library(tidyverse)
library(gridExtra)
library(grid)
library(png)
m <- readPNG("Rlogo.png") # download from: https://www.r-project.org/logo/Rlogo.png
plot <- ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) +
geom_col() +
ggtitle("Title goes here",
subtitle = "subtitle down here")
txtTitle <- plot$labels$title
txtSubTitle <- plot$labels$subtitle
plot$labels$title <- NULL
plot$labels$subtitle <- NULL
buffer <- grobTree(rectGrob(gp = gpar(fill = "white", col = "white")))
Title <- grobTree(textGrob(label = txtTitle,
hjust = 1,
x = 0.98))
SubTitle <- textGrob(label = txtSubTitle,
hjust = 1,
x = 0.98)
Logo <- grobTree(rasterGrob(m, x = 0.02, hjust = 0))
TitlesGrid <- grid.arrange(Title, SubTitle, ncol = 1)
TopGrid <- grid.arrange(Logo, TitlesGrid, widths = c(1, 7), ncol = 2)
AllGrid <- grid.arrange(TopGrid, arrangeGrob(plot), heights = c(1,7))
这提供了以下不同宽高比的输出。
第一个例子在标题和副标题之间有一个很好的差距,而第二个例子则太多了。我如何制作它以使TopGrid
的高度固定为绝对大小,但其余的填充到所需的大小?
答案 0 :(得分:4)