본문 바로가기
Python Library/Pandas

[Pandas] DataFrame Option

by goatlab 2022. 8. 11.
728x90
반응형
SMALL

DataFrame Option

 

pandas에는 DataFrame의 디스플레이, 데이터 동작 등과 관련된 전역 동작을 구성하고 사용자 지정하는 옵션 API가 있다.

 

  • get_option() / set_option() : 단일 옵션의 값을 가져오거나 설정한다.
  • reset_option() : 하나 이상의 옵션을 기본값으로 재설정한다.
  • describe_option() : 하나 이상의 옵션에 대한 설명을 인쇄한다.
  • option_context() : 실행 후 이전 설정으로 되돌아가는 옵션 세트로 코드 블록을 실행한다.
import pandas as pd

df = pd.read_csv("C:/Users/ex.csv", sep=";")
df

pd.set_option('display.max_row', 500) # 행 500개까지 출력
pd.set_option('display.max_columns', 100) # 열 100개까지 출력
df

 

https://pandas.pydata.org/pandas-docs/stable/user_guide/options.html

 

Options and settings — pandas 1.4.3 documentation

Warning Enabling this option will affect the performance for printing of DataFrame and Series (about 2 times slower). Use only when it is actually required. Some East Asian countries use Unicode characters whose width corresponds to two Latin characters. I

pandas.pydata.org

 

728x90
반응형
LIST

'Python Library > Pandas' 카테고리의 다른 글

[Pandas] shuffle  (0) 2022.10.17
[Pandas] xlsx (엑셀 파일)  (0) 2022.08.18
[Pandas] pandas.read_csv  (0) 2022.08.11
[Pandas] 데이터 전처리 (3)  (0) 2022.07.24
[Pandas] 데이터 전처리 (2)  (0) 2022.07.24