wordcloud 라이브러리 개요

1510 단어
- 어운은 단어를 기본 단위로 하여 더욱 직관적이고 예술적인 전시 텍스트
wordcloud 라이브러리는 단어 구름을 WordCloud의 대상으로 삼는다. - wordcloud.WordCloud()는 텍스트에 대응하는 단어 구름을 나타냅니다. - 텍스트에서 단어가 나타나는 빈도와 같은 매개 변수에 따라 단어 구름을 그릴 수 있습니다.
w = wordcloud.WordCloud()

- WordCloud 객체 기반 - 매개변수 구성, 텍스트 로드, 출력 파일
import wordcloud

w = wordcloud.WorldCloud()

w.generate("Python and WordCloud")
w.to_file("outfile.png")

단계1: 대상 함수 설정 단계2: 단어 구름 텍스트 불러오기 단계3: 출력 단어 구름 파일
wordcloud 1> 구분: 공백으로 단어 2> 통계: 단어 출현 횟수 및 3> 글꼴 필터: 통계에 따라 번호 4> 레이아웃: 색상 환경 사이즈 설정
w = wordcloud.WorldCloud()
#width
#height
#min_font_size
#max_font_size
#font_step
#font_path  
#max_words  , 200
#stop_words  , 
#mask
from scipy.misc import imread
mk = imread("pic.png")
w = wordcloud.WorldCloud(mask=mk)

background_color

import wordcloud
txt = "life is short, you need python"
w = wordcloud.WordCloud(\ background_color = "white")
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon May 14 23:51:42 2018

@author: eyan422
"""

import jieba
import wordcloud

txt = " , , 。。。​​"
w = wordcloud.WordCloud(width=1000, \
                        font_path='/Library/Fonts/Arial Unicode.ttf', height=700)
w.generate(" ".join(jieba.lcut(txt)))

print(jieba.lcut(txt))

w.to_file("pywcloud2.png")

좋은 웹페이지 즐겨찾기