在R中我可以通过options(error=recover)
激活调试模式。 如何将其关闭?我尝试了options()
和options(NULL)
以及options(default=NULL)
,但似乎没有任何内容可以启用options(error=recover)
激活的功能
答案 0 :(得分:25)
试试这个:
options(error=NULL)
表明它有效:
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