peter2000 commited on
Commit
ed1552a
1 Parent(s): de5a6d2

Update appStore/sdg_analysis.py

Browse files
Files changed (1) hide show
  1. appStore/sdg_analysis.py +1 -1
appStore/sdg_analysis.py CHANGED
@@ -92,7 +92,7 @@ def app():
92
  )
93
 
94
  # Create and generate a word cloud image:
95
- text = ' '.join(word for word in df["Keyword/Keyphrase"]
96
  wordcloud = WordCloud().generate(text)
97
 
98
  # Display the generated image:
 
92
  )
93
 
94
  # Create and generate a word cloud image:
95
+ text = ' '.join([str(word) for word in df["Keyword/Keyphrase"]])
96
  wordcloud = WordCloud().generate(text)
97
 
98
  # Display the generated image: