在R中使用tryCatch时是否有可能在出错的情况下执行某些命令?我正在使用下面的代码,但它不执行X = Alternative_value
tryCatch(
{
X = certain_function_that_sometimes_returns_error
},
error=function(e) {
X = alternative_value
})
最佳答案
直接将tryCatch
分配给x
foo <- function() stop("hello")
bar <- function() 'world'
x <- tryCatch(
{
foo()
},
error = function(e){
bar()
}
)
x
# [1] "world"
关于r - R在错误情况下执行tryCatch,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43380908/