Skip to content

Sentiment Analysis of Twitter's reaction to the Silicon Bank Crash

Notifications You must be signed in to change notification settings

FrancoRamirezz/Sentiment-Analysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

Sentiment-Analysis Machine Learning

On March 10 the famous Silicon Bank crashed causing much reaction. Some were polarizing, and some were not so much. Understanding sentiment analysis allows machine learning to predict what emotion was displayed in the text. The emotions consisted of positive, negative, and neutral.
The dataset incorporates info from X(formerly Twitter)

Screenshot 2023-11-13 at 6 38 40 PM
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt

import seaborn as sns
import nltk 
from nltk.corpus import stopwords 
nltk.download("all")
import seaborn as sns
from nltk.tokenize import RegexpTokenizer, word_tokenize
from nltk.corpus import stopwords 
import string
from nltk import WordPunctTokenizer
nltk.download('punkt')
nltk.download('stopwords')
stopwords.words("english")

About

Sentiment Analysis of Twitter's reaction to the Silicon Bank Crash

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published