Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 739 Bytes

File metadata and controls

33 lines (20 loc) · 739 Bytes

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