R中的小数据集的堆积条形图

时间:2016-11-22 11:09:53

标签: r bar-chart

我有一个包含两个列表的文件:第一列中的名称和第二列中的数字。

我想制作一个条形图,其中x轴为名称,y轴为数字。

我使用了熔化(mydata)并得到了一个包含3列的文件:V1(名称)变量(V2)值(数字)

然后我试了

ggplot(dat, aes(x = "V1", y= "value", fill = "variable")) + geom_bar(stat="identity")

我得到了:Stacked barplot

我出错的任何想法?

1 个答案:

答案 0 :(得分:0)

你过度复杂了:

ggplot(dat, aes(V1, value)) + geom_bar(stat = "identity")