import collections
print (collections.Counter(['가', '나', '다', '라', '가', '가']))
print (collections.Counter(['가', '나', '다', '라', '가', '가','가','가자','다']))
for k, v in collections.Counter(['가', '나', '다', '라', '가', '가','가','가자','다']).items() :
print(k, v)
list_a = ['가', '나', '다', '라', '가', '가','사']
list_b = ['가', '나', '다', '라', '가', '가']
list_c = list_a + list_b
print(list_c)
collections.Counter(list_c)
collections.Counter(list_c).most_common(2)
'인프런 - 강의 > 청와대 청원 데이터 시각화' 카테고리의 다른 글
10 - 실제 데이터 가공하기 (0) | 2020.03.02 |
---|---|
9 - 텍스트 가공하기 (0) | 2020.03.02 |
7 - 자연어 처리 라이브러리 konlpy 설치하기 (0) | 2020.03.02 |
6 - 데이터 엑셀에서 읽기 (0) | 2020.03.01 |
5 - 데이터 엑셀에 저장해놓기 (0) | 2020.03.01 |