FLYNNLABAboutMeCodingActivityStudy 2024초등수학
pandas dataframe display setting in jupyter notebook
python, pandas, jupyter, notebook

jupyter notebook 에서 pandas dataframe 출력 설정

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