4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Python】Jupyterでpandasのdf(DataFrame)の中身を全て表示する方法

Last updated at Posted at 2022-10-13

背景

  • Jupyter NotebookやJupyter Labでは、pandasのdf(DataFrame)の中身を表示されることがよくあります。
  • デフォルトでは、最大表示行列数が指定されているため、dfが省略表示され中身が確認できないことがあります。
  • この記事では、Jupyterでdfの中身を全て表示する設定の方法を紹介します。

目標

  • Jupyterでpandasのdf(DataFrame)の中身を全て表示できるようになる。

pd.set_optionを使用し表示数の上限を変更

  • dfの表示数は、pandasの設定値の一部となっています。
  • 添付の画像のように、pd.set_optionを使用することでdfの表示の上限を変更できます。
dfの表示数の上限を撤廃する設定コード
#行の表示数の上限を撤廃
pd.set_option('display.max_rows', None)

#列の表示数の上限を撤廃
pd.set_option('display.max_columns', None)

df_all_show.png

参考資料

個人ブログ

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?