[R] lattice: put key where unused panel would have been

2007-01-22 Thread Benjamin Tyner
Hi,

Say I have

z-data.frame(y=runif(190),
   x=runif(190),
   f=gl(5,38),
   g=gl(19,10))

plot-xyplot(y~x|g,
 data=z,
 layout=c(5,4),
 groups=f,
 auto.key=TRUE)

How might one place the key in the empty space where the twentieth panel 
would have been?

Thanks,
Ben

__
R-help@stat.math.ethz.ch 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.


Re: [R] lattice: put key where unused panel would have been

2007-01-22 Thread Sundar Dorai-Raj


Benjamin Tyner said the following on 1/22/2007 3:18 PM:
 Hi,
 
 Say I have
 
 z-data.frame(y=runif(190),
x=runif(190),
f=gl(5,38),
g=gl(19,10))
 
 plot-xyplot(y~x|g,
  data=z,
  layout=c(5,4),
  groups=f,
  auto.key=TRUE)
 
 How might one place the key in the empty space where the twentieth panel 
 would have been?
 
 Thanks,
 Ben
 
 __
 R-help@stat.math.ethz.ch 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.

You can try supplying x and y coordinates to auto.key

xyplot(y ~ x | g,
data = z,
layout = c(5, 4),
groups = f,
auto.key = list(x = .85, y = .9))

HTH,

--sundar

__
R-help@stat.math.ethz.ch 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.