How do I force the x and y axes of the figure below to be drawn at the bottom of the cube, rather than at the top?
Currently, the axes are automatically drawn above the cube when the z parameter (inside screen=...) falls below -90.
Code used to generate the figure:
library(lattice)
D <- expand.grid(x=seq(1,10), y=seq(1,10))
D$z <- D$x-D$y
wireframe(z ~ x * y, data=D, screen=list(z=-120, x=-60))
Many thanks!
From
?panel.cloud
# sincewireframe
callspanel.cloud