반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- string
- 파이썬
- Excel
- django
- array
- hive
- Github
- GIT
- Java
- Mac
- PySpark
- Kotlin
- list
- dataframe
- math
- gas
- SQL
- c#
- Google Spreadsheet
- Python
- PANDAS
- Apache
- Tkinter
- Google Excel
- PostgreSQL
- Redshift
- google apps script
- numpy
- matplotlib
Archives
- Today
- Total
달나라 노트
Python Pandas : shape (DataFrame의 행/열 개수(DataFrame 크기) 반환) 본문
Python/Python Pandas
Python Pandas : shape (DataFrame의 행/열 개수(DataFrame 크기) 반환)
CosmosProject 2021. 6. 11. 01:01728x90
반응형
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
반응형
'Python > Python Pandas' 카테고리의 다른 글
Python Pandas : pandas.io.sql.get_schema (DataFrame 내용을 sql create table syntax로 만들기) (0) | 2021.06.13 |
---|---|
Python Pandas : values (DataFrame을 numpy arrary 형태로 변환하기) (0) | 2021.06.11 |
Python Pandas : melt (unpivot 가로 데이터를 세로 데이터로 변경) (0) | 2021.06.08 |
Python Pandas : dropna (NaN value가 있는 row/column 제거하기) (0) | 2021.06.08 |
Python Pandas : notna (누락값 여부 체크하기) (0) | 2021.03.18 |
Comments