gpt4 book ai didi

r - geom_bar() : stacked and dodged combined

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

我寻求关于 ggplot2::geom_bar() 的建议。

我的数据包含类别“A”、“B”、“Z”。
我想要 A、B 作为堆叠条,Z 作为躲避条 旁边A、B酒吧 .

# sample data
A = c(3, 4, 3, 5)
B = c(2, 2, 1, 4)
Z = c(1, 2, 1, 2)
R = c(-2, -1, -3, 0)
S = c(7,7,7,9)
mydata = data.frame(cbind(A,B,Z,R,S))
dates = c("2014-01-01","2014-02-01","2014-03-01","2014-04-01")
mydata$date = as.Date(dates)
mydata.m = melt(mydata,id="date")
names(mydata.m) = c("variable", "category","value")



s = ggplot(mydata.m, aes(x=variable, fill=category)) +
# bars for cat A, B, Z
geom_bar(data=subset(mydata.m, category %in% c("A","B")), aes(y=value), stat="identity", position="stack") +
geom_bar(subset=.(category=="Z"), aes(y=-value), stat="identity", position="dodge") +

# lines for cat R, S
geom_line(subset=.(category=="R"), aes(y=value), linetype="solid", size=1) +
geom_line(subset=.(category=="S"), aes(y=value), linetype="solid", size=1) ;

上面没有将 Z 条放在 AB 条旁边,而是覆盖在 AB 条上。使用 aes(y=-value) 或 facet_wrap 为“Z”制作单独的绘图解决了哪个问题。但我更喜欢它 旁边 到AB吧,不在下面。有什么建议?谢谢!

附带问题:填充图例有 R、S 的颜色,但在情节中线条只是黑色,我不明白为什么?

最佳答案

好的,所以几天前有一个 good question有点类似于您面临的根本问题,因此我将建立该问题已接受的答案中使用的方法,因为它有效,而且我不知道有任何其他方法可以让 stack ed 和 dodge d 条在 ggplot2 .本质上,解决方案是手动移动 geom_bar 的数据。出于兴趣。在上面引用的问题中,这更直接一点,因为水平轴是数字,因此您可以快速确定移动多少。在这种情况下,您的水平轴属于类 Date ,但是为您的 category==Z 找到合适的偏移值并不需要太多的努力。数据子集。首先构建一个绘图对象,就像你在上面所做的那样(我称之为 s2);除非你知道你的两个 geom_bar s 是重叠的,所以你必须稍微调整一下宽度 - 我使用了 width = 5经过一些试验和错误:

s2 <- ggplot(
mydata.m,
aes(x=variable, fill=category))+
geom_bar(
data=subset(mydata.m, category %in% c("A","B")),
aes(y=value),
stat="identity",
position="stack",
width=5) +
geom_bar(data =
subset(mydata.m, category=="Z"),
aes(y=-value),
stat="identity",
position="dodge",
width=5)+
geom_line(
data = subset(mydata.m,category=="R"),
aes(y=value),
linetype="solid",
size=1) +
geom_line(
data = subset(mydata.m,category=="S"),
aes(y=value),
linetype="solid",
size=1)
##
s2

enter image description here

然后,我们可以通过执行查看绘图对象的水平位置
> ggplot_build(s2)$panel$ranges[[1]]$x.major
Jan 01 Jan 15 Feb 01 Feb 15 Mar 01 Mar 15 Apr 01
0.06937799 0.20334928 0.36602871 0.50000000 0.63397129 0.76794258 0.93062201

我想您可以通过查看 s2 图中的 x 轴标签来观察这个问题。 ,但如果您想计算特定位置/坐标,这将为您提供详细信息。无论哪种方式,您只需要对要移动的数据进行一些调整,在本例中 category == Z .我为此创建了一个新对象, s3 ,我将数据移动了 7(即 7 天,因为 variableDate ):
s3 <- ggplot(
mydata.m,
aes(x=variable, fill=category))+
geom_bar(
data=subset(mydata.m, category %in% c("A","B")),
aes(y=value),
stat="identity",
position="stack",
width=5) +
geom_bar(
subset(mydata.m, category=="Z"),
aes(y=value,x=variable+7),
stat="identity",
position="dodge",
width=5)+
geom_line(
data = subset(mydata.m, category=="R"),
aes(y=value),
linetype="solid",
size=1) +
geom_line(
data = subset(mydata.m, category=="S"),
aes(y=value),
linetype="solid",
size=1)
s3
##

enter image description here

编辑:另外,我不太确定为什么你的台词是 RS出现黑色,尽管我怀疑这与您使用不同的 geom 的事实有关。为他们。无论如何,你可以通过这样做来解决这个问题
s5 <- ggplot(
subset(mydata.m,
!(category %in% c("R","S"))),
aes(x=variable, fill=category))+
geom_bar(
data=subset(mydata.m, category %in% c("A","B")),
aes(y=value),
stat="identity",
position="stack",
width=5) +
geom_bar(data =
subset(mydata.m, category=="Z"),
aes(y=value,x=variable+7),
stat="identity",
position="dodge",
width=5)+
geom_line(
data=subset(
mydata.m,
category %in% c("R","S")),
aes(y=value,color=category),
linetype="solid",
size=1) +
geom_line(
data=subset(
mydata.m,
category %in% c("R","S")),
aes(y=value,color=category),
linetype="solid",
size=1)
s5

enter image description here

这仍然显示 RS在原始图例框中(很可能是因为它们是您的因子 category 的因子水平),但您至少可以得到另一个图例来区分它们。

关于r - geom_bar() : stacked and dodged combined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24820452/

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