Spaces:
Runtime error
Runtime error
Update appStore/sdg_analysis.py
Browse files- 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:
|