■ Counter 클래스를 사용해 데이터 빈도를 조사하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
import collections counter = collections.Counter(["a", "b", "c", "a", "b", "a"]) print(counter) # Counter({"a": 3, "b": 2, "c": 1}) print() print(counter["a"]) # 3 print() print(counter.most_common()) # [("a", 3), ("b", 2), ("c", 1)] print() for key, value in dict(counter).items(): print(key, value) """ a 3 b 2 c 1 """ |