Try something in the veins of this:
library(wordcloud)
words <- c("foo", "bar")
freqs <- c(10, 3)
wordcloud(words = sprintf("%s (%s)", words, freqs), freq = freqs)
?sprintf
and ?paste
might be helpful.
0
solved How to display frequency in wordcloud