반응형
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
- GIT
- PANDAS
- Github
- PostgreSQL
- 파이썬
- dataframe
- c#
- array
- numpy
- hive
- Tkinter
- Google Excel
- Kotlin
- list
- Excel
- Redshift
- Python
- Java
- Apache
- django
- string
- Mac
- Google Spreadsheet
- matplotlib
- math
- google apps script
- gas
- PySpark
- SQL
Archives
- Today
- Total
목록Python/Python Pandas (77)
달나라 노트
Python Pandas : Series와 DataFrame
Python Pandas Python에서 Pandas library는 아마 엑셀같은 형태의 데이터를 다루기 위해 가장 많이 사용되는 library중 하나가 아닐 까 싶네요.저도 pandas를 거의 필수적으로 사용하고있다보니 상당히 유용한 library인 것은 틀림없는 것 같습니다. Pandas의 자료구조 : Series, DataFrame Pandas에는 대표적으로 Series와 DataFrame이라는 두 가지의 자료구조가 존재합니다. import pandas as pd list_item = [1, 2, 3, 4] # Pandas의 Series가 될 list 선언 se_item = pd.Series(list_item) # list를 이용하여 Series 생성 print(se_item) print(type..
Python/Python Pandas
2020. 10. 29. 19:37