我有一个这样的对象:
str(apps)
chr [1:17517] "35 44 33 40 33 40 44 38 33 37 37" ...
在每一行中,数字用空格分隔。
corpus<-Corpus(VectorSource(apps))
dtm<-DocumentTermMatrix(corpus)
str(dtm)
List of 6
$ i : int(0)
$ j : int(0)
$ v : num(0)
$ nrow : int 17517
$ ncol : int 0
$ dimnames:List of 2
..$ Docs : chr [1:17517] "1" "2" "3" "4" ...
..$ Terms: NULL
- attr(*, "class")= chr [1:2] "DocumentTermMatrix" "simple_triplet_matrix"
- attr(*, "weighting")= chr [1:2] "term frequency" "tf"
我发现条款是空的。我不知道确切的数据结构DocumentTermMatrix()
,我只是按照这个线程Document-Term-Matrix of tm Package in R。任何人都可以帮助解决它吗?谢谢