Skip to content

Sentiment Analysis on Game Review using TextBlob-lexicon and rule-based sentiment.

Notifications You must be signed in to change notification settings

Mananp96/Sentiment-Analysis-on-Game-Review

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sentiment-Analysis-on-Game-Review

File Structure:

.
├── SentimentModel.py	# Sentiment Model
├── test.xlsx		# Test Set - Game Reviews
├── output.xlsx		# Sentiment Results on test set
├── statistics.png	# Classification Results Graph
└── README.md

To Run:

python SentimentModel.py

Libraries used:

  1. install TextBlob pythonic text processing and sentiment analysis library

     $ pip install -U textblob
    
     $ python -m textblob.download_corpora
    
  2. install pandas : python package for data loading and analysis

     $ pip install pandas
    
  3. install opnpyxl: python library to read/write excel

     $ pip install openpyxl
    
  4. install matplotlib

     $ pip install matplotlib