Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi there,
I'm using Power BI Desktop and trying to make a sentimental analysis with the following python code:
import pandas as pd
from nltk.sentiment.vader import SentimentIntensityAnalyzer
import re
from googletrans import Translator
translatedList = []
for index, row in dataset.iterrows():
translator = Translator()
newrow = copy.deepcopy(row)
try:
translated = translator.translate(row['zin'], dest='en')
newrow['translated'] = translated.text
except Exception as e:
print(e)
continue
translatedList.append(newrow)
dataset_new = pd.DataFrame(translatedList)
SentimentAnalysis = SentimentIntensityAnalyzer()
dataset['sentiment score'] = dataset['translated'].apply(lambda x: SentimentAnalysis.polarity_scores(x)['compound']
When I run this in PowerQuery->Python Script, I get this error:
DataSource.Error: ADO.NET: Python script error. |
Can someone help me figuring out what the problem is?
Solved! Go to Solution.
HI @Anonymous ,
When I test your python script by python 3.9.Then :
There seems to be a problem with the script itself.
SyntaxError: unexpected EOF while parsing
Wish it is helpful for you!
Best Regards
Lucien
Maybe I can help you, I'm familiar with python programming in Power BI.
You can contact me at: xiaoqing.gao@cn.abb.com
HI @Anonymous ,
When I test your python script by python 3.9.Then :
There seems to be a problem with the script itself.
SyntaxError: unexpected EOF while parsing
Wish it is helpful for you!
Best Regards
Lucien
No answer?
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 57 | |
| 43 | |
| 40 | |
| 21 | |
| 17 |