달나라 노트

Python Pandas : shape (DataFrame의 행/열 개수(DataFrame 크기) 반환) 본문

Python/Python Pandas

Python Pandas : shape (DataFrame의 행/열 개수(DataFrame 크기) 반환)

CosmosProject 2021. 6. 11. 01:01
728x90
반응형

 

 

 

 

pandas의 shape은 DataFrame에 적용해서 해당 DataFramedml 행/열(row/column) 개수를 tuple의 형태로 반환해줍니다.

 

 

 

shape의 syntax는 다음과 같습니다.

DataFrame.shape

 

 

 

 

 

import pandas as pd

dict_test = {
    'col1': [1, 2, 3, 4, 5],
    'col2': ['a', 'b', 'c', 'd', 'e'],
    'col3': [6, 7, 8, 9, 10]
}

df_test = pd.DataFrame(dict_test)
print(df_test)
print(df_test.shape)



-- Result
   col1 col2  col3
0     1    a     6
1     2    b     7
2     3    c     8
3     4    d     9
4     5    e    10

(5, 3)

 

위 예시를 보면 Test용 DataFrame은

5개의 행(row)과

3개의 열(column)을 가지고 있습니다.

 

따라서 df_test.shape의 결과로

(5, 3)이라는 tuple이 반환되었습니다.

 

 

 

 

 

 

 

 

728x90
반응형
Comments