在ggplot中的barcharts上定义特定的填充颜色

时间:2015-11-07 16:53:02

标签: r plot colors bar-chart palette

我有一个使用R中的调色板的条形图,但是想要手动定义我自己的颜色,以便与其他软件中的研究组相匹配。我喜欢控件是绿色的,而B - 处理是蓝色的。这些是我的2个Study.Groups。

当前代码:

E <- ggplot(diane2, aes(x = factor(Wavenumber), y = Absorbance, fill = Study.Group))   
  + geom_bar(stat = "identity", position = "dodge", bin_width=50)  
G <- E + labs(title = "Figure 1. Controls versus Normal Treated B's", x = "Wavenumber", y = "Absorbance (a.u.)")  
G + guides(fill = guide_legend(keywidth =2, keyheight = 1, reverse = TRUE))  
G + scale_fill_brewer(palette = "Set1")

0 个答案:

没有答案