1pd.set_option('display.max_columns', None) # or 1000
2pd.set_option('display.max_rows', None) # or 1000
3pd.set_option('display.max_colwidth', -1) # or 199
1pd.set_option('display.max_columns', 200)
2pd.set_option('display.max_rows', 100)
3pd.set_option('display.min_rows', 100)
4pd.set_option('display.expand_frame_repr', True)
5