Jupyter Notebook
公式サイト:
使い方
参考:
Jupyter Notebook を使ってみよう | Python でデータサイエンス
データ分析の必需品 Jupyter Notebook の魅力とは | DeepAge
データ分析で欠かせない! Jupyter Notebook の使い方 初心者向け | TechAcademy マガジン
初心者必見!データサイエンスにオススメの Jupyter Notebook とは? | 侍エンジニア塾ブログ
Jupyter Notebook の導入から可視化まで | CodeZine
機械学習の現場で重宝する多機能 Web エディタ Jupyter Notebook の基本的な使い方 | @IT
Jupyter ノートブックで気軽に Python をこね回そう | マイナビニュース
VSCode で使う
参考:
VSCode からJupyter Notebook を使ってみよう | @IT
ノートブックを git 管理する
# .git/config [filter "clean_ipynb"] clean = jq --indent 1 --monochrome-output '. + if .metadata.git.suppress_outputs | not then { cells: [.cells[] | . + if .cell_type == \"code\" then { outputs: [], execution_count: null } else {} end ] } else {} end' smudge = cat
# .git/info/attributes *.ipynb filter=clean_ipynb
ドキュメント:
参考:
Jupyter Notebook の実質コードのみを Git リポジトリ管理するには | どこでも見れるメモ帳
Keeping IPython notebooks under Git version control – GitHub Gist
ドキュメント
Documentation | Project Jupyter [Official]