inflearn logo
강의

Course

Instructor

Python and Pandas for Beginners: Quick and Easy Guide to the Core

Pandas's operation functions (sum, divide, cumulative)

divide 함수 축 질문

67

SB

2 asked

0

안녕하세요! pandas 연산기능 강의에서 이해가 가지 않는 부분이 있어 질문 드립니다.

df.divide(df.sum(axis=1), axis=0)

위 코드에서 열 축을 따라 왼쪽에서 오른쪽으로 나눗셈이 이루어지는데, 왜 axis=0 인가요? sum과 동일한 방향이면 똑같이 axis=1 이어야 할 것 같은데.. 헷갈립니다.

python pandas

Answer 1

0

communityai8509

안녕하세요, 인프런 AI 인턴입니다. Questions about pandas operations are a common topic for those learning Python and pandas.

The divide function in pandas, when used as df.divide(df.sum(axis=1), axis=0), can indeed be a bit confusing at first glance. Here’s an explanation:

  1. df.sum(axis=1): This operation calculates the sum of each row, returning a Series with the row sums. The axis=1 parameter specifies that the operation is performed row-wise.

  2. df.divide(..., axis=0): The divide function is used to perform element-wise division, and it divides each element of the DataFrame by the corresponding element in another DataFrame or Series. In this case, we divide each element in the original DataFrame by the corresponding row sum obtained in the previous step. Setting axis=0 means that we are aligning the Series with the rows of the DataFrame. Even though you’re dividing along rows, the alignment is happening row-wise, hence axis=0.

The axis parameter in divide() refers to the alignment direction, rather than the direction of the operation itself. It helps to think of it as: “Using axis=0 aligns the operation along the rows rather than down the columns, which is why it’s set that way.”

For more insight, you can check out similar discussions in these posts:

Both links detail axes manipulations with pandas, specifically through examples with the apply function, which might be helpful to understand this concept.

저는 질문자님의 이해를 돕고자 지식공유자님의 기존 답변을 참고하여 유사한 답변 링크를 추천해드리고 있습니다. 현재 베타 기능으로 답변이 만족스럽지 않을 수 있는 점 양해 부탁드립니다. 🙏 추가적으로 궁금한 점이 있으시면, 이어서 질문해 주세요. 곧 지식공유자께서 답변해 주실 것입니다.

SSL 발급할때 HTTP로 진행하는 이유가 궁금합니다.

0

6

2

단일표본검정, 샤피로검정, 윌콕슨검정

0

15

2

강의자료 다운로드 여부

0

10

1

2-14.\x02 안보임 관련

0

14

0

문제에 첨부된 예시와 실제 출력된 샘플 비교

0

12

2

원핫 인코딩 관련

0

24

2

오늘 처음으로 자동매매가

1

21

2

타겟 분리

0

20

2

Id 삭제

0

22

2

roc_auc_score 질문: 작업형2 모의문제3 09분 48초

0

22

2

원핫인코딩 코드 질문

0

19

2

map 함수 사용 필수적인가요

0

28

2

conda create --name study python=3.11 접속 안됨

0

12

1

모의투자 현황

1

24

2

수강 기한 연장 문의드립니다.

0

32

2

34강 평가지표

0

29

2

103강 작업2형 전처리(레이블인코딩 부분) 오류

0

21

3

작업형1_section14 문의

0

17

2

파이썬 연습문제 6번 관련 문의

0

73

1

쥬피터노트북이 안깔려요

0

459

1

pandas 연습문제 4번 관련

0

356

1

Pandas 연습문제 4. apply 활용 질문

0

571

1

마크다운 blank line

0

820

1

내국인 생활인구.csv 다운위치

0

604

1