我有一个由与公司关联的几个国家办事处组成的列,我想在其中缩短 fx:中国国家办事处和孟加拉国国家办事处,仅中国或孟加拉国 - 换句话说,删除“办公室”和“国家”这两个词来自名为 Imp_Office 的列。
我尝试使用 tm-package,参考之前的帖子,但什么也没发生。
我写的:
library(tm)
stopwords = c("Office", "Country","Regional")
MY_df$Imp_Office <- gsub(paste0(stopwords, collapse = "|","",
MY_df$Imp_Office))
我收到以下错误消息的地方:
Error in gsub(paste0(stopwords, collapse = "|", "", MY_df$Imp_Office))
:
argument "x" is missing, with no default
我也尝试使用函数 readLines:
stopwords = readLines("Office", "Country","Regional")
MY_df$Imp_Office <- gsub(paste0(stopwords, collapse = "|","",
MY_df$Imp_Office))
但这也无济于事
我已经考虑过使用其他字符串操作方法的可能性,但我不需要检测、替换或删除空格 - 所以我有点迷失在这里。
谢谢你。