R gWidgets embed a “rgl” 3D plot in gWidgets2 ggraphics device

醉酒当歌 提交于 2019-12-11 09:58:22

问题


Can I embed a "rgl" 3D plot in gWidgets2 ggraphics device? For example,

library(gWidgets2)
library(rgl)

w <- gwindow("brushing example", visible=FALSE)
g <- ggroup(cont=w)
pg <- gnotebook(cont=g, expand=TRUE)
dev1 <- ggraphics(cont=pg)

visible(w) <- TRUE

visible(dev1) <- TRUE   
plot.new()  

x <- sort(rnorm(1000))
y <- rnorm(1000)
z <- rnorm(1000) + atan2(x,y)
plot3d(x, y, z, col=rainbow(1000))

Can I put the 3D plot inside the gnotebook window?

来源:https://stackoverflow.com/questions/26558712/r-gwidgets-embed-a-rgl-3d-plot-in-gwidgets2-ggraphics-device

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!