在 R 中从函数而不是循环中中断

发布于 2025-01-07 10:55:29 字数 350 浏览 0 评论 0原文

好的,我正在编写一个更大的函数来调用一些函数。

问题是我需要在某些逻辑条件下突破“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风不识月 2025-01-14 10:55:29

您的意思是返回一个值吗?

function_outer <- function(){

  beta =1
  function_inner <- function(beta){
    if (beta==1){ return("Inner beta is 1") }
    print("Its not working")
     }
  return(beta)
}

Do you mean to return a value?

function_outer <- function(){

  beta =1
  function_inner <- function(beta){
    if (beta==1){ return("Inner beta is 1") }
    print("Its not working")
     }
  return(beta)
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文