可以通过以下步骤实现:
dplyr
和stringr
:library(dplyr)
library(stringr)
df
:df <- data.frame(ID = c(1, 2, 3),
Text = c("This is a test", "Another test", "Test test test"))
mutate()
函数和str_replace_all()
函数来删除每行中的模式:df <- df %>%
mutate(Text = str_replace_all(Text, "test", ""))
上述代码中的"test"
是需要删除的模式,可以根据实际情况进行修改。
print(df)
输出结果如下:
ID Text
1 1 This is a
2 2 Another
3 3
这样,每行中的模式已经被成功删除。
在腾讯云中,可以使用云服务器(CVM)来运行R代码,相关产品介绍和链接如下:
领取专属 10元无门槛券
手把手带您无忧上云