在 RI 中可以通过options(error=recover)
. 我怎样才能关闭它?我试过了options()
,但他们似乎都没有关闭由.options(NULL)
options(default=NULL)
options(error=recover)
问问题
12478 次
1 回答
35
尝试这个 :
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
于 2013-05-29T21:39:32.330 回答