반응형
shape
데이터 프래임의 행열 꼴을 반환한다.
쉽게 말해, 몇 by 몇 행렬이냐 알 수 있다.
df.shape[0] 하면, 행의 수, df.shape[1]하면 열의 수를 알 수 있다.
import pandas as pd
df = pd.DataFrame([[0, 1, 2], [3, 4, 5]], index=["r0", "r1"], columns=["c0", "c1", "c2"])
print(df)
출력
c0 c1 c2
r0 0 1 2
r1 3 4 5
print(df.shape)
출력
(2, 3)
반응형
'개발 Tools > 파이썬_Pandas & Numpy' 카테고리의 다른 글
파이썬 Pandas describe (통계정보) (0) | 2023.02.23 |
---|---|
파이썬 Pandas info (요약 정보) (0) | 2023.02.23 |
파이썬 Pandas reset_index (행 초기화) (0) | 2023.02.23 |
파이썬 Pandas reindex (행 지정, 행 변경) (0) | 2023.02.23 |
파이썬 Pandas set_index ( 행열 지정, 행 변경) (0) | 2023.02.21 |
댓글