Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 27 | 28 | 29 | 30 | 31 |
Tags
- colab
- 판다스
- python
- 데이터프레임
- 파이썬
- leetcode
- sklearn
- 물 만날 물고기
- KNIME 데이터 분석
- HackerRank
- MYSQL
- DB
- SQL
- 태블로
- Revising the Select Query II
- KNIME
- power-bi
- Tableau
- 코딩테스트
- sorted()
- 나임
- pyinstaller
- 해커랭크
- 프로그래머스
- 코랩
- 데이터분석솔루션
- 물만날물고기
- pandas
- 텐서플로우
- 리스트
Archives
- Today
- Total
물 만날 물고기
[python] Counter() 함수 본문
🔍 예상 검색어
더보기
# Counter() 함수 사용법
# python 개수 셀 때 사용하는 코드
해당 포스팅은 Counter() 함수 사용 예제에 대해서 정리하였습니다.
Counter는 파이썬의 내장 모듈인 collections 모듈에 포함되어 있는 함수로, iterable(반복 가능한)한 객체 내부의 원소들의 개수를 셀 때 사용됩니다.
1. 문자 개수 셀 때
from collections import Counter
s = "apple"
counter_s = Counter(s)
print(counter_s)
>>> 출력결과
# Counter({'p': 2, 'a': 1, 'l': 1, 'e': 1})
2. 내부 요소의 개수 셀 때
from collections import Counter
lst = [1, 2, 3, 1, 2, 1, 4, 5, 2, 2]
counter_lst = Counter(lst)
print(counter_lst)
>>> 출력결과
# Counter({2: 4, 1: 3, 3: 1, 4: 1, 5: 1})
3. 클래스 개수 셀 때 (불균형 확인)
from sklearn.datasets import load_iris
from collections import Counter
iris = load_iris()
y = iris.target
class_distribution = Counter(y)
print(class_distribution)
>>> 출력결과
# Counter({0: 50, 1: 50, 2: 50})
'Python > 파이썬 (python)' 카테고리의 다른 글
[python] 피클 pickle - 파일 저장하기 및 불러오기 (0) | 2023.04.26 |
---|---|
[python] 경고메시지 비활성화 (0) | 2023.04.09 |
[python] 두 리스트의 교집합, 합집합, 차집합 (0) | 2023.03.30 |
[Python] sklearn을 설치했는데도 No module named 'sklearn' 에러가 발생할 때 (0) | 2023.02.16 |
[python] sorted() 함수에서 reverse = True, False 의 차이 (0) | 2023.02.01 |