반응형
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
- numpy
- Kotlin
- SQL
- Python
- Mac
- array
- list
- Java
- Redshift
- dataframe
- matplotlib
- 파이썬
- PySpark
- string
- PostgreSQL
- gas
- Excel
- django
- Apache
- Tkinter
- math
- Google Excel
- google apps script
- hive
- Github
- Google Spreadsheet
- PANDAS
- GIT
- c#
Archives
- Today
- Total
목록set_index (1)
달나라 노트
Python Pandas : set_index (DataFrame의 index 변경하기)
DataFrame은 기본적으로 index가 0부터 1씩 증가하는 정수로 생성됩니다. 다만 set_index를 이용하면 DataFrame의 index를 원하는대로 변경할 수 있습니다. Syntax set_index(keys=[k1, k2, ...], inplace=True/False, drop=True/False) 사용법은 위와 같습니다. keys=[k1, k2, ...] index로 설정할 list 형태의 데이터입니다. index는 보통 1줄이지만 2줄 3줄 또는 그 이상이 될 수도 있습니다. (다중 index가 가능하다는 의미입니다.) k1은 index 한 줄 이라고 보시면 됩니다. 예를들어 총 10행의 데이터를 가진 DataFrame의 index를 변경하려면 k1의 자리에 [1, 2, 3, 4, 5,..
Python/Python Pandas
2021. 7. 15. 00:31