I can’t resist a word cloud: now using R!
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Of course, having just analysed online coverage of the ISMB conference, I had to run all 6 906 comments from the 2008-2011 meetings through some code. If you followed along via the Sweave code, I went as far as generating the data frame of comments, ismb.comments, then pulled the comment text into a new data frame using:
data.frame(ismb.comments$body)
It was then simply a case of following along with the excellent example code from the post Word Cloud in R, over at One R Tip A Day, limiting myself to the 1000 most-used words. Watch out, the TermDocumentMatrix() function from the tm package uses quite a lot of memory.
Result shown at right: click image for full-size version. I think that word in the centre says it all.
Filed under: bioinformatics, meetings, R, statistics Tagged: ismb, word cloud
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.