• home
  • about
  • 全ての投稿
  • ソフトウェア・ハードウェアの設定のまとめ
  • 分析関連のまとめ
  • ヘルスケア関連のまとめ
  • 生涯学習関連のまとめ

jupyter itables

date: 2023-09-06 excerpt: jupyter itablesの使い方

tag: jupyterkagglepython


jupyter itablesの使い方

概要

  • デフォルトのデータフレームの表示はペジネーションをサポートしない
  • itablesというライブラリでペジネーションが可能
  • デフォルトで1ページあたり10行になる

インストール

$ pip install itables

具体例

import pandas as pd
import itables
from vega_datasets import data

df: pd.DataFrame = data.iris()

itables.show(df)

Google Colab

  • example-itables

参考

  • Interactive Tables


jupyterkagglepython Share Tweet