konlpy를 이용해 키워드 추출 ( Okt tagger)
from konlpy.tag import Okt
# Counter객체 : {'단어' :'빈도'..}
from collections import Counter
#konly의 형태소 분석기로 명사 단위 키워드 추출
nouns_tagger=Okt()
nouns=nouns_tagger.nouns(counter_corpus)
count=Counter(nouns)
키워드 다듬기 1 - 한 글자 키워드 제거
remove_char_counter=Counter({ x : count[x] for x in count if len(x) >1})
키워드 다듬기2- 불용어 사전 (stopwrods)