我有一个角色因素,让我们说:
A <- factor(c(rep("home", times=5), rep("work", times=3), rep("hobby", times=7), rep("friends", times=10)))
我想让字符的索引等于另一个向量中的索引,比如说:
B <- c("work", "hobby")
在这种情况下,我想获得向量6:15
。
我尝试使用which(A==B)
,但它不起作用......
有什么想法吗?
答案 0 :(得分:1)
正如akrun指出%in%
应该做的。输出为:
[1] 6 7 8 9 10 11 12 13 14 15