当前位置:  开发笔记 > 编程语言 > 正文

索引到向量时的自引用

如何解决《索引到向量时的自引用》经验,为你挑选了2个好方法。

在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

有没有一个包已经支持这个?



1> James..:

您可以使用允许自引用的管道.:

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



2> MrFlick..:

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)

推荐阅读
Chloemw
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有