我有两个向量,v1 和 v2
v1 <- c('one', 'two', 'three')
v2 <- c('two', 'three', 'four')
我想创建一个产生的列表:
"two" : "two", "three" : "three"
目前,我只能生成以下代码:
> l <- list()
> l <- c(l, subset(v1, v1 %in% v2)
> l
[[1]]
[1] "two"
[[2]]
[1] "three"
如何使键成为实际值而不是索引?谢谢。