使用ggplot2在r中聚集条形图

时间:2013-06-24 11:05:14

标签: r ggplot2

剪切我的数据框

基本上我想显示按国家分组的条形图,即我想在集群情节中显示没有人为所有国家做自杀事件,同样也为事故和刺伤显示。我正在使用ggplot2。我有不知道怎么做。

任何帮助。

提前致谢

2 个答案:

答案 0 :(得分:7)

编辑以更新较新的(2017)软件包版本

library(tidyr)
library(ggplot2)
dat.g <- gather(dat, type, value, -country)
ggplot(dat.g, aes(type, value)) + 
  geom_bar(aes(fill = country), stat = "identity", position = "dodge")

enter image description here

原始答案

dat <- data.frame(country=c('USA','Brazil','Ghana','England','Australia'), Stabbing=c(15,10,9,6,7), Accidents=c(20,25,21,28,15), Suicide=c(3,10,7,8,6))
dat.m <- melt(dat, id.vars='country')

我想这是你想要的格式吗?

ggplot(dat.m, aes(variable, value)) + 
  geom_bar(aes(fill = country), position = "dodge")

enter image description here

答案 1 :(得分:5)

library(ggplot2)
library(reshape2)
df <- data.frame(country=c('USA','Brazil','Ghana','England','Australia'), Stabbing=c(15,10,9,6,7), Accidents=c(20,25,21,28,15), Suicide=c(3,10,7,8,6))
mm <- melt(df, id.vars='country')
ggplot(mm, aes(x=country, y=value)) + geom_bar(stat='identity') + facet_grid(.~variable) + coord_flip() + labs(x='',y='')

enter image description here