How do you set the maximum recursion depth in R? -
i running r code has recursion depth of 5000 , next error:
error: evaluation nested deeply: infinite recursion / options(expressions=)? error during wrapup: evaluation nested deeply: infinite recursion / options(expressions=)?
how set recursion depth in r?
ah. found reading error message. set recursion depth 100000
> options(expressions= 100000)
r recursion
No comments:
Post a Comment