Python Wordcloud only shows variable name

121 Views Asked by At

I'm using spyder to make a wordcloud from customers comments about a company, I have a data frame with all the information, the problem I have is that when I show the Word Cloud I only get the variable name, "Comment"

About Comments variable: there are some nan, I have multiple words in one register since it is a comment

Word Cloud

Maybe I have a simple error in the script but I don't know what is wrong.

base=pd.read_csv(r"C:\xxx.csv",encoding = "latin",sep=';')
base.Comment=base.Comment.astype(str)
base['Comment'] = base['Comment'].apply(lambda x: re.sub('[¡!@#$:).;,¿?&]', '', x.lower()))
base['Comment']  = base['Comment'].apply(lambda x: re.sub('  ', ' ', x))

wordcloud= WordCloud(background_color='salmon', stopwords=stop_words_sp).generate('Attention')
plt.figure(figsize=(20,10))
plt.axis('off')
plt.title("NPS Word Cloud")
plt.imshow(wordcloud)
plt.show()

I appreciate any help,

0

There are 0 best solutions below