gpt4 book ai didi

r - 在 ggplot2 中的条之间添加空间

转载 作者:行者123 更新时间:2023-12-03 08:51:53 25 4
gpt4 key购买 nike

我想在 ggplot2 中的条之间添加空格。本页提供了一种解决方案:http://www.streamreader.org/stats/questions/6204/how-to-increase-the-space-between-the-bars-in-a-bar-plot-in-ggplot2 .然而,该解决方案不是对 x 轴分组使用因子水平,而是创建一个数字序列 x.seq,以手动放置条形,然后使用 width() 缩放它们。争论。 width()但是,当我对 x 轴使用因子级别分组时,如下例所示,不起作用。

library(ggplot2)

Treatment <- rep(c('T','C'),each=2)
Gender <- rep(c('M','F'),2)
Response <- sample(1:100,4)
df <- data.frame(Treatment, Gender, Response)

hist <- ggplot(df, aes(x=Gender, y=Response, fill=Treatment, stat="identity"))
hist + geom_bar(position = "dodge") + scale_y_continuous(limits = c(0,
100), name = "")

有谁知道如何获得与链接示例相同的效果,但同时使用因子级别分组?

最佳答案

这是你想要的吗?

hist + geom_bar(width=0.4, position = position_dodge(width=0.5))
  • widthgeom_bar确定条的宽度。
  • widthposition_dodge确定每个条的位置。

  • 和他们一起玩一段时间后,你可能很容易理解他们的行为。

    enter image description here

    关于r - 在 ggplot2 中的条之间添加空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6085238/

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