Building a frequency word cloud in R in other words what French government recommends in Corona's time
Word cloud is a text mining method to visualize textual data. As a result we will see the most frequent used worlds in a text we are analysing . The packages we are going to use are the following : tm which is text mining package, SnowballC which is text stemming package, word cloud which allow us to generate cloud image and RColorBrewer for choosing the colour palettes. You can install them first by using command install.packages(c("tm", "SnowballC", "wordcloud", "RColorBrewer"). This step is not necessarily if by some reason you were using them before and there are already in your computer. To build a frequency word cloud I will use text which I found in French government site about covid 19 and official recommendation the government is giving. The URL of this site is https://www.gouvernement.fr/en/coronavirus-covid-19 Because of the fact that news about corona is changing rapidly and I don't know how long this information will be a...