Created
September 22, 2016 14:01
-
-
Save philippreston/325fa04ec065e4b58e0f9bca157d5c84 to your computer and use it in GitHub Desktop.
Set the display for easier panda debugging
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
# For Panda Debugging | |
pd.set_option('display.float_format', lambda x: '%.0f' % x) | |
pd.set_option('display.max_rows', 500) | |
pd.set_option('display.max_columns', 500) | |
pd.set_option('display.width', 1000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment