Displaying 1 result from an estimated 1 matches for "yellowpts".
2008 May 13
1
3dscatterplot -different colors for different factors of the same variable
...catterplot3d(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],pinkpts[,4],col="pink",type="o")
R has plotted only the first set and wasn&...