Re: [R] lattice multiple y-scale possible?

2011-06-28 Thread Steven R Corsi
Dennis Adding in y = list(relation = 'free') to the scales argument worked very well. Thanks! Steve === Steven R. CorsiPhone: (608) 821-3835 Research Hydrologist email: srco...@usgs.gov U.S. Geological Survey Wisconsin Water Science Cente

Re: [R] lattice multiple y-scale possible?

2011-06-28 Thread Dennis Murphy
Hi: bwplot(dat~site|parameter,data=mydat, layout=c(1,5), cex=2, xlab="Site Name", ylab="", labels=levels(mydat$site), scales=list(tick.number=list(4), rot = c(0, 90), y = list(relation = 'free'))) Does that work? Dennis On Mon, Jun 27, 2011 at 10:4

[R] lattice multiple y-scale possible?

2011-06-28 Thread Steve Corsi
Hi I am attempting to use the lattice bwplot function to generate boxplots of numerous parameters (1-panel/parameter) by site (x-axis). The parameters have quite different ranges of values, so it would be best to have a separate y-axis range for each panel. Below is a basic example of what I a