Displaying 2 results from an estimated 2 matches for "toplayer".
Did you mean:
oplayer
2007 Sep 28
0
transparency of one layer in multiple wireframe plot
...g((g$x^g$g + g$y^2) * g$gr)
wireframe(z ~ x * y, data = g, groups = gr,
scales = list(arrows = FALSE),
drape = F, colorkey = TRUE,
screen = list(z = 30, x = -60))
you get a two color pic of these layers - and what I'm actually looking for is making just the UPPER (toplayer) transparent.
Thanks for further help
marc
-------- Original-Nachricht --------
> Datum: Thu, 27 Sep 2007 11:29:19 +0200
> Von: "Frede Aakmann T?gersen" <FredeA.Togersen at agrsci.dk>
> An: "marcg" <mdgi at gmx.ch>, r-help at stat.math.ethz.ch
> Betref...
2007 Sep 27
3
different colors for two wireframes in same plot
Hello R,
According to:
g <- expand.grid(x = 1:10, y = 5:15, gr = 1:2)
g$z <- log((g$x^g$g + g$y^2) * g$gr)
wireframe(z ~ x * y, data = g, groups = gr,
scales = list(arrows = FALSE),
drape = TRUE, colorkey = TRUE,
screen = list(z = 30, x = -60))
i have two wireframes in one plot.
How could i change the color of the top - one to transparent (or only the grid).