7

我想在 dodge 订购酒吧geom_bar。你知道如何处理它吗?

我的代码:

ttt <- data.frame(typ=rep(c("main", "boks", "cuk"), 2),
                  klaster=rep(c("1", "2"), 3),
                  ile=c(5, 4, 6, 1, 8, 7))

ggplot()+
    geom_bar(data=ttt, aes(x=klaster, y=ile, fill=typ),
             stat="identity", color="black", position="dodge")

以及示例图以更好地理解问题:

我有的:

我想拥有的:

4

1 回答 1

10

一种选择是创建一个新变量来表示条形图在每个组中的顺序,并将此变量添加为group绘图中的参数。

制作变量的任务有很多方法,这是一种使用dplyr中的函数的方法。新变量基于每个组ile内的降序排列。klaster如果您在任何组中有联系,您将想弄清楚在这种情况下您想要做什么(在给定的联系中,条形应该按什么顺序排列?)。您可能希望将ties.method参数设置为rank远离默认值,可能为"first""random"

library(dplyr)
ttt = ttt %>% 
    group_by(klaster) %>% 
    mutate(position = rank(-ile))
ttt
Source: local data frame [6 x 5]
Groups: klaster [2]

     typ klaster   ile  rank position
  (fctr)  (fctr) (dbl) (dbl)    (dbl)
1   main       1     5     3        3
2   boks       2     4     2        2
3    cuk       1     6     2        2
4   main       2     1     3        3
5   boks       1     8     1        1
6    cuk       2     7     1        1

现在只需添加group = position到您的绘图代码中。

ggplot() +
    geom_bar(data=ttt, aes(x=klaster, y=ile, fill=typ, group = position),
                     stat="identity", color="black", position="dodge")

在此处输入图像描述

于 2015-10-14T23:12:25.047 回答