其他分享
首页 > 其他分享> > R语言中 str_detect函数

R语言中 str_detect函数

作者:互联网

 

str_detect函数属于tidyverse包中函数, 功能类似于grepl函数。

 

001、

str1 <- c("xx", "yy", "zz", "xx", "pp", "xx")
str1
grepl("xx", str1)
str_detect("xx", str1)

 

标签:包中,detect,函数,tidyverse,grepl,str
来源: https://www.cnblogs.com/liujiaxin2018/p/16545715.html