RE: [R] Tick marks in xyplot

2004-06-24 Thread Ingolfsson, Olafur
Thank you for the tips, it is also good to know that the packages are getting even better. I however solved it this way: lset(col.whitebg()) x.data <- rnorm(16,20,7);y.data <- rnorm(16,.55,.25); z.data <- sample(1:4,16,replace=T) xyplot(y.data~x.data|z.data, layout=c(2,2),xlim=c(4,39),ylim=c(-

Re: [R] Tick marks in xyplot

2004-06-23 Thread Deepayan Sarkar
Quoting Patrick Connolly <[EMAIL PROTECTED]>: > On Wed, 23-Jun-2004 at 07:32AM -0500, Deepayan Sarkar wrote: > > [...] > > |> 1. You can specify the limits, tick positions, and axis labels > |> individually for each panel (see documentation for 'scales' in ?xyplot; > |> all the relevant compon

Re: [R] Tick marks in xyplot

2004-06-23 Thread Patrick Connolly
On Wed, 23-Jun-2004 at 07:32AM -0500, Deepayan Sarkar wrote: [...] |> 1. You can specify the limits, tick positions, and axis labels |> individually for each panel (see documentation for 'scales' in ?xyplot; |> all the relevant components - at, lab, etc - can be lists). How difficult would it

Re: [R] Tick marks in xyplot

2004-06-23 Thread Deepayan Sarkar
On Wednesday 23 June 2004 06:36, Ingolfsson, Olafur wrote: > Dear R group > > I am making multiple xyplot, and would like to have tick marks on > bottom and left in EACH panel, but only tick labels at the bottom and > left of the whole graph. I have browsed the internet, as well as the > help page