Skip to content
Prev 179682 / 398502 Next

'Dynamic' 3D plot

Hi Martial,

The rgl package is quite nice for this sort of thing:

# this is the example in ?plot3d
library(rgl)
open3d()
x <- sort(rnorm(1000))
y <- rnorm(1000)
z <- rnorm(1000) + atan2(x,y)
plot3d(x, y, z, col=rainbow(1000))


HTH,
Tony Breyal
On 8 May, 09:25, Martial Sankar <martial100... at hotmail.com> wrote: