Displaying 1 result from an estimated 1 matches for "x1081".
Did you mean:
1081
2004 Apr 13
1
lattice problem in R-1.9.0
Hi all,
I just installed R-1.9.0 on Windows 2000 from binaries. Yesterday, on
R-1.8.1 I ran a script that looked like:
library(lattice)
tmp <- expand.grid(A = 1:3, B = letters[1:2])
tmp$z <- runif(NROW(tmp))
trellis.device(png, file = "x1081.png", theme = col.whitebg)
xyplot(z ~ A | B, data = tmp,
panel = function(x, y, i) {
panel.xyplot(x, y)
ltext(1, 0.95, paste("i =", i), adj = 0)
},
ylim = c(0, 1),
i = 10)
dev.off()
In R-1.9.0, the same script gives the following e...