Displaying 1 result from an estimated 1 matches for "bluept".
Did you mean:
bluepts
2008 May 13
1
3dscatterplot -different colors for different factors of the same variable
...="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],pinkpts[,4],col="pink",type="o")
R has plotted only the first set and wasn't able to overlay other points.
2) I have generated a "for" loop that should have...