Wordcloud

I’ve been toying with building a wordcloud of all my publications in both R and python on and off for some time, and while there’s a really nice R library for doing this wordcloud2, this example uses wordcloud, a python word cloud generator. I pasted all my publications into a single text file which is read into python and used by wordcloud as shown in code and results below. from os import path from wordcloud import WordCloud # Read the whole text. [Read More]