Re: [R] lattice panel question

2008-10-17 Thread Ferry
Dear Deepayan, Haris, and Baptiste, Thank you !!! Ferry On Tue, Oct 14, 2008 at 10:06 AM, Deepayan Sarkar [EMAIL PROTECTED] wrote: On 10/13/08, Ferry [EMAIL PROTECTED] wrote: Dear R users, How to change lattice panel label/text from the automatically generated label (based on the

Re: [R] lattice panel question

2008-10-14 Thread Deepayan Sarkar
On 10/13/08, Ferry [EMAIL PROTECTED] wrote: Dear R users, How to change lattice panel label/text from the automatically generated label (based on the conditioning) to our own set of label? for example: someStuff - data.frame(area = rep(c(SOUTH, NORTH, EAST, WEST), each = 25),

Re: [R] lattice panel question

2008-10-14 Thread baptiste auguie
Hi, I believe you want to look at ?strip.custom someStuff - data.frame(area = rep(c(SOUTH, NORTH, EAST, WEST), each = 25), group = rep(c(A,B,C,D), each = 5), mytime = rep(1:4), val1 = sample(1:100, size=100, replace=TRUE), val2 =

Re: [R] lattice panel question

2008-10-14 Thread Charilaos Skiadas
http://lmdvr.r-forge.r-project.org/figures/figures.html Look at Figure 10.24 and the code therein. You will likely want to define your own strip function, and the code in strip.combined could be your guide. If you have Deepayan's book, you can find more details in the relevant section.

[R] lattice panel question

2008-10-13 Thread Ferry
Dear R users, How to change lattice panel label/text from the automatically generated label (based on the conditioning) to our own set of label? for example: someStuff - data.frame(area = rep(c(SOUTH, NORTH, EAST, WEST), each = 25), group = rep(c(A,B,C,D), each = 5),