0

我有这种数据集:

comb<-data.frame(nom=c("A","B","C","A","B","C"),type=c(rep("1",3),rep("2",3)),val=c(1,3,2,3,2,2))

我想得到这个结果ggplot2

在此处输入图像描述

但我只有这个

ggplot()+    geom_bar(data=comb,aes(x=nom, y=val,fill=type),stat='identity',position='dodge')

在此处输入图像描述

你有什么解决办法吗?

4

1 回答 1

6

如果您希望所有条具有不同的颜色,则必须使用interactionoftypenom

library(ggplot2)
ggplot() +  
  geom_bar(data = comb,aes(x = nom, y = val, fill = interaction(type, nom)),
           stat = 'identity', position = 'dodge')

在此处输入图像描述

于 2014-02-05T21:14:14.183 回答