본문 바로가기

Python/Pandas

[Python]Pandas 표시 되는 row, column 개수 변경하기

pandas로 데이터를 불러 올때 행이나 열 개수가 긴 경우 생략되어 보이는 경우가 발생한다.

아래 옵션을 이용하여 필요한 만큼 설정하여 값을 확인할 수 있다.

column

pd.set_option('display.max_column', 숫자)
pd.set_option('display.max_column', None)

Row

pd.set_option('display.max_row', 숫자)
  • 숫자: None으로 입력시 모든 열이 출력된다.