gpt4 book ai didi

r - 在 R 中关闭 options() Debug模式

转载 作者:行者123 更新时间:2023-12-03 12:42:29 25 4
gpt4 key购买 nike

在 R 中,我可以通过 options(error=recover) 激活 Debug模式. 我怎样才能关闭它? 我试过 options()options(NULL)options(default=NULL)但它们似乎都没有关闭由 options(error=recover) 激活的功能.

最佳答案

尝试这个 :

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

关于r - 在 R 中关闭 options() Debug模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16824307/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com