peter2000 commited on
Commit
72b973d
1 Parent(s): 5a7f930

Update appStore/sdg_analysis.py

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