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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hola
Estoy usando Power BI Desktop e intentando hacer un análisis sentimental con el siguiente código python:
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']
Cuando ejecuto esto en PowerQuery->Secuencia de comandos de Python, obteré este error:
DataSource.Error: ADO.NET: error de script de Python. |
¿Puede alguien ayudarme a averiguar cuál es el problema?
Solved! Go to Solution.
HI @michaelbend ,
Cuando prueba la secuencia de comandos de Python por python 3.9.Then :
Parece haber un problema con el guión en sí.
SyntaxError: EOF inesperado durante el análisis
¡Ojalá sea útil para ti!
Saludos
Lucien
Tal vez pueda ayudarte, estoy familiarizado con la programación de Python en Power BI.
Puedes contactarme en: xiaoqing.gao@cn.abb.com
HI @michaelbend ,
Cuando prueba la secuencia de comandos de Python por python 3.9.Then :
Parece haber un problema con el guión en sí.
SyntaxError: EOF inesperado durante el análisis
¡Ojalá sea útil para ti!
Saludos
Lucien
¿No hay respuesta?
chichón
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!