gpt4 book ai didi

r - 如何在 R 中捕获错误/异常?

转载 作者:行者123 更新时间:2023-12-04 17:40:54 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:




10年前关闭。




Possible Duplicate:
Exception handling in R



有没有人知道如何在 R 中捕获错误或异常?

最佳答案

就像约书亚说的:使用 tryCatch .包括 error参数,它应该是一个接受一个参数的函数(错误,通常称为 e )。

tryCatch(
stop("you threw an error"),
error = function(e)
{
print(e$message) # or whatever error handling code you want
}
)

关于r - 如何在 R 中捕获错误/异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4047119/

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