Sentiment Analysis in Python
Violeta Misheva
Data Scientist
Sentiment analysis as the process of understanding the opinion of an author about a subject
from sklearn.feature_extraction.text import CountVectorizer, TfidfVectorizer
# Vectorizer syntax
vect = CountVectorizer().fit(data.text_column)
X = vect.transform(data.text_column)
Important but NOT arguments to the vectorizers
Sentiment Analysis in Python