我正在尝试在 R 中绘制一些数据和下面的表格。在 R 中,它看起来不错(图 1),但是,当我导出图片时(图 2),它看起来真的很丑,而且格式不一样。
library(tidyverse)
library(cowplot)
p <- ggplot(iris, aes(Sepal.Length, Petal.Length, col = Species)) + geom_point()
info <- iris %>% group_by(Species) %>% summarise_all(mean)
table_plot <- tableGrob(info, theme = ttheme_default(base_size = 8), rows = NULL)
plot_total <- plot_grid(p, table_plot, nrow = 2, rel_heights = c(4 / 5, 1 / 5))
plot_total
save_plot("iris.png", plot_total)