Matplotlib
インストール
入手:
ドキュメント:
Installation | Matplotlib Documentation [Official]
参考:
Matplotlib – インストール方法 | Python 超入門速報
導入
ドキュメント:
Quick Start Guide | Matplotlib Documentation [Official]
参考:
Matplotlib – 特徴と使い方をわかりやすく解説! | YutaKa の Python 教室
使い方
ドキュメント:
User Guide | Matplotlib Documentation [Official]
基本
参考:
徹底解説/基本操作を総まとめ! | YutaKa の Python 教室
軸
参考:
軸周り完璧マスターガイド/軸・軸目盛・目盛り線の設定 | YutaKa の Python 教室
ラベル
ドキュメント:
Text | Matplotlib Documentation [Official]
pyplot.text | Matplotlib Documentation [Official]
参考:
plt.text – よく使うもの徹底解説/テキスト表示をマスター! | YutaKa の Python 教室
色
ドキュメント:
Specifying Colors | Matplotlib Documentation [Official]
List of Named Colors | Matplotlib Documentation [Official]
Choosing Colormaps | Matplotlib Documentation [Official]
matplotlib.colors | Matplotlib Documentation [Official]
例:
Color Demo | Matplotlib Documentation [Official]
参考:
色の指定方法/超簡単な一文字指定からカラーマップの使い方まで | YutaKa の Python 教室
凡例
ドキュメント:
Legend Guide | Matplotlib Documentation [Official]
pyplot.legend | Matplotlib Documentation [Official]
参考:
plt.legend – 凡例の位置とスタイル設定完璧ガイド! | YutaKa の Python 教室
How to change legend font size with matplotlib.pyplot? – Stack Overflow
散布図
ドキュメント:
pyplot.scatter | Matplotlib Documentation [Official]
参考:
散布図を徹底解説!基本設定からバブルチャートまで | YutaKa の Python 教室
ヒストグラム
メソッド
hist
: 1次元のヒストグラムhist2d
: 2次元のヒストグラム
ドキュメント:
pyplot.hist | Matplotlib Documentation [Official]
pyplot.hist2d | Matplotlib Documentation [Official]
参考:
ヒストグラム徹底攻略!作成も見た目の設定も全解説 | YutaKa の Python 教室
3次元グラフ
参考:
サブプロット
参考:
subplot – 使い方徹底図解/一つの図に複数グラフを描く | YutaKa の Python 教室
subplots – 使い方/Figure と Axes を同時生成! | YutaKa の Python 教室
日本語フォント
参考:
日本語の表示方法/簡単にいろんな日本語フォントを使う方法 | YutaKa の Python 教室
アニメーション
参考:
ArtistAnimation – 徹底解説! アニメーション作成入門編 | YutaKa の Python 教室
バックエンド
ドキュメント:
Backends | Matplotlib Documentation [Official]
Jupyter Notebook で使う
バックエンドをインラインモードに切り替えて使用する。
%matplotlib inline import matplotlib.pyplot as plt
インタラクティブモードに切り替えて使用する。
%matplotlib notebook import matplotlib.pyplot as plt
参考:
matplotlib inline の謎解明!「書けと言われたので書いています」から卒業 | YutaKa の Python 教室
API
ドキュメント:
API Reference | Matplotlib Documentation [Official]
チュートリアル
Tutorials | Matplotlib Documentation [Official]
FAQ
Frequently Asked Questions | Matplotlib Documentation [Official]
リンク
ドキュメント
Documentation | Matplotlib [Official]
リポジトリ
matplotlib/matplotlib – GitHub