Difference between revisions of "Wordcloud"

From Sustainability Methods
m
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
'''Note:''' This entry revolves specifically around Wordclouds. For more general information on quantitative data visualisation, please refer to [[Introduction to statistical figures]]. For more info on Data distributions, please refer to the entry on [[Data distribution]].
+
'''Note:''' This entry revolves specifically around Wordclouds. For more general information on quantitative data visualisation, please refer to [[Introduction to statistical figures]]. For more info on Data distributions, please refer to the entry on [[Data distribution]]. Another example of a worldcloud can be found in this [[Price_Determinants_of_Airbnb_Accommodations#Wordcloud|entry]].
 
<br>
 
<br>
 
__TOC__
 
__TOC__
  
 
== Definition ==
 
== Definition ==
Wordcloud is a cluster of words or visualisation of the most commonly or frequently used terms within the analysed data set. The basic principle is the higher the frequency, the more prominent the word on the figure is. Wordcloud is a relatively easy and quick text mining tool which allows to get a rough overview of the word usage within the dataset, which can give further ideas when studying correlations connected to word usage frequency. Wordclouds can also help get first impression of the differences or similarities when working with two textual datasets.
+
Wordcloud is a cluster of words or visualisation of the most commonly or frequently used terms within a given dataset of words. The basic principle is that the higher the frequency, the more prominent the word is in the figure. Wordcloud is a relatively easy and quick text-mining tool which allows to get a rough overview of the word usage within the dataset, which can give further ideas when studying word usage frequency. Wordclouds can also help get first impression of the differences or similarities when working with two textual datasets.
  
 
'''Advantages'''
 
'''Advantages'''
* Due to their simple design, wordclouds rarely need additional explanation of the visualised results
+
* Due to their simple design, wordclouds rarely need additional explanation of the visualised results.
* Straightforward and colourful figure can be often used for aesthetic purposes and in order to quickly get one’s point across
+
* Straightforward and colourful figure can be often used for aesthetic purposes and in order to quickly get one’s point across.
[[File:HarryWordCloud.png|300px|thumb|right|Fig.1: Wordcloud of the most commonly used words in the Harry Potter book series gives little insight since the result of the visualisation is quite predictable. ([https://public.tableau.com/app/profile/dave.andrade/viz/WordCloudsandWizardry/HarryPotterWordCloudDashboard Source])]]
+
[[File:HarryWordCloud.png|300px|thumb|right|'''A Wordcloud of the most commonly used words in the Harry Potter book series.''' Unfortunately, this gives little insight since the result of the visualisation is quite predictable. [https://public.tableau.com/app/profile/dave.andrade/viz/WordCloudsandWizardry/HarryPotterWordCloudDashboard Source]]]
 
'''Disadvantages'''
 
'''Disadvantages'''
* If your data set is not prepared and cleaned you might get little to no insight into the data. Besides, it is important to have a clear idea why this method is being applied and for which purposes. Otherwise the wordcloud will simply visualise evident or common words with no use for research (Fig.1).
+
* If your data set is not prepared and cleaned you might get little to no insight into the data. In this context, "cleaning" refers to the deletion of double spaces, numbers, punctuation, fill words ("and", "or", "but", "is", "at" etc.) and shifting all words to lowercase, among other measures.
* General disadvantage of wordclouds is caused by the so-called [https://www.data-to-viz.com/caveat/area_hard.html “area is a bad metaphor”] phenomenon. Human eyes can have difficulty visually identifying the size of an area, in this context, a word’s size compared to the other words around it. Analytical accuracy of such visualisations can be especially compromised if the words have different lengths: wordclouds tend to emphasise long words over short words as shorter words need less space and thus might appear smaller.
+
* It is important to have a clear idea why this method is being applied and for which purposes. Otherwise the wordcloud will simply visualise evident or common words with no use for research.
 +
* A general disadvantage of wordclouds is caused by the so-called [https://www.data-to-viz.com/caveat/area_hard.html “area is a bad metaphor”] phenomenon. Human eyes can have difficulty visually identifying the size of an area, in this context, a word’s size compared to the other words around it. Analytical accuracy of such visualisations can be especially compromised if the words have different lengths: wordclouds tend to emphasise long words over short words as shorter words need less space and thus might appear smaller.
 
* Wordclouds consider one word at a time. So, for example, if customers often describe the product they purchased as “not good” in their reviews, the wordcloud will be likely to visualise it as “not” and “good” separately. Taken into account that the words are allocated randomly in the cloud, this only further impairs an accurate analysis of the visualisation.
 
* Wordclouds consider one word at a time. So, for example, if customers often describe the product they purchased as “not good” in their reviews, the wordcloud will be likely to visualise it as “not” and “good” separately. Taken into account that the words are allocated randomly in the cloud, this only further impairs an accurate analysis of the visualisation.
  
All in all, wordclouds can be a good for intro exercise when getting familiar with text mining and neural language processing. It offers a simple and comprehensible visualisation, however its features are quite limited if a thorough textual analysis is required. As an alternative, it might be better to use a [[Barplots,_Histograms_and_Boxplots#Barplots|barplot]] or [https://www.data-to-viz.com/graph/lollipop.html a lollipop chart], since they also make it possible to rank words by usage frequency, i.e. you can easily allocate the tenth most common word in a barplot, whereas in a wordcloud you might struggle to see the difference in sizes after identifying the first 5 most commonly used terms.
+
All in all, wordclouds can be a good intro exercise when getting familiar with text mining and neural language processing. It offers a simple and comprehensible visualisation, however its features are quite limited if a thorough textual analysis is required. As an alternative, it might be better to use a [[Barplots,_Histograms_and_Boxplots#Barplots|barplot]] or [https://www.data-to-viz.com/graph/lollipop.html a lollipop chart], since they also make it possible to rank words by usage frequency. For example, you can easily allocate the tenth most common word in a barplot, whereas in a wordcloud you might struggle to see the difference in sizes after identifying the first 5 most commonly used terms.
  
 
== R Code ==
 
== R Code ==
 
 
Let's try and create our own wordclouds. For the exercise we will use the transcripts of the inaugural speeches of the President of Russia ([http://en.kremlin.ru/events/president/news/57416 from 2016]) and the President of the USA ([https://www.whitehouse.gov/briefing-room/speeches-remarks/2021/01/20/inaugural-address-by-president-joseph-r-biden-jr/ from 2021]). Creating two wordclouds can help us obtain a general understanding of which topics were in the centre of attention for the presidents during their speeches.
 
Let's try and create our own wordclouds. For the exercise we will use the transcripts of the inaugural speeches of the President of Russia ([http://en.kremlin.ru/events/president/news/57416 from 2016]) and the President of the USA ([https://www.whitehouse.gov/briefing-room/speeches-remarks/2021/01/20/inaugural-address-by-president-joseph-r-biden-jr/ from 2021]). Creating two wordclouds can help us obtain a general understanding of which topics were in the centre of attention for the presidents during their speeches.
  
Line 93: Line 93:
  
 
# For comparison we can also look at the inaugural speech of US President Joe Biden from 2021
 
# For comparison we can also look at the inaugural speech of US President Joe Biden from 2021
# Fig.3
+
#  
 
Biden = readLines("/PresidentUS.txt", encoding = "UTF-8")  
 
Biden = readLines("/PresidentUS.txt", encoding = "UTF-8")  
 
df_biden = nube(Biden)
 
df_biden = nube(Biden)
Line 99: Line 99:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
[[File:PutinSpeech.png|500px|thumb|left|Fig.2: Wordcloud of the most used words during Vladimir Putin's inauguration speech in 2016]]
+
[[File:PutinSpeech.png|500px|thumb|left|Fig.2: '''Wordcloud of the most used words during Vladimir Putin's inauguration speech in 2016''']]
[[File:BidenSpeech.png|500px|thumb|center|Fig.3: Wordcloud of the most used words during Joe Biden's inauguration speech in 2021]]
+
[[File:BidenSpeech.png|500px|thumb|center|Fig.3: '''Wordcloud of the most used words during Joe Biden's inauguration speech in 2021''']]
 +
<br>
  
 
Above we see two wordclouds resulting from out text mining performed on the transcripts of Biden and Putin during their inauguration ceremonies. Based on the visualisations, we can conclude, that the most used word for both presidents were the names of their countries. Both presidents addressed the people by using different words, such as "people" and "citizens" in case of Vladimir Putin's speech, and "nation" and "Americans" in case of Biden's speech. Among other more prominent terms are such words as "democracy", "story", "war", "justice", "unity" and "work" used by the American president, and "challenges", "time", "history", "work", "towards", "fatherland", "achieve" and "life" used by the Russian president.
 
Above we see two wordclouds resulting from out text mining performed on the transcripts of Biden and Putin during their inauguration ceremonies. Based on the visualisations, we can conclude, that the most used word for both presidents were the names of their countries. Both presidents addressed the people by using different words, such as "people" and "citizens" in case of Vladimir Putin's speech, and "nation" and "Americans" in case of Biden's speech. Among other more prominent terms are such words as "democracy", "story", "war", "justice", "unity" and "work" used by the American president, and "challenges", "time", "history", "work", "towards", "fatherland", "achieve" and "life" used by the Russian president.

Latest revision as of 07:45, 21 March 2022

Note: This entry revolves specifically around Wordclouds. For more general information on quantitative data visualisation, please refer to Introduction to statistical figures. For more info on Data distributions, please refer to the entry on Data distribution. Another example of a worldcloud can be found in this entry.

Definition

Wordcloud is a cluster of words or visualisation of the most commonly or frequently used terms within a given dataset of words. The basic principle is that the higher the frequency, the more prominent the word is in the figure. Wordcloud is a relatively easy and quick text-mining tool which allows to get a rough overview of the word usage within the dataset, which can give further ideas when studying word usage frequency. Wordclouds can also help get first impression of the differences or similarities when working with two textual datasets.

Advantages

  • Due to their simple design, wordclouds rarely need additional explanation of the visualised results.
  • Straightforward and colourful figure can be often used for aesthetic purposes and in order to quickly get one’s point across.
A Wordcloud of the most commonly used words in the Harry Potter book series. Unfortunately, this gives little insight since the result of the visualisation is quite predictable. Source

Disadvantages

  • If your data set is not prepared and cleaned you might get little to no insight into the data. In this context, "cleaning" refers to the deletion of double spaces, numbers, punctuation, fill words ("and", "or", "but", "is", "at" etc.) and shifting all words to lowercase, among other measures.
  • It is important to have a clear idea why this method is being applied and for which purposes. Otherwise the wordcloud will simply visualise evident or common words with no use for research.
  • A general disadvantage of wordclouds is caused by the so-called “area is a bad metaphor” phenomenon. Human eyes can have difficulty visually identifying the size of an area, in this context, a word’s size compared to the other words around it. Analytical accuracy of such visualisations can be especially compromised if the words have different lengths: wordclouds tend to emphasise long words over short words as shorter words need less space and thus might appear smaller.
  • Wordclouds consider one word at a time. So, for example, if customers often describe the product they purchased as “not good” in their reviews, the wordcloud will be likely to visualise it as “not” and “good” separately. Taken into account that the words are allocated randomly in the cloud, this only further impairs an accurate analysis of the visualisation.

All in all, wordclouds can be a good intro exercise when getting familiar with text mining and neural language processing. It offers a simple and comprehensible visualisation, however its features are quite limited if a thorough textual analysis is required. As an alternative, it might be better to use a barplot or a lollipop chart, since they also make it possible to rank words by usage frequency. For example, you can easily allocate the tenth most common word in a barplot, whereas in a wordcloud you might struggle to see the difference in sizes after identifying the first 5 most commonly used terms.

R Code

Let's try and create our own wordclouds. For the exercise we will use the transcripts of the inaugural speeches of the President of Russia (from 2016) and the President of the USA (from 2021). Creating two wordclouds can help us obtain a general understanding of which topics were in the centre of attention for the presidents during their speeches.

Before starting, we copy the text form the source and save it as a plain text with UTF-8 encoding. Once this is done, we can open our IDE to proceed with text mining.

# First we activate the necessary libraries
library(tidyverse) # loads core packages for data manipulation and functional programming
library(tm) # for text mining
library(SnowballC) # to get rid of stopwords in the text
library(wordcloud2) # to visualise as a wordcloud

x = readLines("/PresidentRussia.txt", encoding="UTF-8") #your pathway to the text file

# Transform the vector into a "list of lists" corpus for text cleaning in the next step
x = Corpus(VectorSource(x)) 

#Now we are ready to clean the text with the help of the SnowballC library
x = x %>% 
        tm_map(removeNumbers)%>% # get rid of numbers
        tm_map(removePunctuation)%>% # get rid of punctiation
        tm_map(stripWhitespace)%>% # get rid of double spaces if present
        tm_map(content_transformer(tolower))%>% # switch words to lowercase
        tm_map(removeWords, stopwords("English"))%>% # remove stopwords in English, such as such as 
                                                        #"the", "is", "at", "which", and "on".
        tm_map(removeWords, 
               c("and", "the", "our", "that", "for", "will")) # remove customer stopwords

# Once we cleaned the text, we are ready to create a table with each word
# and its calculated frequency and transform it into a matrix 
dtm = TermDocumentMatrix(x)
matriz = as.matrix(dtm)

# Next, we create a vector from the matrix rows with quantities and frequencies of the words
wordsvector = sort(rowSums(matriz), decreasing = TRUE)

# Now we create the final dataframe featuring two variable, word and frequency, to use for visualisation
x_df = data.frame(
        row.names = NULL, 
        word = names(wordsvector), 
        freq = wordsvector)

# Once this is done, here is again the whole code used above but in a form of one eloquent function
nube = function(x){
        
        x = Corpus(VectorSource(x))
        x = x %>% 
                tm_map(removeNumbers)%>% 
                tm_map(removePunctuation)%>% 
                tm_map(stripWhitespace)%>%
                tm_map(content_transformer(tolower))%>%
                tm_map(removeWords, stopwords("English"))%>% 
                tm_map(removeWords, 
                       c("and", "the", "our", "that", "for", "will"))
        dtm = TermDocumentMatrix(x)
        matriz = as.matrix(dtm)
        wordsvector = sort(rowSums(matriz), decreasing = TRUE)
        x_df = data.frame(
                row.names = NULL,
                word = names(wordsvector), 
                freq = wordsvector)
        return(x_df)
}

# Now with the help of the function which creates a clean dataframe, we just need to load the .txt file, 
# run it through the function and graph the wordcloud. For the latter we are using our dataframe 
# with 2 columns of words and frequency of words, with an additional setting for the size and colour of words.

#Fig.2 
Putin = readLines("/PresidentRussia.txt", encoding = "UTF-8") 
df_putin = nube(Putin)
wordcloud2(data = df_putin[1:2], size = 0.8, color = 'random-dark')


# For comparison we can also look at the inaugural speech of US President Joe Biden from 2021
# 
Biden = readLines("/PresidentUS.txt", encoding = "UTF-8") 
df_biden = nube(Biden)
wordcloud2(data = df_biden[1:2], size = 0.8, color = 'random-dark')
Fig.2: Wordcloud of the most used words during Vladimir Putin's inauguration speech in 2016
Fig.3: Wordcloud of the most used words during Joe Biden's inauguration speech in 2021


Above we see two wordclouds resulting from out text mining performed on the transcripts of Biden and Putin during their inauguration ceremonies. Based on the visualisations, we can conclude, that the most used word for both presidents were the names of their countries. Both presidents addressed the people by using different words, such as "people" and "citizens" in case of Vladimir Putin's speech, and "nation" and "Americans" in case of Biden's speech. Among other more prominent terms are such words as "democracy", "story", "war", "justice", "unity" and "work" used by the American president, and "challenges", "time", "history", "work", "towards", "fatherland", "achieve" and "life" used by the Russian president.

References and further reading material

The code was inspired by

  1. Easy word cloud with R — Peru’s presidential debate version by Ana Muñoz Maquera
  2. "My First Data Science Project: A Word Cloud Comparing the 2020 Presidential Debates" by Tori White

Further sources

  1. The official transcript of the inaugural speech of the President of Russian (2016)
  2. Inaugural Address by President Joseph R. Biden, Jr. (2021)
  3. Guide to the Wordcloud2

The author of this entry is Olga Kuznetsova.