R 中 tm 包的文档术语矩阵
Document-Term-Matrix of tm Package in R
我在 R 中使用 tm 包的文档术语矩阵。我遇到一个错误说:
Doc <- DocumentTermMatrix(Data)
Error in UseMethod("TermDocumentMatrix", x) :
no applicable method for 'TermDocumentMatrix' applied to an object of class "table"
我尝试了数据框、数据table、矩阵和table,但我一次又一次地遇到错误。你能告诉我我该怎么做吗?
您错过了一个步骤...您必须先创建一个 "corpus"...
library("tm")
txt <- c("some text", "here in this", "vector as an example")
corpus <- Corpus(VectorSource(txt))
tdm <- TermDocumentMatrix(corpus)
我在 R 中使用 tm 包的文档术语矩阵。我遇到一个错误说:
Doc <- DocumentTermMatrix(Data)
Error in UseMethod("TermDocumentMatrix", x) :
no applicable method for 'TermDocumentMatrix' applied to an object of class "table"
我尝试了数据框、数据table、矩阵和table,但我一次又一次地遇到错误。你能告诉我我该怎么做吗?
您错过了一个步骤...您必须先创建一个 "corpus"...
library("tm")
txt <- c("some text", "here in this", "vector as an example")
corpus <- Corpus(VectorSource(txt))
tdm <- TermDocumentMatrix(corpus)