1
1

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 3 years have passed since last update.

[メモ]ColabでDataFrameの中身をインタラクティブに見たい時

Posted at

ちょっと調べたらわかることだが、一応メモ

DataFrameの中身をページ送りしながら確認したい場合は、Colabのセルの頭に下のマジックコマンドをいれる

%unload_ext google.colab.data_table

もしくはライブラリを呼び出す(細かな設定をしたい場合)

from google.colab import data_table

data_table.DataTable(data, include_index=False, num_rows_per_page=10)

おしまい

参考としたColab notebook

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?