[파이썬] 워드클라우드 - wordcloud 모듈
from wordcloud import WordCloud font = './sample/SeoulNamsanM.ttf' result = 'wordcloud.png' dict_data = {'소음': 15,'없다': 9,'조용하다': 8, '좋다': 7, '적다': 5, '소리': 4,'자다': 3,'있다': 3, '걱정': 3, '좀': 3, '작다': 2, '정말': 2, '쓰다': 2, '않다': 2,'차다': 1, '원룸': 1, '시끄럽다': 1, '애기': 1, '만족': 1, '진동': 1, '설치': 1, '사용': 1, '시간': 1, '생각': 1} wc = WordCloud(max_words=40, font_path=font, background_color='white') wc.gene..
2021.01.14