在R中,有没有办法从向量中引用向量?
说我有长名称的向量:
my.vector.with.a.long.name <- 1:10
而不是这个:
my.vector.with.a.long.name[my.vector.with.a.long.name > 5]
像这样的东西会很好:
> my.vector.with.a.long.name[~ > 5] [1] 6 7 8 9 10
或者,通过函数索引也很方便:
> my.vector.with.a.long.name[is.even] [1] 2 4 6 8 10
有没有一个包已经支持这个?
您可以使用允许自引用的管道.
:
library(pipeR) my.vector.with.a.long.name %>>% `[`(.>5) [1] 6 7 8 9 10 my.vector.with.a.long.name %>>% `[`(.%%2==0) [1] 2 4 6 8 10
该Filter
功能有助于此
my.vector.with.a.long.name <- 1:10 Filter(function(x) x%%2==0, my.vector.with.a.long.name)
要么
is.even <- function(x) x%%2==0 Filter(is.even, my.vector.with.a.long.name)