ツイッターのデータを分析してみました。ツイートをダウンロードし、以下を使用してツイートのテキストからコーパスを作成しました
# Creating a Corpus
wim_corpus = Corpus(VectorSource(wimbledon_text))
以下のように TermDocumentMatrix を作成しようとすると、エラーと警告が表示されます。
tdm = TermDocumentMatrix(wim_corpus,
control = list(removePunctuation = TRUE,
stopwords = TRUE,
removeNumbers = TRUE, tolower = TRUE))
Error in simple_triplet_matrix(i = i, j = j, v = as.numeric(v), nrow = length(allTerms), : 'i, j, v' different lengths
In addition: Warning messages:
1: In parallel::mclapply(x, termFreq, control) :
all scheduled cores encountered errors in user code
2: In is.na(x) : is.na() applied to non-(list or vector) of type 'NULL'
3: In TermDocumentMatrix.VCorpus(corpus) : invalid document identifiers
4: In simple_triplet_matrix(i = i, j = j, v = as.numeric(v), nrow = length(allTerms), :
NAs introduced by coercion
誰でもこのエラーが何を示しているか指摘できますか?これは tm パッケージに関連している可能性がありますか?
tm ライブラリがインポートされました。R バージョン: R 3.0.1 および RStudio: 0.97 を使用しています。