I deal a bit with textual data across various grouping variables. I\'m thinking of creating a method to make faceted wordcloud plots using Ian Fellows\' wordcloud
This is a possible solution using ggplot2 style: https://github.com/lepennec/ggwordcloud
This may be a pipe dream, and it certainly isn't easy to re-use the wordcloud
code:
wordcloud
code calculates word sizes and positions in base graphics.In terms of making it work, a framework for designing a solution might be:
wordcloud
to calculate word sizes in grid graphics, rather than base graphicsstat_wordcloud
geom_text
to a new geom_wordcloud
So, it's a pipe dream, but I'd be keen to use it once you've made it ;-)