search for: plotdata1

Displaying 1 result from an estimated 1 matches for "plotdata1".

Did you mean: plotdata
2007 Dec 17
1
ggplot-How to define fill colours?
...is, even if I've been looking over many places. I have tried several variations, and my final try was this code, but I still do not manage to get the colours as I pre-define. Any hints about how to get this? Thanks in advance, Pedro ============================================ my code: >plotdata1<-data.frame(x=rep(factor(1:4),4), y=rep(0.1*(1:4),4), +group=as.character(rep(c('white', 'red', 'blue', 'green'),rep(4,4)))) >plot0<-ggplot() >plot3<-plot0+layer(data=plotdata1, mapping=aes_string(x='x',y='y', +fill='group')...