Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
How to set dataframe display options for IPython and Jupyter notebook
import pandas as pd
pd.set_option('display.max_rows', 500)
pd.set_option('display.max_columns', 500)
pd.set_option('display.width', 1000)
pd.set_option('display.max_colwidth', -1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment