lapply()
R 语言中的函数用于在元素列表上应用函数。
用法: lapply(list, func)
参数:
list:元素列表
func:要应用的操作
范例1:
# R program to illustrate
# lapply() function
# Creating a matrix
A = matrix(1:9, 3, 3)
# Creating another matrix
B = matrix(10:18, 3, 3)
# Creating a list
myList = list(A, B)
# applying lapply()
determinant = lapply(myList, det)
print(determinant)
输出:
[[1]] [1] 0 [[2]] [1] 5.329071e-15
范例2:
# R program to illustrate
# lapply() function
# Creating a matrix
A = matrix(1:9, 3, 3)
# Creating another matrix
B = matrix(10:18, 3, 3)
# Creating a list
myList = list(A, B)
# applying lapply()
sum = lapply(myList, sum)
print(sum)
输出:
[, 1] [, 2] [, 3] [1, ] 1 4 7 [2, ] 2 5 8 [3, ] 3 6 9 [1] 28 80 162 [1] 6 120 504
相关用法
- R语言 tapply()用法及代码示例
- R语言 apply()用法及代码示例
- R语言 rapply()用法及代码示例
- R语言 sapply()用法及代码示例
- R语言 qf()用法及代码示例
- R语言 qweibull()用法及代码示例
- R语言 qtukey()用法及代码示例
- R语言 qsignrank()用法及代码示例
- R语言 qwilcox()用法及代码示例
- R语言 qunif()用法及代码示例
- R语言 ptukey()用法及代码示例
- R语言 dsignrank()用法及代码示例
- R语言 psignrank()用法及代码示例
- R语言 dwilcox()用法及代码示例
- R语言 pwilcox()用法及代码示例
- R语言 as.list()用法及代码示例
- R语言 is.list()用法及代码示例
- R语言 args()用法及代码示例
- R语言 search()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Apply a Function over a List of elements in R Programming – lapply() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。