Displaying 1 result from an estimated 1 matches for "redpt".
Did you mean:
rept
2008 May 13
1
3dscatterplot -different colors for different factors of the same variable
...didn't work out is:
1) Plotting only one set of points (the green one)
s3d<-scatterplot3d(greenpts[,3],greenpts[,2],greenpts[,4],type="p",scale.y=4,
angle=10, color="green")
and try to overlay the others (as you normally would do with "plot"):
s3d$points3d(redpts[,3],redpts[,2],redpts[,4],col="red",type="o")
s3d$points3d(yellowpts[,3],yellowpts[,2],yellowpts[,4], col="yellow",type="o")
s3d$points3d(bluepts[,3],bluepts[,2],bluepts[,4],col="blue",type="o")
s3d$points3d(pinkpts[,3],pinkpts[,2],pinkpt...