In R I can activate debugging mode through options(error=recover)
. How can I turn it off? I tried options()
and options(NULL)
and options(default=NULL)
but none of them seem to turn of the functionality activated by options(error=recover)
.
Try this :
options(error=NULL)
To show that it works:
options(error=recover) rnorm("k") # Error in rnorm("k") : invalid arguments # In addition: Warning message: # In rnorm("k") : NAs introduced by coercion # # Enter a frame number, or 0 to exit # # 1: rnorm("k") # Selection: 0 options(error=NULL) rnorm("k") # Error in rnorm("k") : invalid arguments # In addition: Warning message: # In rnorm("k") : NAs introduced by coercion
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With