1次元データの表示

参考

matplotlib: グラフ描画 https://matplotlib.org/stable/index.html

mplot3d: 3d描画 https://matplotlib.org/mpl_toolkits/mplot3d/tutorial.html

seaborn: matplotlibをきれいに見せるラッパー https://seaborn.pydata.org/

matplotlib tutorial: https://matplotlib.org/stable/tutorials/index.html

1Dデータを作成する

シンプルにプロットする

3Dプロットと作法を同じにした普通プロット

複数のグラフを並べる

https://matplotlib.org/stable/index.html

プロットのパラメータを調節する

https://matplotlib.org/stable/index.html

軸やラベルの表示パラメータを調節する

https://matplotlib.org/stable/index.html

matplotlibでグラフの文字サイズを大きくする https://qiita.com/Tatejimaru137/items/4ee6a73114d07d85bfd7

stdを表現する

fill_between https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.fill_between.html?highlight=fill_between#matplotlib.axes.Axes.fill_between

棒グラフ

ヒストグラムを計算する場合には、histを使えば自動で棒グラフが描画できる https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.hist.html?highlight=hist#matplotlib.axes.Axes.hist

エラーバー付き 棒グラフ

2つの棒グラフを並べて表示