qplot の棒グラフを用語のアルファベット順 (y 軸) ではなく、出現頻度 (x 軸) に従って配置するにはどうすればよいですか?
# create a table to store the top 50 most frequent words and plot a barchart
word_freqs = sort(rowSums(tdm), decreasing=TRUE)
top50words <- head(word_freqs, 50)
termFrequency <- rowSums(as.matrix(top50words))
qplot(names(termFrequency), termFrequency, geom="bar", xlab="Terms") + coord_flip()
top50wordsはすでに用語を降順で並べています (出現回数が多いものから少ないものへ)。ただし、qplot では、代わりにアルファベット順に並べられます。