워드클라우드 결과 및 해석

월간데이콘에 연습과정으로 참가했다.

기본 코드

agenda = pdfplumber.open('/content/drive/MyDrive/2022/정책 시각화 대회/공약파일.pdf')
agenda_full = []
for i in range(횟수):
  agenda_full.append(agenda.pages[i].extract_text())
agenda_token = okt.nouns(str(agenda_full))
agenda_token_list = ''
for i in agenda_token:
  agenda_token_list += i+' '
wd = WordCloud(max_font_size=200,background_color="white",font_path='/content/drive/MyDrive/2022/malgun.ttf').generate(agenda_token_list)
fig = plt.figure()
plt.imshow(wd, interpolation='bilinear')
plt.axis('off')
wd.to_file(filename='/content/drive/MyDrive/2022/정책 시각화 대회/공약.jpg')

후보별 공약 주요 키워드

기호 1번 : 확대
기호 2번 : 지원
기호 3번 : 도입
기호 4번 : 추진
기호 5번 : 도입
기호 6번 : 폐지
기호 7번 : 국가
기호 8번 : 투표
기호 9번 : 지원
기호 10번 : 연금
기호 11번 : 방역
기호 12번 : 청년
기호 13번 : 청년
기호 14번 : 국가

좋은 웹페이지 즐겨찾기