0

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,                                                                                       

どこで間違ったのですか?

4

1 に答える 1

0

あなたはこれを試すことができます

matrix <- as.matrix(inspect(tmm))
于 2014-11-25T06:32:57.947 に答える