Below you will find pages that utilize the taxonomy term “twitter”
Post
Who's Tweeting - Trump or Trudeau ?
Loaded corpus of tweets from November 2017 into Pandas DataFrame, and passed it to scikit-learn for further processing Created vectorized representations of the tweets using ‘CountVectorizer’ and ‘TfidfVectorizer’ classes in order to apply machine learning after splitting the data into test and training sets Trained Multinomial Naive Bayes model with both the CountVectorizer and TfidfVectorizer data to check which model will perform better. Results are TF-IDF model performs better with 0.
Post
Real-time Insights from Social Media Data
Loaded and inspected data for topics that were hot worldwide (WW) and in the United States (US) at the moment of query Used json.dumps() method to have the data formatted as a pretty JSON string Used python’s set datastructure to find the common trends between “World Trends” and “US Trends” Digged deeper to explore the common hot trend “#WeLoveTheEarth” Performed frequency analysis to get the sense of the data and Extracted useful information from retweets Manipulated and Visualized the data in a better and richer way Analysed languages used in tweets Link to GitHub Repository
Post
Sentiment Analysis on Latest Avengers Movies with Tweets
Scraped twitter tweets using Twitter Scraper Successfully applied VADER sentimental analysis tool to get peoples sentiments Applied Langdetect to extract English (‘en’) language tweets Compared Avengers: Endgame 2019 movie sentiments to previous year Avengers: Infinity war movie Link to GitHub Repository