python에서 Counter
를 이용하면 list로 받은 값들의 개수를 계산한 해서 아래와 같이 결과를 받을 수 있다.
from collections import Counter
Counter(['apple','red','apple','red','red','pear'])
Counter({'red': 3, 'apple': 2, 'pear': 1})
'우리는 개발자 > Data Science' 카테고리의 다른 글
[Python] embedding vector를 하나로 합치는 방법 (0) | 2019.09.07 |
---|---|
[Python] 두개의 벡터(vector) cosine similarity 계산하는 방법 (0) | 2019.09.07 |
[Python] 정규식 (Regex)를 이용해 한글만 추출하는 방법 (모음, 자음 구분) (0) | 2019.09.07 |
[Python] 한글 전처리 모음 (0) | 2019.09.07 |
[Python] datetime timedelta를 이용해 날짜 더하고 빼는 방법 (0) | 2019.09.07 |