Created
May 31, 2020 15:34
-
-
Save ecdedios/3db6ecdb370d30040be1516bf2ed8697 to your computer and use it in GitHub Desktop.
Importing pandas and setting the display options.
This file contains 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 | |
# to print out all the outputs | |
from IPython.core.interactiveshell import InteractiveShell | |
InteractiveShell.ast_node_interactivity = "all" | |
# set display options | |
pd.set_option('display.max_columns', None) | |
pd.set_option('display.max_rows', None) | |
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