我试图只提取包含单词“bunt”的描述。我不确定如何做到这一点,因为这个词在我的大型数据集中的位置各不相同。下面是我正在使用的示例:
data <-data.frame(des=c("Austin Hedges bunt single", "Francisco Lindor Homerun",
"Pete Alonso out on a ground ball bunt",
"Yonathan Daza sac bunt ground out to shortstop", "Jose
Ramirez pop up to second baseman"))
任何帮助我都感激不尽。谢谢。
2条答案
按热度按时间7gs2gvoe1#
我们可以使用
grepl
来查找单词,并在base R
中查找subset
zzzyeukh2#
使用
dplyr
和stringr
包,这里有一个解决方案。创建于2023年3月24日,使用reprex v2.0.2