Notice
Recent Posts
Recent Comments
Link
초보 개발자의 일기
Pandas - Grouping 본문
그룹화
groupby
예시를 위한 데이터프레임 생성
df = pd.DataFrame({'A': ['foo', 'bar', 'foo', 'bar',
'foo', 'bar', 'foo', 'foo'],
'B': ['one', 'one', 'two', 'three',
'two', 'two', 'one', 'three'],
'C': np.random.randn(8),
'D': np.random.randn(8)}
)
df
'A' 열을 기준으로 grouping.sum
df.groupby('A').sum()
'A', 'B'열을 기준으로 grouping.sum
df.groupby(['A', 'B']).sum()
※ 10 minutes to pandas를 바탕으로 한 학습 기록입니다 ※
'소소한 공부 일기 > 데이터 분석' 카테고리의 다른 글
Pandas - 엑셀 관련 판다스 (0) | 2021.05.09 |
---|---|
Pandas - Reshaping (0) | 2021.05.09 |
Pandas - Merge (0) | 2021.05.09 |
Pandas - Operations (0) | 2021.05.08 |
Pandas - Missing data (0) | 2021.05.08 |
Comments