Barplot在R中使用ggplot,填充两个数字变量

时间:2014-09-20 03:00:39

标签: r ggplot2

考虑像

这样的数据集
EVTY    INJU   FATA  
HAIL    1234   15
thun    1488   34
HEAT    1232   34

我想使用R中的ggplot函数制作此数据集的条形图。条形图应该具有
EVTY变量作为x轴,填充应基于INJU和FATA。

我无法弄清楚如何做到这一点。

1 个答案:

答案 0 :(得分:0)

尝试:

mm = melt(ddf)
ggplot(mm)+geom_bar(aes(x=EVTY, fill=variable, y=value), stat='identity')

enter image description here