如何在没有全局变量或超额对齐的情况下使用tryCatch

问题描述 投票:0回答:1

我正在编写一个带有以下形式的tryCatch()循环的R包,其中我首先尝试使用容易出错的方法拟合模型,但如果第一次失败则使用更安全的方法:

# this function adds 2 to x
safe_function = function(x) {

  tryCatch( {
    # try to add 2 to x in a stupid way that breaks
    new.value = x + "2"

  }, error = function(err) {
           message("Initial attempt failed. Trying another method.")
           # needs to be superassignment because inside fn
           assign( x = "new.value",
                  value = x + 2,
                  envir=globalenv() )
         } )

  return(new.value)
}

safe_function(2)

此示例按预期工作。但是,使用assign会在检查包的CRAN就绪时触发注释:

Found the following assignments to the global environment

如果我用assign替换<<-,就会出现类似的问题。我能做什么?

r environment-variables global-variables cran scoping
1个回答
2
投票

我不确定你为什么要在这里使用全局范围。你可以从try/catch返回值。

safe_function = function(x) {

  new.value <-   tryCatch( {
    # try to add 2 to x in a stupid way that breaks
    x + "2"
  }, error = function(err) {
    message("Initial attempt failed. Trying another method.")
    x + 2
  } )

  return(new.value)
}
© www.soinside.com 2019 - 2024. All rights reserved.