Re: [R] Lattice: location of key inside a xyplot()

2010-05-11 Thread Dennis Murphy
Hi: Instead of space = , use corner = c(x, y) instead. For upper right, c(1, 1); for lower left, c(0, 0), and anywhere in between... Here's an illustration, slightly modified from an earlier post this evening: df <- data.frame(x = rnorm(30), y = rnorm(30)) library(reshape) df2 <- melt(df) libra

[R] Lattice: location of key inside a xyplot()

2010-05-11 Thread Jay
Hello, adding the line: space = 'inside' to my xyplot() call provides a partial solution to the problem I have.. However, this command puts the key in the left upper corner when I want in the left upper corner. Looking at the help provides no additional options for the "inside", but surely this