From r-help Fri Jan 30 12:13:51 2004 From: "Pascal A. Niklaus" Date: Fri, 30 Jan 2004 12:13:51 +0000 To: r-help Subject: [R] lines in 3d-cloud plot (lattice) Message-Id: <401A4A7F.1050301 () unibas ! ch> X-MARC-Message: https://marc.info/?l=r-help&m=107546561202971 Hi all, I'd like to plot a set of data (x,y,z) as 3D-cloud, and add several line plots to the same 3D graph: Two questions: 1) How do I connect points to get a line? > cloud(z~x*y,data=d,zlim=c(0,1)) # works > cloud(z~x*predict(l),data=d,zlim=c(0,1),type="l") # type="l" doesn't Warning message: type = l not implemented, consider using 'panel.3d.cloud = panel.3dscatter.old' in: panel.3d.cloud(x = x, y = y, z = z, rot.mat = rot.mat, za = za, help.search("panel.3d.cloud") also didn't report any hits. 2) How do I superimpose a second data set onto the same graph? (something equivalent to the sequence plot(), followed by points() or lines() in the base plotting functions) Thanks for any help Pascal ______________________________________________ R-help@stat.math.ethz.ch mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html