gpt4 book ai didi

删除多面条形图中条形之间的空白

转载 作者:行者123 更新时间:2023-12-03 09:02:35 27 4
gpt4 key购买 nike

enter image description here

我有一个这样的情节,由以下内容组成:

plot = ggplot(dat, aes(x=Nest)) + geom_bar(aes(fill=MotherID), position = position_stack(reverse = TRUE)) + facet_wrap(~Year) + scale_fill_grey(start = 0, end = .9) + theme(axis.text.x = element_text(angle = 90, hjust = 1)) + theme(legend.position="none") + ylab("Number of offpsring")

我希望所有条形都彼此相邻,并且它们之间没有间隙,例如 x 轴上的 3、4、9。我想这是因为 Nest 是一个数字而不是一个字符串。

我有dat$nest = as.factor(dat$nest)

最佳答案

如果您使用构面,则它们之间共享轴。然而,scales 参数可以让它们自由。

facet_wrap(~Year, scales = "free_x")

http://ggplot2.tidyverse.org/reference/facet_wrap.html

关于删除多面条形图中条形之间的空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49287170/

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