Skip to content
Prev 171916 / 398503 Next

question about 3-d plot

the following should work

library(lattice)
x <- seq(1,100)
y <- seq(1,100)
gr <- expand.grid(x,y)
gr$z <- x + y + rnorm(10000,0,100)
cloud(z ~ x + y, data = gr)

also, look for the package rgl which does similar but with more
possiblities.
On Feb 27, 4:28?pm, Dipankar Basu <basu... at gmail.com> wrote: