Dear Nabble. I am trying to draw a box percentile plot with trellis using the panel in Hmisc. I really want to colour the plots in. I can alter several of features of the plot by changing the trellis par settings but I just canât fill the shape in.
Here is some example code which alters line colour and dot symbol: require(lattice) require(Hmisc) A<-c(rnorm(100,50,2),rnorm(100,60,5),rnorm(100,55,7)) B<-rep(c(1,2,3),each=100) trellis.par.set(list(box.rectangle=list(col="black"))) trellis.par.set(list(box.umbrella=list(col="black"))) trellis.par.set(list(box.dot=list(pch=3,col="red"))) bwplot(B~A,panel=panel.bpplot, probs=seq(.01,.49,by=.01)) Iâd really appreciate it if someone could tell me how to change the fill colour as well as it is driving me mad. Chears. -- View this message in context: http://www.nabble.com/Lattice-box-percentile-plot-tp17274559p17274559.html Sent from the R help mailing list archive at Nabble.com. [[alternative HTML version deleted]]
______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.