워드 클라우드
-
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 ..