├── Compiled_Results.xlsx ├── LICENSE ├── README.md ├── _config.yml ├── abbreviations_match.txt ├── img ├── advanced-file-desc.png └── basic-file-desc.png ├── main_NLTK.py ├── main_TextBlob.py ├── raw_twitter.txt ├── requirements.txt ├── stopwords.txt ├── tweetCleaner.py └── tweetProcesser.py /Compiled_Results.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/Compiled_Results.xlsx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/_config.yml -------------------------------------------------------------------------------- /abbreviations_match.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/abbreviations_match.txt -------------------------------------------------------------------------------- /img/advanced-file-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/img/advanced-file-desc.png -------------------------------------------------------------------------------- /img/basic-file-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/img/basic-file-desc.png -------------------------------------------------------------------------------- /main_NLTK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/main_NLTK.py -------------------------------------------------------------------------------- /main_TextBlob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/main_TextBlob.py -------------------------------------------------------------------------------- /raw_twitter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/raw_twitter.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4 2 | nltk 3 | textblob -------------------------------------------------------------------------------- /stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/stopwords.txt -------------------------------------------------------------------------------- /tweetCleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/tweetCleaner.py -------------------------------------------------------------------------------- /tweetProcesser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan396/Twitter-Sentiment-Analysis/HEAD/tweetProcesser.py --------------------------------------------------------------------------------