반응형
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 | 31 |
Tags
- 파이썬
- dataframe
- Mac
- c#
- Python
- Google Excel
- google apps script
- PostgreSQL
- Java
- Redshift
- string
- hive
- Tkinter
- array
- Excel
- list
- SQL
- gas
- PANDAS
- GIT
- numpy
- Google Spreadsheet
- PySpark
- Github
- math
- django
- Kotlin
- Apache
- matplotlib
Archives
- Today
- Total
목록info (1)
달나라 노트
Python Pandas : info() (DataFrame 정보 불러오기, Series 정보 불러오기)
Pandas의 info() method는 DataFrame이나 Series의 정보를 보여줍니다. 바로 예시를 봅시다. import pandas as pd df_test = pd.DataFrame( { 'date': [ 20230101, 20230101, 20230101, 20230101, 20230102, 20230102, 20230102, 20230103, 20230103, ], 'item': [ 1, 1, 2, 2, 1, 1, 1, 5, 7, ], 'item_name': [ 'a', 'a', 'b', 'b', 'a', 'a', 'a', 'e', 'g', ] } ) print(df_test) print(df_test.info()) -- Result date item item_name 0 20230101..
Python/Python Pandas
2023. 10. 24. 23:28