Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GINK03/87971beb5acb68ffff5b6f97ab9511dc to your computer and use it in GitHub Desktop.
Save GINK03/87971beb5acb68ffff5b6f97ab9511dc to your computer and use it in GitHub Desktop.
jupyterでpandasの省略されて出力されるのを防ぐ

pd.set_optionsを変更する

# COL数
import pandas as pd
pd.set_option("display.max_columns", 120)
# 幅
from IPython.core.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment