Last active
April 26, 2018 18:45
-
-
Save paulochf/829fda60d4e522474ced85d88b5e6918 to your computer and use it in GitHub Desktop.
More rows/columns/width in pandas table printings without truncation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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