R语言函数基础知识点总结
函数是一组组合在一起以执行特定任务的语句。 r 语言具有大量内置函数,用户可以创建自己的函数。
在r语言中,函数是一个对象,因此r语言解释器能够将控制传递给函数,以及函数完成动作所需的参数。
该函数依次执行其任务并将控制返回到解释器以及可以存储在其他对象中的任何结果。
函数定义
使用关键字函数创建 r 语言的函数。 r 语言的函数定义的基本语法如下
function_name <- function(arg_1, arg_2, ...) { function body }
函数组件
函数的不同部分
- 函数名称 -这是函数的实际名称。 它作为具有此名称的对象存储在 r 环境中。
- 参数 -参数是一个占位符。 当函数被调用时,你传递一个值到参数。 参数是可选的; 也就是说,一个函数可能不包含参数。 参数也可以有默认值。
- 函数体 -函数体包含定义函数的功能的语句集合。
- 返回值 -函数的返回值是要评估的函数体中的最后一个表达式。
- r语言有许多内置函数,可以在程序中直接调用而无需先定义它们。我们还可以创建和使用我们自己的函数,称为用户定义的函数。
内置功能
内置函数的简单示例是 seq(),mean(),max(),sum(x) 和 paste(...) 等。它们由用户编写的程序直接调用。 您可以参考最广泛使用的 r 函数。
# create a sequence of numbers from 32 to 44. print(seq(32,44)) # find mean of numbers from 25 to 82. print(mean(25:82)) # find sum of numbers from 41 to 68. print(sum(41:68))
当我们执行上面的代码,它产生以下结果 -
[1] 32 33 34 35 36 37 38 39 40 41 42 43 44 [1] 53.5 [1] 1526
用户定义的函数
我们可以在 r 语言中创建用户定义的函数。它们特定于用户想要的,一旦创建,它们就可以像内置函数一样使用。 下面是一个创建和使用函数的例子。
# create a function to print squares of numbers in sequence. new.function <- function(a) { for(i in 1:a) { b <- i^2 print(b) } }
调用函数
# create a function to print squares of numbers in sequence. new.function <- function(a) { for(i in 1:a) { b <- i^2 print(b) } } # call the function new.function supplying 6 as an argument. new.function(6)
当我们执行上面的代码,它产生以下结果 -
[1] 1 [1] 4 [1] 9 [1] 16 [1] 25 [1] 36
调用没有参数的函数
# create a function without an argument. new.function <- function() { for(i in 1:5) { print(i^2) } } # call the function without supplying an argument. new.function()
当我们执行上面的代码,它产生以下结果 -
[1] 1 [1] 4 [1] 9 [1] 16 [1] 25
使用参数值调用函数(按位置和名称)
函数调用的参数可以按照函数中定义的顺序提供,也可以以不同的顺序提供,但分配给参数的名称。
# create a function with arguments. new.function <- function(a,b,c) { result <- a * b + c print(result) } # call the function by position of arguments. new.function(5,3,11) # call the function by names of the arguments. new.function(a = 11, b = 5, c = 3)
当我们执行上面的代码,它产生以下结果 -
[1] 26 [1] 58
使用默认参数调用函数
我们可以在函数定义中定义参数的值,并调用函数而不提供任何参数以获取默认结果。 但是我们也可以通过提供参数的新值来获得非默认结果来调用这样的函数。
# create a function with arguments. new.function <- function(a = 3, b = 6) { result <- a * b print(result) } # call the function without giving any argument. new.function() # call the function with giving new values of the argument. new.function(9,5)
当我们执行上面的代码,它产生以下结果 -
[1] 18 [1] 45
功能的延迟计算
对函数的参数进行延迟评估,这意味着它们只有在函数体需要时才进行评估。
# create a function with arguments. new.function <- function(a, b) { print(a^2) print(a) print(b) } # evaluate the function without supplying one of the arguments. new.function(6)
当我们执行上面的代码,它产生以下结果 -
[1] 36 [1] 6 error in print(b) : argument "b" is missing, with no default
到此这篇关于r语言函数基础知识点总结的文章就介绍到这了,更多相关r语言函数内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: R语言矩阵知识点总结及实例分析
下一篇: 如何在PHP程序中防止盗链