gpt4 book ai didi

r - geom_bar() 使条形不同宽度并完全重叠

转载 作者:行者123 更新时间:2023-12-04 18:00:48 27 4
gpt4 key购买 nike

我有一些数据可以捕获多个时间段内两个不同组的百分比。

df <- structure(list(period = structure(c(1L, 2L, 3L, 4L, 5L, 1L, 2L, 
3L, 4L, 5L), .Label = c("FY18 Q4", "FY19 Q1", "FY19 Q2", "FY19 Q3",
"FY19 Q4"), class = "factor"), key = c("You", "You", "You", "You", "You",
"Me", "Me", "Me", "Me", "Me"), value = c(0.707036316472114,
0.650424585523655, 0.629362214199759, 0.634016393442623, 0.66578947368421,
0.509574110529601, 0.505703612591682, 0.493109917284898, 0.497505296695832,
0.523938932489946)), row.names = c(NA, -10L), class = c("tbl_df",
"tbl", "data.frame"))

我想绘制此数据,以便一段时间内的两个条形相互重叠,但条形的宽度不同。我希望“我”的栏是 width=0.5和“你”的酒吧 width=0.7 .我还想包括一个图例,显示每种颜色代表什么。

如果我想并排绘制条形图,我可以使用 position="dodge" , 像这样:
library(ggplot2)
library(dplyr)

ggplot(data=df, aes(x=period, y=value, fill=key)) +
geom_bar(stat="identity", position="dodge")

enter image description here

我发现我可以让条形重叠,然后改变每个 geom_bar() 的宽度单独,像这样:
ggplot(data=df %>% filter(key=="You"), aes(x=period, y=value, color=)) +
geom_bar(stat="identity", fill="gray50", width=.7) +
geom_bar(data=df %>% filter(key=="Me"), stat="identity", fill="darkblue", width=0.5)

enter image description here

第二个选项是我想要的,但我不再有图例来显示颜色代表什么。如何像第二个示例一样有效地创建图表,但保留图例?

最佳答案

指定 width主内aes (您可以使用 ifelse 传递想要的值):

library(ggplot2)
ggplot(df, aes(period, value, fill = key, width = ifelse(key == "You", 0.7, 0.5))) +
geom_bar(stat = "identity") +
scale_fill_manual(values = c("darkblue", "gray50"))

enter image description here

关于r - geom_bar() 使条形不同宽度并完全重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55152147/

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