Re: [R] lattice: par.settings: custom axis.line by panel

2011-04-08 Thread Benjamin Tyner
Thanks Deepayan! I neglected to mention that I would want to retain ticks as well for the boxed panel(s), so perhaps something like xyplot(y ~ x|f, data = Data, layout=c(2,1), scales=list(relation="free",alternating=FALSE), par.settings = list(axis.line=list(col = "tran

Re: [R] lattice: par.settings: custom axis.line by panel

2011-04-07 Thread Deepayan Sarkar
On Fri, Apr 8, 2011 at 6:10 AM, Benjamin Tyner wrote: > Hello, > > In lattice, is there a way to customize the axis.line by panel? For example, > say I have two panels: > > Data <- data.frame(x=runif(10), >                  y=rnorm(10), >                  f=gl(2,5) >                  ) > > library

[R] lattice: par.settings: custom axis.line by panel

2011-04-07 Thread Benjamin Tyner
Hello, In lattice, is there a way to customize the axis.line by panel? For example, say I have two panels: Data <- data.frame(x=runif(10), y=rnorm(10), f=gl(2,5) ) library(lattice) plot <- xyplot(y ~ x|f, data = Data,