在 R 中从函数而不是循环中中断
好的,我正在编写一个更大的函数来调用一些函数。
问题是我需要在某些逻辑条件下突破“function_inner”而不突破“function_outer”。 Break 似乎适用于循环,然后 stop,它会停止所有函数......有什么想法吗?
function_outer <- function(){
beta =1
function_inner <- function(beta){
if (beta==1){?break?stop}
print("Its not working")
}
return(beta)
}
Ok so I am writing a larger function that call a few functions.
The issue is that I need to break out of "function_inner" under certain logical conditions without breaking out of "function_outer". Break seems to work for loops, and stop, well it stops all functions... any ideas?
function_outer <- function(){
beta =1
function_inner <- function(beta){
if (beta==1){?break?stop}
print("Its not working")
}
return(beta)
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是
返回
一个值吗?Do you mean to
return
a value?