gpt4 book ai didi

r - 在ggplot中生成成对堆积条形图(仅在某些变量上使用position_dodge)

转载 作者:行者123 更新时间:2023-12-04 03:37:52 29 4
gpt4 key购买 nike

我希望使用 ggplot2生成一组成对的堆叠条形,就像这样:

stacked bar chars example

使用以下示例数据:

df <- expand.grid(name = c("oak","birch","cedar"),
sample = c("one","two"),
type = c("sapling","adult","dead"))
df$count <- sample(5:200, size = nrow(df), replace = T)

我希望 x 轴代表树的名称,每个树种有两个条形:一个条形代表样本一,一个条形代表样本二。然后每个条的颜色应由类型确定。

以下代码按类型生成带有颜色的堆叠条:
ggplot(df, aes(x = name, y = count, fill = type)) + geom_bar(stat = "identity")

enter image description here

以下代码通过示例生成躲避条:
ggplot(df, aes(x = name, y = count, group = sample)) + geom_bar(stat = "identity", position = "dodge")

enter image description here

但我无法让它躲避一个分组(样本)并堆叠另一个分组(类型):
ggplot(df, aes(x = name, y = count, fill = type, group = sample)) + geom_bar(stat = "identity", position = "dodge")

enter image description here

最佳答案

一种解决方法是放置 sample 的交互和 name在 x 轴上,然后调整 x 轴的标签。问题是条形没有彼此靠近。

ggplot(df, aes(x = as.numeric(interaction(sample,name)), y = count, fill = type)) + 
geom_bar(stat = "identity",color="white") +
scale_x_continuous(breaks=c(1.5,3.5,5.5),labels=c("oak","birch","cedar"))

enter image description here

另一种解决方案是对 name 使用 facets和 sample作为 x 值。
ggplot(df,aes(x=sample,y=count,fill=type))+
geom_bar(stat = "identity",color="white")+
facet_wrap(~name,nrow=1)

enter image description here

关于r - 在ggplot中生成成对堆积条形图(仅在某些变量上使用position_dodge),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21409850/

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