标签: r ggplot2 bar-chart
这是我的第一篇文章。希望你能帮忙。 我的数据集:
query.include('items');
dodged barplot
y轴的值不代表实际值(总和)。 Prey1~spe1应该是10而不是5。
答案 0 :(得分:1)
ggplot(df1, aes(x=variable, y=value, fill=spe))+ stat_summary(geom = "bar", fun.y = "sum", position = "dodge")