1

我正在通过 Rpy2 在 R 中运行一些递归代码(不幸的是,必须这样)。我不得不增加选项(表达式),但还没有找到增加指针保护堆栈的方法。我查看了 rpy2 代码,但找不到一个明显的位置来设置这个标志。甚至可能吗?

我得到的错误是:

protect(): protection stack overflow. 

我看过https://stat.ethz.ch/pipermail/r-help/2006-August/111127.html

感谢您的帮助!

4

1 回答 1

1

发现它隐藏在源代码的第一个文件中,但必须作为初始导入完成

import rpy2.rinterface as rinterface 
rinterface.set_initoptions((...))
于 2012-08-11T15:31:59.417 回答