我正在寻找一种搜索多个术语的方法,例如egrep可以但是在R中。
例如:
cat fruit | egrep 'apples|grapes|oranges'
最佳答案
您可以在R中做到这一点,只需使用grep
函数
fruit<-c("apples","bananas","tomatoes","grapes")
grep('apples|grapes|oranges', fruit, value=TRUE)
# [1] "apples" "grapes"
关于linux - 在R中搜索多个词,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24001129/