Skip to content

Instantly share code, notes, and snippets.

@bruno-uy
Last active July 7, 2023 13:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bruno-uy/5203b0ac66397bdbffea3abbbec6984f to your computer and use it in GitHub Desktop.
Save bruno-uy/5203b0ac66397bdbffea3abbbec6984f to your computer and use it in GitHub Desktop.
Set pandas display options
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", None)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment