That's part way to my desired solution, but not completely there. Here's an example:
chromosome<-rep(c("A","X","Y"),time=20) type<-rep(c(1:20),times=3) length<-rnorm(60) densityplot(~length | type * chromosome, layout=c(5,12)) What I would like to see is the chromosome strip (A, X, Y) once on the left as useOuterStrips() gives, but with the type strip internal as the normal lattice function gives. using useOuterStrips(densityplot(~length | type * chromosome, layout=c(5,12))) for my data (data ranges from 0-400) is about as unreadable at the normal situation (the toy example doesn't get that across). thanks Dan On Mon, 2009-03-23 at 08:40 +0000, baptiste auguie wrote: > I'm not sure I understood your problem (can you provide an > reproducible example?), but perhaps you can try useOuterStrips() in > the latticeExtra package (the formatting becomes similar to that of > the ggplot2 package, perhaps another option to consider) ______________________________________________ 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.