{"id":26825,"date":"2018-10-15T12:00:23","date_gmt":"2018-10-15T10:00:23","guid":{"rendered":"https:\/\/statworx-1727.demosrv.dev\/?p=26825"},"modified":"2023-01-18T10:25:55","modified_gmt":"2023-01-18T09:25:55","slug":"how-we-use-emojis","status":"publish","type":"post","link":"https:\/\/www.statworx.com\/en\/content-hub\/blog\/how-we-use-emojis\/","title":{"rendered":"How we use emojis"},"content":{"rendered":"

Once upon a time, we at STATWORX<\/a> used Slack just as a messenger, but then everything changed when emojis came\u2026 Since then, we use them for all kinds of purposes. For example, we take polls with them to see where we will eat lunch or we capture unforgettable moments by creating new emojis. The possibilities are limitless! But since we use them so much, I was wondering how often do we use them. And when? And which is the top emoji?! Is it just the thumbsup<\/em>?<\/p>\n

To answer all these questions, I went on a little journey through my emotions.<\/p>\n

Getting the data<\/h2>\n

The first part was to gather data. Well, since nearly every tool has a log history this was quite simple. I just had to get the history (the last year) of our Slack channels which were provided within JSONS. These I could easily load into R with the jsonlite<\/code> package. To get a list of all possible emojis, I found this list<\/a> from Cal Henderson who works at Slack. I added our own custom emojis to complete the list.<\/p>\n

All that followed, was a little loop to go through each message and its reactions and count the occurrences of each emoji. Combined with the timestamp given in seconds from January the first in 1970, I had my emoji time-series data that looked like this:<\/p>\n

                     EMOJI COUNT     TIME     TYPE       DATE\n1: :slightly_smiling_face:     1 08:56:05  message 2018-08-10\n2: :slightly_smiling_face:     1 17:08:19  message 2018-08-10\n3:                  :gift:     2 08:36:04 reaction 2018-08-18\n4:                   :joy:     1 13:47:10 reaction 2018-09-03\n5:                    :+1:     1 13:56:12 reaction 2018-09-04\n<\/code><\/pre>\n

After evaluating each single text I found that more than every second chat (57%) either has an emoji in the messasge or as a reaction. So we really use them a lot!<\/p>\n

The right timing<\/h2>\n

Since the majority was used as a reaction, I summed them up and did not distinguish between messages and reactions. To get a first idea of how often and when we use emojis I looked at a frequency plot over time. There are two things to notice: First, we see an increase over time. Well our company grew, so more people equals more emojis. Second, we tend to not use them during the weekend – who would have thought!?<\/p>\n

\"emoji-over-year\"<\/p>\n

But what about our daily usage? Well there seem to be some peaks. One peak appears right after wake up time, another one when we arrive at the office. Here we can distinguish between colleagues with the mobil app and the ones that just<\/em> use Slack with the desktop app. There is another peak around our lunchbreak and it comes all to end before we go to bed at 22:00.<\/p>\n

\"emoji-over-day\"<\/p>\n

Cause and effect<\/h2>\n

Since I started this little project, more and more questions popped into my head. For example: Is there a link between the emoji’s usage within a message and as a reaction? Are there words, that trigger us to use emojis? To answer the first questions, I used the networkD3<\/code> package to plot the interaction as a sankey diagram.<\/p>\n

\"emoji-sankey-category\"<\/p>\n

Here we can see which categories of emojis used within a message lead to which reactions. The most commonly used category is Smileys & People<\/strong> followed by custom<\/strong>. And around 40% stay within the same category.<\/p>\n

To answer the second question I made some word clouds<\/a> to see which words we use. The ones in orange are those where a reaction followed.<\/p>\n

\"wordcloud\"<\/p>\n

We can see, that we use more words with no emoji reaction than the other way around. If we only look at the ones with emoji reactions, then we get the following picture.<\/p>\n

\"wordcloud-emoji\"<\/p>\n

Seems that if we ask a question “heute wer mal bitte \u2026” (“today someone please\u2026”<\/em>), we get a reaction – mostly positive.<\/p>\n

The most common emojis<\/h2>\n

\"emoji-category\"<\/p>\n

As we can see in the plot above, we use the emoji’s categories differently. First of all, Smileys and People<\/strong> are used the most. But if we look at the emoji density – which represents the percentage of unique used emoji within this category – we only use a third of them. On the other hand, nearly 80% of our custom emojis were used.<\/p>\n

To find the most commonly used emojis I looked at the top 50 emojis within messages and reactions. Also, I stumbled upon two R packages (emoGG<\/code> and emojifont<\/code>) which let you add emojis to your ggplots<\/code>. This sounded wonderful, but there was a catch! Since we work with RStudio on a Mac I could not use the RStudio plotting device, since it would not show the emojis. After a little bit of research, I found this post here<\/a>, which suggested to use quartz()<\/code> and grid.export<\/code> with .svg<\/code> for the plotting. The loaded font obviously did not have our own emojis, so I just added them as\u2753.<\/p>\n

\"emoji-plot\"<\/p>\n

So, as I thought in the beginning our top emoji is ????, followed by ???? and ????.<\/p>\n

\n\n\n\n\n\n\n\n
Emoji<\/th>\nmessage<\/th>\nas reaction<\/th>\ntotal<\/th>\n<\/tr>\n<\/thead>\n
????<\/td>\n0<\/td>\n482<\/td>\n482<\/td>\n<\/tr>\n
????<\/td>\n98<\/td>\n281<\/td>\n379<\/td>\n<\/tr>\n
????<\/td>\n260<\/td>\n49<\/td>\n309<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n

But since there is a lot going on in the lower-left corner – let’s have a closer look! We can see a variety of emojis being used with a lot of custom ones.<\/p>\n

\"emoji-plotdetails\"<\/p>\n

With this package, we can also update the plot showing our daily usage with the most commonly used one at the time.<\/p>\n

\"emoji-over-day-with-icon\"<\/p>\n

Conclusion<\/h2>\n

With this little project, I just scratched the surface of possibilities to analyze the usage of emojis. If you have more ideas, I would like to see your approach and solutions. Just send me an email at blog@statworx.com<\/a>. To get started you can use my code at our GitHub<\/a> – not containing our whole data of course, but with an example folder with two jsons. Here you can add your own Slack history.<\/p>\n

References<\/h2>\n