워드클라우드 결과 및 해석
월간데이콘에 연습과정으로 참가했다.
기본 코드
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번 : 국가
Author And Source
이 문제에 관하여(워드클라우드 결과 및 해석), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@smarabou0/워드클라우드-결과-및-해석저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)