Emoticons decoder for social media sentiment analysis in R

[This article was first published on Opiate for the masses, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

If you have ever retrieved data from Twitter, Facebook or Instagram with R, you might have noticed a strange phenomenon. While R seems to be able to display some emoticons properly, many other times it doesn’t, making any further analysis impossible unless you get rid of them. With a little hack, I decoded these emoticons and put them all in a dictionary for further use. I’ll explain how I did it and share the decoder with you.

The meaning of Emoticons and why you should analyze them

As far as I remember, all the sentiment analysis codes I came across dealt with emoticons by simply getting rid of them. Now, it might be ok if you’re interested in analyzing someone’s vocabulary or do some fancy wordclouds. But if you want to perform sentiment analysis, than these emoticons are probably the most meaningful part of your data! Sentiments, emotions, emoticons, you know, there’s a link 😉 Not only are they full of meaning by themselves, they also have the virtue to change the meaning of the sentences they are appended to. Think of a tweet like “I’m going to bed”. It has a dramatically different meaning, depending on whether a happy smiley or a sad smiley is associated to it. Long story short: If you’re interested in sentiment, you MUST capture emoticons!

Emoticons and R

As mentioned earlier, R seems to be totally capable of properly displaying some emoticons, while it fails displayng others. Try inputing xE2x9DxA4 (heavy black heart) to the console and this is how the output will look like:

## [1] "❤"

Just as expected. So far, so good.

Now try inputing this xF0x9Fx98x8A (smiling face with smiling eyes) and R won’t display it as an emoticon:

## [1] "U0001f60a"

The display problem seems related to the length of the code. Apparently, if an emoticon’s UTF-8 code is longer then 12 characters, it won’t be displayed properly. Find a list of emoticons with their respective encodings here.

Now, the real problem occurs when you retrieve data from social media. This is how tweets look like when retrieved with the userTimeline() function and parsed to a data frame with the twListToDF() function from the twitteR package:

For demonstration purposes, I needed to find a twitter user who integrates a lot of different emoticons in his or her tweets. And who is better suited than emoticons queen Paris Hilton herself? Exactly, nobody 😀 As you can see, many emoticons aren’t displayed correctly but appear as strange question marks symbols instead, while others are displayed as emoticons.

Printed to the console, the strange question marks symbols aka emoticons look like unicode except that it is not unicode and doesn’t match the actual, right UTF-8 encoding I expected. Take this tweet, for example:

## [1] "At sound check last night for the ports1961womenswear After Party. 
xedxa0xbcxedxbexb6xedxa0xbdxedxb1xb8xedxa0xbcxedxbfxbc
xedxa0xbcxedxbexb6 @ Shanghai, China https://t.co/Y9lE9mXjIL"

The first emoticon consists of multiple musical notes, it’s corresponding UTF-8 encoding is xF0x9Fx8ExB6 but it is being rendered as xedxa0xbcxedxbexb6.

Also, try to pass the tweet to the str() function and you will get an error message:

## Error in strtrim(e.x, nchar.max): invalid multibyte string at 
'<a0><bc>x<65>d<b7><a8>xed<a0><bc>xed<b7><b3> https://t.co/0p90p8Rrhu"'

If you don’t need the emoticons, the most reasonable thing to do is to get rid of them. But given that I wanted to include them in my analysis, I was facing two problems: First, it was difficult to handle the tweets because their format messed up with some functions and lead to error messages. I needed to change their encoding. Second, I couldn’t identify the emoticons as the way R encodes them doesn’t correspond to their actual UTF-8 encoding. It’s a real pain in the neck, especially (but not only) if you’re analyzing Paris Hilton’s tweets, because she just LOVES her musical notes emoticons 😉 The solution that came to my mind was to decode them.

First things first, I used the iconv() function with the following parameters to be able to further handle the tweets. As you can see, the multiple musical notes emoticon xF0x9Fx8ExB6 now appears as <ed><a0><bc><ed><be><b6>. This is an encoding I could work with and this was going to be the basis of the decoder.

tweets2 <- data.frame(text = iconv(tweets$text, "latin1", "ASCII", "byte"), 
                          stringsAsFactors = FALSE)
## [1] "At sound check last night for the ports1961womenswear After Party. 
<ed><a0><bc><ed><be><b6><ed><a0><bd><ed><b1><b8><ed><a0><bc><ed><bf><bc>
<ed><a0><bc><ed><be><b6> @ Shanghai, China https://t.co/Y9lE9mXjIL"

Building an emoticons decoder for R

This is how I did it.

1. Scrape the code

The first step consisted of scraping the emoticons, their UTF-8 code and the description from this website. I believe this is a more or less full list of them. Here is the R code I used to do so. No problem thanks to the rvest package 🙂

2. Post code

Now that I had a list of the emoticons and their codes, I could post them on twitter. I first created a twitter account for this purpose and then posted the emoticons in batches until I reached the rate limit. I continued the procedure the next days until I had posted them all. I used this code to post to twitter.

3. Retrieve tweets

The third step consisted of retrieving the tweets to get this strange encoding of R for every emoticon on the list.

4. Build the decoder

The last step consisted of matching the emoticons list from step 1 with the retrieved emoticons from step 3 based on their description. And ready was my (R)emoticons decoder! It includes the image, UTF-8 code, description and the encoding R gives to every emoticon. You will find the decoder as a csv file here.

With this decoder, I’m finally able to identify and match emoticons retrieved with R from social media. Possible use cases could be to give them a score for sentiment analysis (e.g. +1 for positive emoticons, -1 for negative emoticons or even weighted scores according to their level of positivity and negativity) or to put them into categories for semantic analysis (animals, activities, emotions, etc.). There are no boundaries to your imagination.

Let me know if you find an easier way to decode emotions in R or to solve this problem!

Emoticons decoder for social media sentiment analysis in R was originally published by Kirill Pomogajko at Opiate for the masses on October 16, 2015.

To leave a comment for the author, please follow the link and comment on their blog: Opiate for the masses.

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.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)