gpt4 book ai didi

r - 在ggplot2之上覆盖基本R图形

转载 作者:行者123 更新时间:2023-12-04 10:38:21 27 4
gpt4 key购买 nike

我在 ggplot 中有一个绘图,我希望覆盖我使用基本 R 代码创建的 map 图例。我不知道如何在 ggplot 上覆盖基本 R 图形,我将不胜感激。

目前我有一个 ggplot 图例,如下所示:enter image description here

我不喜欢这个传说的几处我想改变的地方(这导致我认为诉诸基本 R 图形会更容易做到这一点)。

特别是,我希望消除图例中方框之间的空白,我也希望在方框之间添加刻度线。我还希望将“5”放在分隔第一个和第二个框的第一个刻度线下方;分隔第二个和第三个框的刻度线下方的“10”;和分隔第三个和第四个框的刻度线下方的“20”。我还希望使图例中的框与我的情节中的“箱”之一的大小相同(我使用 stat_bin2d 层)。

相关代码:

ggplot()+
stat_bin2d(restaurants.df,binwidth=c(1500,2500), alpha=0.6,aes(x=X,y=Y,fill=cut(..count.., c(0,5,10,20,Inf))))+
scale_fill_manual("No. of Restaurants",labels=c("<5","5-10","10-20",">20"),values=cols, guide = guide_legend(direction = "horizontal", title.position = "top", ticks=TRUE,label.position="bottom")) +
theme(legend.background = element_rect(colour = "black"),
legend.key = element_rect(color='black'))

最佳答案

@baptiste 的评论让我对尝试创建一个将成为传奇的情节感兴趣。这是我的尝试。我使用 geom_tile 创建一个将成为图例的图。 OP 没有提供示例数据,所以我使用内置的 mtcars 数据创建了一个绘图,只是为了将图例放在旁边。然后我使用 grid.arrange 创建最终的 plot-plus-legend 布局。

library(ggplot2)
library(grid)
library(gridExtra)

## Create legend

# Fake data
dat = data.frame(x=1:4, y="Group", col=factor(1:4))

# Create a plot that will become the legend
legend = ggplot(dat, aes(x,y, fill=col)) +
geom_tile(show.legend=FALSE) +
scale_x_continuous(breaks=c(1.5,2.5,3.5), labels=c(5,10,20)) +
scale_fill_manual(values=c("yellow","orange","red","darkred")) +
labs(y="", x="") +
ggtitle("No. of Restaurants") +
theme_bw() +
theme(panel.border=element_blank(),
axis.ticks.y=element_blank(),
axis.text.y=element_blank())

## Create a plot to put next to the legend
p1 = ggplot(mtcars, aes(mpg, wt)) +
geom_point() +
theme(plot.margin=unit(c(0,0,0,0)))

# Arrange plot and legend
grid.arrange(p1, arrangeGrob(rectGrob(gp=gpar(col=NA)),
legend,
rectGrob(gp=gpar(col=NA)),
heights=c(0.42,0.16,0.42)),
widths=c(0.8,0.2))

enter image description here

关于r - 在ggplot2之上覆盖基本R图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32575342/

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