개발

[Python] 모든 열, 모든 행 보기

Cho et al. 2022. 10. 7.

쓸 때 마다 구글링하게 되는데, 왜 이리 안외워지는지.

 

import pandas as pd
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)

댓글