All your Writing needs covered

Analysis of two TED talks ¦ 2022 Best answer

Calculate the price
of
your order:

275 words
+
Approximate price
$ 0.00

Analysis of two TED talks ¦ 2022 Best answer You will create a document showcasing your analysis of two TED talks and presenting a list of 10 qualities, techniques and/or presentation skills that made the presentations you watched inspiring, captivating, creative and effective Analysis of two TED talks You will create a document showcasing your analysis of two TED talks and presenting a list of 10 qualities, techniques and/or presentation skills that made the presentations you watched inspiring, captivating, creative and effective (from your own perspective). The document should include an analysis and images for each TED Talk. Sentiment Analysis of TED Talks-Bo Hawkes Introduction TED, which is an acronym standing for Technology, Entertainment and Design, “is a nonprofit devoted to spreading ideas.” A powerful way that TED works to achieve this mission of spreading ideas is through their TED Talks. TED Talks are short presentations on any topic imaginable. The common link, however, is that every TED Talk seeks to educate listeners on something new. https://www.ted.com/about/our-organization This project aims to analyze whether there is a correlation between the positive/negative sentiment of a TED Talk, and the popularity of the talk. Hypothesis I predict that the sentiment in the top five most viewed talks will be more positive than negative. Conversely, the sentiment of the top five least popular TED Talks is negative. Viewers want to listen to TED Talks that are positive. Setup In order to run all of my analysis functions, I first had to run the necessary packages. library(ggthemes) library(ggplot2) library(wordcloud2) library(tidyverse) library(stringr) library(tidytext) library(textdata) After downloading the required packages, I then imported two datasets from Kaggle. The datasets from Kaggle include every TED Talk up until September 21, 2017. Below is the main dataset https://www.kaggle.com/rounakbanik/ted-talks?select=ted_main.csv Below is the dataset that includes the transcripts https://www.kaggle.com/rounakbanik/ted-talks?select=transcripts.csv Data Import tedMain <- read.csv("~/Desktop/ted_main.csv", stringsAsFactors=FALSE) tedTranscripts <- read.csv("~/Desktop/transcripts.csv", stringsAsFactors=FALSE) After importing the two datasets, I then merged them. tedTalks top5views top_n(tedTalks, -5, views) -> bottom5views Top Ten Then, I ensured that, from the top and bottom viewed TED Talks, the ten most popular words were extracted. Before utilizing sentiment analysis on the five most popular words in each category, I wanted to see the top ten most popular to gain a larger understanding before closing in on five. top5views %>% unnest_tokens(word, transcript) ->top5words top5words %>% count(word, sort = TRUE) %>% anti_join(stop_words) %>% arrange(desc(n)) %>% head(10) %>% ggplot(aes(reorder(word, n), n)) geom_col() coord_flip() theme_calc() bottom5views %>% unnest_tokens(word, transcript) -> bottom5words bottom5words %>% count(word, sort = TRUE) %>% anti_join(stop_words) %>% arrange(desc(n)) %>% head(10) %>% ggplot(aes(reorder(word, n), n)) geom_col() coord_flip() theme_calc() Filter In order to run sentiment analyses with Afinn, Bing, and NRC, I first had to import the data sets, unnest the tokens, and filter out unnecessary words. top5views %>% unnest_tokens(word, transcript) %>% anti_join(stop_words) %>% filter(!word %in% c(“laughter”, “la”, “music”, “ha”)) -> top5WordsFiltered

«VPNEW»

Unlock your academic potential with Vintage-paper.com! Place your essay order today and experience top-notch writing services that guarantee academic success. Our expert writers are ready to craft customized papers that will exceed your expectations.Don't wait, order now and elevate your grades

Order Now

Basic features

  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support

On-demand options

  • Writer's samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading

Paper format

  • 275 words per page
  • 12pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, CHicago/Turabian, Havard)

Guaranteed originality

We guarantee 0% plagiarism! Our orders are custom made from scratch. Our team is dedicated to providing you academic papers with zero traces of plagiarism.

Affordable prices

We know how hard it is to pay the bills while being in college, which is why our rates are extremely affordable and within your budget. You will not find any other company that provides the same quality of work for such affordable prices.

Best experts

Our writer are the crème de la crème of the essay writing industry. They are highly qualified in their field of expertise and have extensive experience when it comes to research papers, term essays or any other academic assignment that you may be given!

Calculate the price of your order

You will get a personal manager and a discount.
We'll send you the first draft for approval by at
Total price:
$0.00

Expert paper writers are just a few clicks away

Place an order in 3 easy steps. Takes less than 5 mins.