R语言中的Reduce(), Filter(), Find(), Map(), Negate(), Position()是base包中的一些高级函数。随后,很多包也给这些函数提供了更多的扩展。
该函数根据一个二元函数实现累计计算。
Reduce(f, x, init, right = FALSE, accumulate = FALSE)
f=function(x,y){x+y}
x=list(1,2,3,4)
Reduce(f,x,init = 0,accumulate = T)
# [1] 0 1 3 6 10
Reduce(f,x,init = 1,accumulate = T)
# [1] 1 2 4 7 11
Filter(f, x)
f=function(x){ is.character(x)}
x=list(1,'2',3,'4')
Filter(f,x)
# [[1]]
# [1] "2"
#
# [[2]]
# [1] "4"
x <- c(3, 8, 2, 6, 4, 9, 7)
Filter(function(num) { num > 5 }, x)
# [1] 8 6 9 7
返回满足要求的元素,只返回第一个。
Find(f, x, right = FALSE, nomatch = NULL)
f=function(x){ is.character(x)}
x=list(1,'2',3,'4')
Find(f,x,right = T, nomatch = 'no finding')
# [1] "4"
Find(f,x,right = F, nomatch = 'no finding')
# [1] "2"
Find(f,x=c(1,2,3),right = F, nomatch = 'no finding')
# [1] "no finding"
Map(f,x)
f=function(x){x^2}
Map(f,x=c(1,2,4,5))
# [[1]]
# [1] 1
#
# [[2]]
# [1] 4
#
# [[3]]
# [1] 16
#
# [[4]]
# [1] 25
f=function(x){sum(x)}
l=list(c(1,2),c(5,6),c(4,8))
Map(f,x=l)
# [[1]]
# [1] 3
#
# [[2]]
# [1] 11
#
# [[3]]
# [1] 12
Negate(f)
该函数用于返回一个与f相反的一个函数,T变F,F变T.
f=function(x){x>3}
f2=Negate(f)
x=c(1,2,3,4,5,6)
f(x)
# [1] FALSE FALSE FALSE TRUE TRUE TRUE
f2(x)
# [1] TRUE TRUE TRUE FALSE FALSE FALSE
该函数用于返回满足条件的元素索引,只返回第一个。
Position(f, x, right = FALSE, nomatch = NA_integer_)
f=function(x){x>3}
x=c(1,2,3,4,5,6)
Position(f,x)
# [1] 4
Position(f,x,right = T)
# [1] 6