包含许多元素的语料库到数据框,然后保存在 csv 中

Corpus with many elements to dataframe and then save in csv

我有一组 9 个 csv 文件,我使用以下命令导入它们并进行一些数据预处理:

library(tm)
filenames <- list.files(getwd(),pattern=”*.txt”)
files <- lapply(filenames,readLines)
docs <- Corpus(VectorSource(files))

然后我删除了停用词。

现在,我有一个包含 9 个元素的语料库。我需要将它们保存在 9 个单独的 CSV 文件中。

有人知道怎么做吗?

您可以使用 writeCorpus(docs) 将语料库写入 9 个单独的 .txt 文件。如果愿意,您可以随后将它们转换为 .csv