I want to make a 3D scatter plot of multiple data selections on a single plot (i.e same axes).
I know that in 2D this is possible by using par() function like so:
plot(6:25,rnorm(20),type="b",xlim=c(1,30),ylim=c(-2.5,2.5),col=2)
par(new=T)
plot(rnorm(30),type="b",axes=F,col=3)
par(new=F)
(source: http://cran.r-project.org/doc/contrib/Lemon-kickstart/kr_addat.html)
Can I do something like that on a 3D plot, preferably an interactive 3D plot, like the ones created using plot3D from 'rgl' package?