surface3D在RStudio中工作吗?

时间:2014-02-28 22:32:44

标签: r plot 3d rstudio geometry-surface

以下从示例(surface3d)中获取的代码不会产生任何结果:

library(rgl)  
data(volcano)

z <- 2 * volcano        # Exaggerate the relief

x <- 10 * (1:nrow(z))   # 10 meter spacing (S to N)
y <- 10 * (1:ncol(z))   # 10 meter spacing (E to W)

zlim <- range(y)
zlen <- zlim[2] - zlim[1] + 1

colorlut <- terrain.colors(zlen) # height color lookup table

col <- colorlut[ z-zlim[1]+1 ] # assign colors to heights for each point

open3d()
surface3d(x, y, z, color=col, back="lines")

1 个答案:

答案 0 :(得分:0)

问题解决了。 rgl设备确实在X11窗口中打开,该窗口链接到不同的桌面&#34;。这就是为什么我没有看到任何东西。