gpt4 book ai didi

r - 在 R 中搜索多个术语

转载 作者:太空宇宙 更新时间:2023-11-04 05:38:41 27 4
gpt4 key购买 nike

我正在寻找一种方法来搜索多个术语,例如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"

关于r - 在 R 中搜索多个术语,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24001129/

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