替代spline for scatterplot3d?

时间:2015-10-02 05:46:39

标签: r scatter3d

是否有替代' abline'用于3D散点图? 我正在使用' scatterplot3d'封装

图像中的蓝线是我想要做的。 如果我添加一个' surface',那么它将阻止原始图。

enter image description here

1 个答案:

答案 0 :(得分:3)

这样的东西?

th <- seq(0,8*pi,len=100)
r  <- seq(0,1,len=100)
x  <- r*cos(th)
y  <- r*sin(th)
z  <- 10*r
library(scatterplot3d)
plt <- scatterplot3d(x,y,z, type="l")
plt$points3d(x=c(-1,1,1,-1,-1), y=c(1,1,-1,-1,1),z=rep(5,5), type="l", col="blue", lwd=2)

基本思想是捕获sactterplot3d(...)返回的对象。这是一个列表,其中一个元素是一个函数,points3d(...)可以将点(或带有type="l"的行)添加到现有的图中。