What League of Legends Tweets Can Tell Us About Market Opportunities

Data

What League of Legends Tweets Can Tell Us About Market Opportunities

by Robert Rouse
//

Imagine this scenario: You’re an entrepreneur who has built a successful mobile gaming company offering a high-tech experience at parties and events. Now it’s time to expand. You’ve seen more than one episode of “Shark Tank” and have learned you must bring data to the table when pitching to investors. How do you go about finding and analyzing relevant information? That’s where InterWorks can help.

Approaching the Problem

An open-ended question like this is best solved by asking successively more detailed questions to narrow down the analysis at each step. Tableau can help us go through this process very rapidly, but we first need to gather some data. For that, we turn to the most openly accessible social data out there: the Twitter stream.

When I began this piece, the 2014 League of Legends World Championship had just wrapped up. Tweets mentioning this championship are relevant to the target market and in large supply.  Those familiar with writing code can pull tweets and metadata from the Twitter API with some knowledge of how it works. For the rest of us, we can use the Twitter Search tool in Alteryx.

Importing Tweets and Analyzing Sentiment in Alteryx

We could start by looking for tweets mentioning the phrase “League of Legends,” but we also want to get the #LeagueOfLegends hashtag. There may be other relevant search terms, but this should be a good start. Use a formula field to indicate the search terms after setting options in the Twitter Search, then bring the tweets together using the Union tool.

Search

 

Next, we’ll use R integration in Alteryx to handle the sentiment analysis. Sentiments are normally determined by matching words to a lexicon which scores individual words as having a “positive” or “negative” emotion. To get an appropriate score, we’ll need to clean up the tweet text by setting all words to lowercase and by cleaning up punctuation marks. That is easily done with a formula and RegEx tool. Inputs are shown in the screenshot below:

Formula + RegEx tool

 

The prepared data will feed into the R tool as shown. Alteryx provides several predefined analysis types with the Predictive Tools installation, but sentiment analysis will require some custom code as shown below:

 

library(“Rstem”)

library(“sentiment”)

data=read.Alteryx(“#1″,mode=”data.frame”)

 

sent=classify_polarity(data[‘TweetBodyCopy’],algorithm=”bayes”, verbose=”true”)

data[‘pos_score’]=data.frame(sent[,1])

data[‘neg_score’]=data.frame(sent[,2])

data[‘pole_prob’]=data.frame(sent[,3])

data[‘polarity’]=data.frame(sent[,4])

 

write.Alteryx(data, 1,TRUE)

 

For this code to execute, you’ll need to install the Rstem and sentiment packages outside of Alteryx. Depending on your installation, you may also need to specify the package location inside the library() command.

Using Tableau to Narrow the Focus

The Twitter API gives us location information which will have to be split between city and state using the “text to columns” feature in Alteryx or Excel. Once that’s done, the data is ready for analysis in Tableau. By dragging the City field onto the map along with the Number of Records (tweets), I can immediately see places where people are actively discussing the championship.

Next, I can color the circles based on the sentiment score by using a calculated field with the following formula:

 

AVG([pos_score])-AVG([neg_score])

 

By dragging that onto the Color shelf and adding annotations, I now have a map that can help me narrow down which cities to analyze further. It’s clear that the existing location for our scenario has an active gaming community with positive sentiments. Los Angeles and San Francisco stand out as well. Interestingly, neighboring cities like Costa Mesa show more positive sentiments than LA itself.

 

Cross-Checking the Results

Savvy investors may not fully trust this single point of analysis. Good science depends on multiple, independent lines of inquiry. What else could we check to verify the conclusions above? A mobile gaming business would cater to events like League of Legends viewing parties, so we’ll start there.

I gathered locations of viewing parties from websites listing event details using Import.io. The lists had full addresses which Tableau can’t automatically recognize and geocode. What now? One fast, easy way to create a map from addresses is with Google Fusion Tables. It sends the addresses through Google’s algorithm for finding and plotting lat/long coordinates. With a few simple steps, outlined here, we now have a Google Map.

Google Map

 

Seeing the clusters in the same cities identified on the tweet map, we now have independent confirmation that San Francisco and the Greater Los Angeles Area are prime markets to look into. For further confirmation, we could repeat the whole process above with different gaming topics and events.

Final Site Selection

Now that we’ve narrowed it down to two cities, we can start looking for specific sites to use as a base of operations. Here is an outline for a data-driven approach to site selection:

  1. Gather a list of sites available for lease or purchase
  2. Conduct a drive time analysis to discover areas within a reasonable distance
  3. Explore the demographics and consumer spending habits of those areas
  4. Compare data from your current market to that of the target markets

The details of how to go about that analysis will be covered in a future post.

Summary

There is a saying among photographers: “The best camera is the one you have with you.” The same can be said of data analysis software. This analysis incorporates Alteryx, R, Tableau, import.io and Google Fusion Tables to show how we can use a range of available tools to get a complete picture. In a very short time, we have:

  1. Imported tweets about a popular gaming event
  2. Analyzed tweet sentiment
  3. Narrowed our focus by visualizing tweet locations and sentiments
  4. Confirmed results by importing and visualizing event listings

With this and further site-specific analysis, we can approach investors with confidence having solid data and sharp visuals in a presentation about market potential. Who knows? Maybe you’ll be the next one on TV getting Mark Cuban and Kevin O’Leary to fight over who gets to invest in your winning ideas.

More About the Author

Robert Rouse

Analytics Consultant
Eine neue Art KPIs in Tableau zu visualisieren Key Performance Indicators sind eines der Dinge, die Leute am häufigsten in Tableau darstellen möchten. Das bezieht für gewöhnlich ein, ...
Disney Data & Analytics Conference 2019 in Review At Disney World, every park has a theme. What you may not know is that their annual data and analytics conference has a theme, too. In ...

See more from this author →

InterWorks uses cookies to allow us to better understand how the site is used. By continuing to use this site, you consent to this policy. Review Policy OK

×

Interworks GmbH
Ratinger Straße 9
40213 Düsseldorf
Germany
Geschäftsführer: Mel Stephenson

Kontaktaufnahme: markus@interworks.eu
Telefon: +49 (0)211 5408 5301

Amtsgericht Düsseldorf HRB 79752
UstldNr: DE 313 353 072

×

Love our blog? You should see our emails. Sign up for our newsletter!