gpt4 book ai didi

r - 索引到向量时的自引用

转载 作者:行者123 更新时间:2023-12-04 11:36:50 26 4
gpt4 key购买 nike

在 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

关于r - 索引到向量时的自引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25508170/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com