# Day_04_01_freq 빈도를 알아보는 페이지 토큰의 워드 빈도수에 따라서 분류할 수 있음 import nltk import collections import matplotlib.pyplot as plt import operator # webtext 코퍼스에 있는 wine 파일을 토큰으로 구성하세요 wine = nltk.corpus.webtext.raw('wine.txt') wine = wine.lower() tokens = nltk.regexp_tokenize(wine, r'\w+') # print(tokens[:10]) # print(nltk.corpus.stopwords.fileids()) stopwords = nltk.corpus.stopwords.words('english') # 불용어(..