可能重复:
错误:在R中找不到函数....
好吧,我是rattle(R中的数据挖掘包)的概念的新手,虽然我已经安装rattle但是当我给出时rattle(),它给了我以下错误
> rattle()
Error in rattle() : could not find function "gtkBuilderNew"
Run Code Online (Sandbox Code Playgroud)
你读错误信息了吗?
Error in rattle() : could not find function "gtkBuilderNew"
该程序包RGtk2需要显示Rattle GUI.它似乎没有安装.可以使用以下R命令安装此程序包(及其依赖项):
install.packages('RGtk2')
Run Code Online (Sandbox Code Playgroud)