📌  相关文章
📜  检查列是否包含向量 r 中的字符串 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:50.593000             🧑  作者: Mango

代码示例1
v <- c('a','b','c','e')

'b' %in% v
## returns TRUE

match('b',v)
## returns the first location of 'b', in this case: 2