Call R plots from c++ using RInside/ Rcpp
是否可以从 c 调用绘图函数?
目前,当我尝试这样做时,ubuntu 终端会冻结一段时间(可能是创建 3d 图然后旋转 360 度的持续时间)然后解冻,而不会弹出新窗口。
这是预期的行为还是我做错了什么?如何使用 rinside 和 rcpp 从 c 中运行绘图(R 图形)?
谢谢
-埃贡
是的,Rcpp 包中有一个工作示例。查看
您可能需要尝试使用
处理交互会话的环境变量是
我们需要在我们的主目录中创建一个名为
1 2 3 4 5 | anisha@linux-y3pi:~> ls .Renviron .Renviron anisha@linux-y3pi:~> cat .Renviron R_INTERACTIVE_DEVICE = X11a |
参考资料:
1. http://stat.ethz.ch/R-manual/R-patched/library/base/html/Startup.html
2. http://stat.ethz.ch/R-manual/R-patched/library/base/html/options.html