Skip to content

Instantly share code, notes, and snippets.

@liguoqinjim
Created June 17, 2021 12:56
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 liguoqinjim/2df7a44294927c3d816477abef80c08e to your computer and use it in GitHub Desktop.
Save liguoqinjim/2df7a44294927c3d816477abef80c08e to your computer and use it in GitHub Desktop.
pandas 配置
pd.set_option('display.max_rows', 5000) # 最多显示数据的行数
pd.set_option('display.max_columns', None)
pd.set_option('display.width', 5000)
pd.set_option('display.unicode.ambiguous_as_wide', True)
pd.set_option('display.unicode.east_asian_width', True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment