Displaying 1 result from an estimated 1 matches for "cce6ff".
Did you mean:
c6ff
2008 Mar 06
1
order the plots using lattice
...~ x | names, dummy.df,
xlim = c(1,100),
ylim = c(1,100),
panel = function(x, y, ...) {
x <- X[,x]
y <- Y[,y]
panel.smoothScatter(x, y ,...)
},
layout = c(2, 2, 1),
strip = function(..., bg) strip.default(..., bg ="#cce6ff"))
In the output, the first plot is represented in the bottom left corner, I would like the plots to be drawn from the top left corner but I cannot find in the Lattice help, the argument to set to do that. I have tried to play with the index.cond but depending on my number of plots to draw, i...