过滤数据框
1.dplyr
包
dplyr
包使用dplyr
包中的filter
函数根据数据框中某一列进行数据过滤,这个过滤只能进行数字的比较
2.stringr
配合过滤
stringr
配合过滤使用stringr
包中的str_detect
函数对某一列进行正则过滤
filter(b,str_detect(V1,pattern = "^e"))
Last updated
dplyr
包使用dplyr
包中的filter
函数根据数据框中某一列进行数据过滤,这个过滤只能进行数字的比较
stringr
配合过滤使用stringr
包中的str_detect
函数对某一列进行正则过滤
filter(b,str_detect(V1,pattern = "^e"))
Last updated