尝试在gWidgets中使用delete方法时遇到问题
require('gWidgets')
options(guiToolkit = "RGtk2")
win <- gWidgets::gwindow("trial", name="main",parent=c(0,0),width=400,height=100)
group<- gWidgets::ggroup(horizontal=TRUE)
gWidgets::add(win,group,expand=FALSE)
frame<-gframe("frame to remove")
add(group,frame)
delete(group,frame)
此代码返回以下错误。
Error in unclass(x) : cannot unclass an external pointer
gWidgets:版本:0.0-54,RGtk2:版本:2.20.33,R win64
这个问题在2.4.0中是新的,有人可以给我一个如何解决的提示吗?
答案 0 :(得分:1)
我遇到了同样的问题。我重新安装了RGtk2:版本:2.20.31,一切正常。