我正在使用R中的topicmodels
软件包进行主题建模
library(topicmodels)
#Set parameters for Gibbs sampling
burnin <- 4000
iter <- 2000
thin <- 500
seed <-list(2003,5,63,100001,765)
nstart <- 5
best <- TRUE
#Number of topics
k <- 8
#Run LDA using Gibbs sampling
# Start the clock!
ptm <- proc.time()
ldaOut <-LDA(dtm.new,k, method="Gibbs", control=list(nstart=nstart, seed = seed, best=best,
burnin = burnin, iter = iter, thin=thin))
# Stop the clock
proc.time() - ptm
然后我在最后一行中遇到了错误
#docs to topics
ldaOut.topics <- as.matrix(topics(ldaOut))
这是错误:
error in 1:nrow(counts) : argument of length 0
我认为这意味着它不能计算第一行。有什么方法可以检查。
topics()尚未给您一个矩阵?
在任何情况下,"长度零的参数"告诉您对象"计数"的行零行。