반응형
Pycharm에서 Python을 실행 후 결과값이 너무 길어 Row와 Column의 값이 생량되어 "..."형태로 잘리는 경우가 있습니다.
원인은 Pandas의 기본 max_rows와 max_colwidth가 각 60과 50으로 되어 있어 그 이상이 넘어가면 결과가 ... 형태로 변경이 되게됩니다.
import pandas as pd
print(pd.get_option('display.max_rows'))
print(pd.get_option('display.max_colwidth'))
이럴경우
display.max_colwidth와 display.max_rows속성을 set_option을 이용하여 조절하면 됩니다. None인 경우 모든 결과를 추출하며 숫자를 넣어주면 그에 맞게 조정이 됩니다.
import pandas as pd
print(pd.get_option('display.max_rows'))
print(pd.get_option('display.max_colwidth'))
pd.set_option('display.max_rows', None)
pd.set_option('display.max_colwidth', None)
pd.set_option('display.max_rows', 1000)
pd.set_option('display.max_colwidth', 800)
반응형
'Pandas' 카테고리의 다른 글
Pandas Sidetable: 판다스 똑똑하게 사용하기 - Freq, Counts, Missing, Subtotal (0) | 2021.04.16 |
---|---|
데이타 결측치(누락값, 결측값) 처리하기 : fillna (ffill, bfill), dropna, isnull (0) | 2020.12.07 |
Pandas에서 시간, 날짜 다루기 - to_datetime만 잘 다루면 끝! (0) | 2020.11.28 |
Pandas, read_excel()을 이용한 데이타 읽은 후 K-Means에 적용하기: 실습 (0) | 2020.11.27 |
Pandas 기초 통계를 위한 groupby 응용 - nunique()와 matplot로 그래프 간단하게 그리기 (0) | 2020.11.14 |
Pandas 데이터 추출, 활용 하기 : loc, iloc 활용 [슬라이싱] (0) | 2020.10.14 |
Pandas 데이터 추출, 활용 하기 : loc, iloc 활용 [행단위] (0) | 2020.10.09 |
Pandas(판다스)로 데이터 핸들링 : 기본 : info(), describe(), value_counts(), head() (1) | 2020.10.04 |