행위

판다스(Pandas) 출력 옵션 설정

라이언의 꿀팁백과

Ryanyang (토론 | 기여)님의 2025년 6월 15일 (일) 19:57 판 (새 문서: 상황에 따라 컬럼과 행이 일부 잘려서 보이는 경우, 아래 명령어로 옵션 설정을 한다. <syntaxhighlight lang="python3" line="1" start="1"> pd.set_option('display.max_columns', None) pd.set_option('display.max_rows', None) pd.set_option('display.float_format', '{:.10f}'.format) </syntaxhighlight> 분류:판다스 분류:파이썬 분류:Python 분류:Pandas 분류:빅데이터분석기사 분류:주피터노트북 분류:Jupyt...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

상황에 따라 컬럼과 행이 일부 잘려서 보이는 경우, 아래 명령어로 옵션 설정을 한다.

pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)
pd.set_option('display.float_format', '{:.10f}'.format)