d0r1h commited on
Commit
496312d
1 Parent(s): 438eb58

Update wordcloudplot.py

Browse files
Files changed (1) hide show
  1. 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 ='white', colormap='Paired',
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')