Last active
March 14, 2024 10:02
-
-
Save izikeros/b18783793e34849c08539602b586a02b to your computer and use it in GitHub Desktop.
[wide pandas dataframe] Enable displaying wide dataframes. Utilize wide screen space. #pandas
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
# Pandas wide display | |
pd.set_option('display.max_columns', None) | |
pd.set_option('display.expand_frame_repr', False) | |
pd.set_option('max_colwidth', -1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment