Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
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
Archives
Today
Total



GitHub Contribution
Loading data ...
관리 메뉴

초보 개발자의 일기

Pandas - Grouping 본문

소소한 공부 일기/데이터 분석

Pandas - Grouping

Da다 2021. 5. 9. 16:00

그룹화 

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