-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgen_wordcloud.py
More file actions
38 lines (29 loc) · 1003 Bytes
/
Copy pathgen_wordcloud.py
File metadata and controls
38 lines (29 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from os import path, getcwd
from PIL import Image
import numpy as np
import matplotlib.pyplot as plt
## shameless ripoff of http://amueller.github.io/word_cloud/auto_examples/masked.html
from wordcloud.wordcloud import WordCloud
from wordcloud import STOPWORDS
d = path.dirname(getcwd()) + '/data'
# Read the whole text.
text = open(path.join(d, 'distinct_locations_redundant.txt')).read()
# read the mask image
# taken from
# http://www.stencilry.org/stencils/movies/alice%20in%20wonderland/255fk.jpg
masked_back = np.array(Image.open(path.join(d, "india-map.png")))
stopwords = set(STOPWORDS)
stopwords.add("said")
wc = WordCloud(background_color="white", max_words=2000, mask=masked_back,
stopwords=stopwords)
# generate word cloud
wc.generate(text)
# store to file
wc.to_file(path.join(d, "tweets.png"))
# show
plt.imshow(wc, interpolation='bilinear')
plt.axis("off")
plt.figure()
plt.imshow(masked_back, cmap=plt.cm.gray, interpolation='bilinear')
plt.axis("off")
plt.show()