Spaces:
Running
Running
Update wordcloudplot.py
Browse files- wordcloudplot.py +1 -1
wordcloudplot.py
CHANGED
@@ -24,7 +24,7 @@ def plot_wordcloud(input_text):
|
|
24 |
|
25 |
dictionary = Counter(clean_tokens)
|
26 |
wordcloud = WordCloud(width = 1000, height = 700,
|
27 |
-
background_color ='
|
28 |
min_font_size = 10, font_path= font).generate_from_frequencies(dictionary)
|
29 |
|
30 |
fig = plt.figure(figsize = (12, 8), facecolor = 'white')
|
|
|
24 |
|
25 |
dictionary = Counter(clean_tokens)
|
26 |
wordcloud = WordCloud(width = 1000, height = 700,
|
27 |
+
background_color ='black', colormap='Paired',
|
28 |
min_font_size = 10, font_path= font).generate_from_frequencies(dictionary)
|
29 |
|
30 |
fig = plt.figure(figsize = (12, 8), facecolor = 'white')
|