R ggplot2:重新排序分组的条形图

时间:2017-05-27 02:09:54

标签: r plot ggplot2

我是R的新手,并设法使用ggplot2制作分组条形图。我想尝试对剧情进行重新排序,以便按照“homepercent'按降序排列。

这是数据:

      team      homepercent awaypercent

1     Adelaide    85          50
2     Brisbane    18           8
3     Carlton     38          17

等...

这是生成分组条形图的代码,只是按团队名称的顺序。

winpercent <- read.csv("winpercent.csv")

winpercent.m <- melt(winpercent, id.vars='team')

ggplot(winpercent.m, aes(team, value))
    +geom_bar(aes(fill=variable), width=0.4, position=position_dodge(width=0.5), stat="identity")
    +theme(legend.position = 'top', legend.title=element_blank(), axis.title.x=element_blank(), axis.title.y=element_blank())

任何答案都将非常感谢!

0 个答案:

没有答案