gpt4 book ai didi

r - 将有图例的图与没有图例的图结合起来

转载 作者:行者123 更新时间:2023-12-04 17:08:01 25 4
gpt4 key购买 nike

我可以组合三个没有任何图例的图,但是当我向其中两个图添加图例时,我无法组合它们。如何将一些带有图例的图与没有图例的图结合起来?

这是我如何组合没有图例的图的示例:

library(ggplot2)
map_data <- data.frame(lon = c(-177.5, -172.5, -167.5, -162.5, -157.5, -152.5),
lat = c(87.5, 87.5, 87.5, 87.5, 87.5, 87.5),
ssta = c(-2.78999996, 0.09999999, 0.19999999, 0.06000000, 1.65999997, -0.41000000))

# one map
p.1 <- ggplot() +
borders("world",
colour="black",
fill="white") +
geom_tile(data = map_data,
aes(lon,
lat)) + # no fill value so no legend
coord_fixed() +
scale_fill_viridis(na.value = "transparent") +
theme_minimal()

# a second map, the same general shape
p.2 <- p.1

# a line plot
library(lubridate)
time_sequence <- seq(dmy("01-01-1800"),
dmy("01-01-1960"),
by = 'month')
long_plot_data <- data.frame(variable = seq(dmy("01-01-1800"),
dmy("01-01-1960"),
by = 'month'),
value = runif(length(time_sequence)),
col = runif(length(time_sequence)))

p.3 <- ggplot(long_plot_data,
aes(variable,
value)) +
geom_line() +
theme_minimal()


# combine plots
library(grid)
grid.newpage()
grid.draw(rbind(ggplotGrob(p.1),
ggplotGrob(p.2),
ggplotGrob(p.3),
size = "last"))

enter image description here

现在,如果我向 map 图添加填充值,则会在尝试以相同方式组合时得到图例和错误:
# one map
p.1 <- ggplot() +
borders("world",
colour="black",
fill="white") +
geom_tile(data = map_data,
aes(lon,
lat,
fill = ssta)) + # gives a legend
coord_fixed() +
scale_fill_viridis(na.value = "transparent") +
theme_minimal()

这是它的样子:

enter image description here
# a second map, the same general shape
p.2 <- p.1

# a line plot
library(lubridate)
time_sequence <- seq(dmy("01-01-1800"),
dmy("01-01-1960"),
by = 'month')
long_plot_data <- data.frame(variable = seq(dmy("01-01-1800"),
dmy("01-01-1960"),
by = 'month'),
value = runif(length(time_sequence)),
col = runif(length(time_sequence)))

p.3 <- ggplot(long_plot_data,
aes(variable,
value)) +
geom_line() +
theme_minimal()

现在我尝试将两张 map 与图例和没有图例的线图结合起来:
# combine plots
library(grid)
grid.newpage()
grid.draw(rbind(ggplotGrob(p.1),
ggplotGrob(p.2),
ggplotGrob(p.3),
size = "last"))

输出为 Error: ncol(x) == ncol(y) is not TRUE
但是如果我向线图中添加一个图例,以便所有三个图都有图例,我可以将它们组合起来:
p.3 <-  ggplot(long_plot_data, 
aes(variable,
value,
colour = col)) +
geom_line() +
theme_minimal()


# combine plots
library(grid)
grid.newpage()
grid.draw(rbind(ggplotGrob(p.1),
ggplotGrob(p.2),
ggplotGrob(p.3),
size = "last"))

enter image description here

如何将两个带有图例的图与一个没有图例的图组合在一起?

最佳答案

您收到错误的原因是您的 3 个 gtable 对象之一有 5 列,而另一个有 6 列(p.3 对象有 5 个,因为您排除了图例)。您可以通过执行以下操作来查看 gtable 对象的不同布局:

library(gtable)
gtable_show_layout(ggplotGrob(p.1))
gtable_show_layout(ggplotGrob(p.2))
gtable_show_layout(ggplotGrob(p.3))

我不会在此处发布图片,因为它们会影响答案,但我认为值得您自己查看。

无论如何,我们可以做的就是在您的 p.3 上添加一个额外的列来解决这个问题。 gtable 然后使用 size="first"选项(因为我们希望图例位于我们有图例的图的正确位置)。

这应该有效:
library(grid)
library(gtable)

grid.draw(rbind(ggplotGrob(p.1),
ggplotGrob(p.2),
gtable_add_cols(ggplotGrob(p.3),unit(1,"lines")),
size = "first"))

enter image description here

最后一件事是最后一个图中的 y 轴标题与标签略微重叠,这是因为我们从第一个图中获取了尺寸,并且第一个图中的标签较小(因此 y 轴标签需要较少的空间)。为了解决这个问题,您可以稍微改变您的 p.3代码:
p.3<-  ggplot(long_plot_data, 
aes(variable,
value)) +
geom_line() +
theme_minimal() %+replace% theme(axis.title.y=element_text(margin=margin(0,20,0,0),angle=90))

重新运行给我们:
grid.draw(rbind(ggplotGrob(p.1), 
ggplotGrob(p.2),
gtable_add_cols(ggplotGrob(p.3),unit(1,"lines")),
size = "first"))

enter image description here

关于r - 将有图例的图与没有图例的图结合起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38017042/

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