Skip to content

Instantly share code, notes, and snippets.

@paulochf
Last active April 26, 2018 18:45
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 paulochf/829fda60d4e522474ced85d88b5e6918 to your computer and use it in GitHub Desktop.
Save paulochf/829fda60d4e522474ced85d88b5e6918 to your computer and use it in GitHub Desktop.
More rows/columns/width in pandas table printings without truncation
import pandas as pd
pd.set_option("display.max_rows", 200)
pd.set_option("display.max_columns", 100)
pd.set_option("display.max_colwidth", 200)
## Reset to defaults
# pd.reset_option("^display")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment