【发布时间】:2015-04-08 11:34:37
【问题描述】:
我确定这是一个非常简单的问题,但不知何故我找不到答案。所以在 2D 中,如果我想显示最高实际值的预测,我会这样做:
plot(x, y, type = “l”, col = “green")
lines(x`, y`, type = “l”, col = "blue")
但我不知道如何在 3d 中执行此操作(我正在使用 scatterplot3d)
我设法显示实际值
s3d<-scatterplot3d(x, y, z, color = “blue”, type = “l”, …)
s3d.coords <- s3d$xyz.convert(x,y,z)
D3_coord=cbind(s3d.coords$x,s3d.coords$y)
但是如何在此之上绘制预测值的图表?
提前谢谢你。
【问题讨论】: