Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

R: changing color of stacked barplot

library(ggplot2)
df2 <- data.frame(supp=rep(c("VC", "OJ"), each=3),
                dose=rep(c("D0.5", "D1", "D2"),2),
                len=c(6.8, 15, 33, 4.2, 10, 29.5))
head(df2)
ggplot(data=df2, aes(x=dose, y=len, fill=supp)) +
  geom_bar(stat="identity")

enter image description here

I have a simple stacked barplot, and I would like to change the colors manually. More specifically, I would like to flip the colors used for fill = supp (i.e. teal for OJ instead). I've trid adding a color = ... parameter into geom_bar but that simply outlines the barplots instead of coloring them in.

like image 305
Adrian Avatar asked May 01 '17 15:05

Adrian


1 Answers

ggplot(data=df2, aes(x=dose, y=len, fill=supp)) +
  geom_bar(stat="identity")+scale_fill_manual(values = c("Green","tomato"))

green and tomato colours added

like image 84
sai saran Avatar answered Sep 30 '22 09:09

sai saran