반응형
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
- GIT
- list
- Tkinter
- PySpark
- gas
- c#
- Excel
- dataframe
- math
- Apache
- Google Spreadsheet
- matplotlib
- PostgreSQL
- Google Excel
- PANDAS
- google apps script
- 파이썬
- Java
- hive
- array
- Python
- numpy
- string
- Redshift
- Mac
- Github
- django
- Kotlin
- SQL
Archives
- Today
- Total
달나라 노트
Python Pandas : to_clipboard (DataFrame 복사하기) 본문
728x90
반응형
Python Pandas에는 DataFrame을 복사하여 clipboard로 넣어주는 to_clipboard라는 기능을 제공합니다.
import pandas as pd
dict_test = {
'col1': [1, 2, 3, 4, 5],
'col2': [6, 7, 8, 9, 10],
'col3': [11, 12, 13, 14, 15]
}
df_test = pd.DataFrame(dict_test)
df_test.to_clipboard(sep='\t', index=False)
위처럼 Test용 DataFrame을 만든 후 to_clipboard를 적용시킵니다.
sep='\t'는 DataFrame의 column separator를 tab(\t)으로 하겠다는 뜻이고,
index=False는 DataFrame의 index 정보는 복사하지 않는다는 뜻입니다.
엑셀을 키고 붙여넣으면 위처럼 잘 복사될것입니다.
728x90
반응형
'Python > Python Pandas' 카테고리의 다른 글
Python Pandas : rolling (DataFrame window function) (0) | 2021.01.22 |
---|---|
Python Pandas : fillna (DataFrame에서 NaN값을 replace 하기) (0) | 2021.01.20 |
Python Pandas : isin (각각의 요소가 DataFrame 또는 Series에 존재하는지 파악) (0) | 2021.01.07 |
Python Pandas : sort_values (DataFrame의 정렬, DataFrame 정렬하기) (0) | 2021.01.06 |
Python Pandas : astype (DataFrame의 컬럼 Data type 바꾸기) & dtype(Series의 Data type 추출) (0) | 2021.01.06 |
Comments