개발 Tools/파이썬_Pandas & Numpy
파이썬 Pandas shape (행열 꼴)
전컴반
2023. 2. 23. 22:54
반응형
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)
반응형