9

我的数据框的片段是

基本上我想显示按国家分组的条形图,即我想显示没有人在集群中为整个国家自杀,事故和刺伤也是如此。我为此使用 ggplot2。我不知道如何去做这个。

任何帮助。

提前致谢

4

2 回答 2

12

编辑以更新更新的 (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")

在此处输入图像描述

原始答案

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")

在此处输入图像描述

于 2013-06-24T11:20:04.607 回答
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='')

在此处输入图像描述

于 2013-06-24T11:16:15.733 回答