R 2.15.1 で tm および wordcloud パッケージを使用しています。DTM からワード クラウドを作成しようとしています。コードは次のとおりです。
library(wordcloud)
thedtmsparse = inspect(sparse)
trymatrix = t(thedtmsparse)
colnames(trymatrix) = c()
comparison.cloud(trymatrix, max.words=15, random.order=FALSE)
最後のコマンドから次のエラーが発生します。
Error in strwidth(words[i], cex = size[i], ...) : invalid 'cex' value
別の DTM で同じコードを使用したところ、問題なく動作し、ワード クラウドが表示されました。誰かがエラーの修正を教えてもらえますか?
ラヴィ