-
word cloudPython 2020. 3. 2. 10:25
python 코드는 jupyter notebook에서 작성하였습니다.
# wordcloud 패키지 설치하기
!pip install wordcloud# 패키지 로딩하기
import matplotlib.pyplot as plt
%matplotlib inline
from wordcloud import WordCloud# 텍스트 데이터 읽어오기
text = open("d:/deeplearning/textmining/constitution.txt").read()# 단어의 빈도를 자동으로 구해줌
wordcloud = WordCloud().generate(text)# 워드 클라우드 작성하기
plt.figure(figsize = (12, 12))
plt.imshow(wordcloud, interpolation = "bilinear")
plt.axis("off")
plt.show()# 글씨 크기를 조정한 후의 워드 클라우드 작성하기
wordcloud = WordCloud(max_font_size = 40).generate(text)
plt.figure(figsize = (12, 12))
plt.imshow(wordcloud, interpolation = "bilinear")
plt.axis("off")
plt.show()'Python' 카테고리의 다른 글
텍스트 구조적 군집분석 (0) 2020.03.02 텍스트 군집분석 (0) 2020.03.02 KoNLPy 패키지에서 제공하는 형태소 분석기 (0) 2020.02.27 nltk 패키지의 어근동일화(stemming) (0) 2020.02.27 Jupyter Notebook에 있는 이미지 복사하기 (0) 2018.12.11