ggplot2:每个区间中单个因子级别的分数的条形图

时间:2012-07-20 12:10:19

标签: r ggplot2 histogram stacked

例如,我们有通常的叠加条形图:

ggplot(diamonds, aes(x=color, fill=cut))+geom_bar(position="fill")

enter image description here

我想制作相同的情节,但只留下一个“剪切”类型。例如“理想”(紫色)。因此,它应该是类似于所有其他具有相同颜色的钻石中理想钻石的分数的直方图。我可以在ggplot中这样做吗?

1 个答案:

答案 0 :(得分:5)

如果您预先汇总数据,则很简单:

library("plyr")

idl <- ddply(diamonds, .(color), summarize, 
             idealpct = sum(cut=="Ideal")/length(cut))

ggplot(idl, aes(x=color, y=idealpct)) + 
  geom_bar()

enter image description here