我已经生成了termDocumentMatrix
,如下所示:
> tmm
[[1]]
<<DocumentTermMatrix (documents: 18, terms: 4886)>>
Non-/sparse entries: 11956/75992
Sparsity : 86%
Maximal term length: 25
Weighting : term frequency (tf)
然后我想将其转换为数字矩阵,它显示错误。 我使用的命令是:
matrix<-data.matrix(tmm)
然后矩阵变成这样的列表:
list(i = c(1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
我哪里错了?
答案 0 :(得分:0)
你可以试试这个
matrix <- as.matrix(inspect(tmm))