gpt4 book ai didi

r - 从数组中提取满足 R 中条件的索引

转载 作者:行者123 更新时间:2023-12-01 09:57:31 24 4
gpt4 key购买 nike

说我有 d<-c(1,2,3,4,5,6,6,7) .如何从 d 中选择满足特定条件的索引,例如 x>3x<=6 (即 d[4]、d[5]、d[6]、d[7])?

最佳答案

使用 which

> which(d>3 & d<=6)
[1] 4 5 6 7

关于r - 从数组中提取满足 R 中条件的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22747953/

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