Error: inherits(doc, "TextDocument") is not TRUE

Error: inherits(doc, "TextDocument") is not TRUE

我运行正在编写以下代码块

tdm = TermDocumentMatrix(ctext,control=list(minWordLength=1))
print(tdm)

inspect(tdm[10:20,11:18])

out = findFreqTerms(tdm,lowfreq=5)
print(out)

当我在控制台中 运行 它 运行 没问题。但是,当我将它作为 RMD 的一部分并尝试编织 HTML (ioslides) 时,我收到错误消息:

错误:

inherits(doc, "TextDocument") is not TRUE

我遇到了同样的问题。

问题主要出在tm包的版本上。你真的没办法。

tm_map函数中使用content_transformer函数。它为我解决了错误。

希望对您有所帮助。