I have a problem where , I need to calculate sentiment analysis of two columns present in the excel file and after calculation of polarity of those two columns, I need to update those polarity values in two other columns which are already present in the same excel input file. Any how I have achieved by calculating polarity of single text sentence . Need suggestions to calculate polarity of entire column present in the excel file.
I am using pandas for excel processing.
from textblob import TextBlob
import pandas as pd
Input_file='filepath'
df = pd.read_excel(Input_file,
sheet_name='Sheet1')
col1 = pd['video_title'].tolist()
# col2 = pd['description'].tolist()
blob = TextBlob(col1)
# blob1 = Texxtblob(col2)
polarity_score = blob.sentiment.polarity
polarity_rounded = round(polarity_score, 6)
print(polarity_rounded)
As i posted in the above image, here i need to replace the values 'None' in the column 'title_sentiment' to the calculated polarity values. Likewise, i have to update the 'description_sentiment' column to the calculated polarity values.
Let's blackbox your sentiment analysis stuff and reduce your problem to
Stealing this person's example dataframe with a text column to get started:
Now we want to define a function to apply to "contents" and store the result in a new column. For this, we can use
pd.Series.apply()
:You can do this for your both of your columns,
title_sentiment
anddescription_sentiment
.