For this project, I'm using sentiment analysis to find out customer review and rating (1 to 5 stars)
Sentiment Analysis is the process of computationally identifying and categorizing opinions expressed in a piece of text, with the use of natural language processing, text analysis, computational linguistics, and biometrics to systematically identify, extract, quantify, and study affective states and subjective information. For this project, we use sentiment analysis to find out customer review and rating (1 to 5 stars).
import pandas as pd # for data processing
import numpy as np # for array, linear algebra
import matplotlib.pyplot as plt # to crreate stat and visualize data
import seaborn as sns # to visualize data
import matplotlib as mpl
import nltk
import string
import gensim
import re
Install NLTK and wordCloud
!pip install nltk
!pip install wordcloud