반응형
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
- PANDAS
- Github
- 파이썬
- Java
- Redshift
- Apache
- hive
- PySpark
- array
- google apps script
- matplotlib
- GIT
- PostgreSQL
- Kotlin
- math
- Excel
- SQL
- Google Excel
- Google Spreadsheet
- Tkinter
- Python
- numpy
- list
- django
- string
- Mac
- dataframe
- gas
- c#
Archives
- Today
- Total
달나라 노트
Python Pandas & openpyxl : to_excel startcol, startrow (Data position 정하기) 본문
Python/Python Pandas
Python Pandas & openpyxl : to_excel startcol, startrow (Data position 정하기)
CosmosProject 2024. 2. 26. 22:20728x90
반응형
pandas의 to_excel에서 startcol, startrow 옵션을 이용하면 어느 위치에 DataFrame을 위치시킬지 결정할 수 있습니다.
import pandas as pd
dict_test = {
'col1': [1, 2, 3],
'col2': ['a', 'b', 'c'],
'col3': [1234, 2817, 209183],
}
df_test = pd.DataFrame(dict_test)
xlsx_writer = pd.ExcelWriter('test.xlsx', engine='openpyxl')
df_test.to_excel(xlsx_writer, sheet_name='test1', startcol=2, startrow=3)
xlsx_writer.close()
위 코드의 결과는 다음과 같습니다.
DataFrame이 C4 셀을 시작으로 입력되어 있습니다.
to_excel의 옵션의 startcol, startrow를 보면 다음과 같습니다.
startcol=2 -> index = 2인 column
startrow=3 -> index = 3인 row
부터 데이터를 입력하라는 의미입니다.
column index, row index는 0부터 시작합니다.
따라서 column은
Column A -> Column index = 0
Column B -> Column index = 1
Column C -> Column index = 2
...
이렇게 되고,
row는
Row 1 -> Column index = 0
Row 2 -> Column index = 1
Row 3 -> Column index = 2
...
이렇게 됩니다.
따라서
startcol=2 -> index = 2인 column
startrow=3 -> index = 3인 row
위 내용은 C4 cell을 의미하죠.
그래서 결과가 C4 cell부터 입력이 되어 있는 것입니다.
728x90
반응형
'Python > Python Pandas' 카테고리의 다른 글
Comments