Exploring the Anatomy of a Successful TED talk
From Pericles to Barack Obama, some of the greatest orators of our time have committed themselves to spreading an idea that will not only inform but also inspire. Β TED (Technology, Entertainment, and Design) continues this tradition as a nonprofit that serves as a medium for successful and unique individuals to share their stories, passions, and innovations. As a global community, TED strives to engage people on and off the internet through videos of conference talks. Driven solely by the question, βHow can we best spread great ideas?β, TED has become a well-established clearinghouse for knowledge, inspiration, and wisdom.
But what drives viewership? What makes one video more popular or rated more beautiful than another? For this project, I sought to explore these questions by extracting data from the TED website:
1.Β Β Β Β Β Β Speaker Name
2.Β Β Β Β Β Β Speech Transcript
3.Β Β Β Β Β Β Views
4.Β Β Β Β Β Β Title
5.Β Β Β Β Β Β Rating
6.Β Β Β Β Β Β Month uploaded
7.Β Β Β Β Β Β Duration
8.Β Β Β Β Β Β Speaker Gender
Using ScraPy, 1874 transcripts were collected, ranging in time from 2006 to 2016. You can see the code used in the development of the spider and collection of the data here:
[https://gist.github.com/LostMailman/58a033566d326748f62b561b159171e8#file-talkspider-py]
Sometimes, it may not be the diction, tone, or length that controls views β in fact it may sometimes be an audiences hidden biases. One of the major things that can be seen from doing a simple numerical exploratory data analysis is the difference in male vs. female speakers.
The ratio is almost 2.2 males for every 1 female speaker, which may imply that men are given more opportunity than women to speak at the conference. Take a look at the following Rating Proportion graph:
What you can see here is that women are more likely to be rated βBeautifulβ, much more likely to be rated βCourageousβ, and βInspiringβ. Men on the other hand are more likely to be βFascinatingβ and βIngenious.β A Chi squared test shows that at least one of the categories is dependent on another with a significant p-value of 2.2e-16. This leads me to believe that women are generally recruited to speak about social topics such as feminism. Despite the difference in rating proportion, Women and men garner about the same amount of views:
Diction is also considered a huge factor in determining a speechβs success. For each transcript, the top ten words that were used were collated, then summarized by frequency. Comparing the frequency tables of words among different quartiles:
It seems that the top ten words are similar across all quartiles: βcanβ, βoneβ, βlikeβ, βpeopleβ, βjustβ, βnowβ, βknowβ, βactuallyβ, βseeβ, βreallyβ, βworldβ.
The rating proportions are visualized in the form of a word cloud β what can be seen here is the same prevalence of words shown above:
The βfunnyβ rating, however, is more interesting and varied. It goes to show that people are less likely to rate a talk funny than they are the other categories:
Finally, to understand if any of the continuous data collected had any effect on views, I ran a linear regression against views with the duration of the talk, the gender of the speaker, and the date it was uploaded. The following are the initial results:
The initial Q-Q plot looks terrible above 1 quartile. I tried to linearize this relationship with a boxcox transformation (lambda = -18/99):
The Q-Q plot looks much better, and the result is a significant (p-value = 2.2e-16) equation. The significant coefficients are the duration and the date β the latter being much more significant. The equation however only explains 7.3 % of the variance. Date is also correlated with views, because the longer a video has been uploaded for, the more views it is likely to have. As a result, this linear model is inconclusive.
With more time, further relationships may be investigated with text mining machine learning algorithms such as NaΓ―ve Bayes classifiers. What can be noted is the discrepancy with male and female speakers, in proportion and numbers. While TED is a great organization that warms our hearts and inspires our thoughts, it may have some legwork to do before becoming fully egalitarian.
Analysis Code:
[https://gist.github.com/LostMailman/58a033566d326748f62b561b159171e8#file-ted_analysis-r]