How to set max ppsize in R?

前端 未结 4 487
后悔当初
后悔当初 2020-12-08 23:10

I am experiencing an error in R that says:

> Error: protect(): protection stack overflow

I have learned through googling that I need to

4条回答
  •  失恋的感觉
    2020-12-08 23:48

    The stack overflow might be a problem of too deep recursion, you might have a problem with a function calling itself recursively too many times, e.g. missing exit condition. In that case there's no point in increasing stack size, it will run out sooner or later anyway.

提交回复
热议问题