标签: r
使用R,我使用了library(tm)和removePunctuation,但我仍然有一些含有' (单引号)。然后我回去尝试了这个:
library(tm)
removePunctuation
toSpace <- content_transformer(function (x , pattern ) gsub(pattern, " ", x)) docs <- tm_map(docs, toSpace, "'")
我也尝试过阻止,但没有运气。
非常感谢