Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

R 嵌套函数


嵌套函数

创建嵌套函数有两种方法

  • 在一个函数中调用另一个函数。
  • 在一个函数内编写一个函数。

示例

在一个函数中调用另一个函数

Nested_function <- function(x, y) {
  a <- x + y
  return(a)
}

Nested_function(Nested_function(2,2), Nested_function(3,3))
自己试试 »

示例说明

该函数指示 x 加上 y。

第一个输入 Nested_function(2,2) 是主函数的 "x"。

第二个输入 Nested_function(3,3) 是主函数的 "y"。

因此,输出为 (2+2) + (3+3) = 10

示例

在一个函数内编写一个函数

Outer_func <- function(x) {
  Inner_func <- function(y) {
    a <- x + y
    return(a)
  }
  return (Inner_func)
}
output <- Outer_func(3) # 调用 Outer_func
output(5)
自己试试 »

示例说明

无法直接调用该函数,因为 Inner_func 已在 Outer_func 内部定义(嵌套)。

我们需要先调用 Outer_func,才能在第二步中调用 Inner_func。

我们需要创建一个名为 output 的新变量并赋予其值,此处为 3。

然后,我们使用所需的 "y" 值(在本例中为 5)打印输出。

因此,输出为 8 (3 + 5)。



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.