no image

matplotlib でグラフの中に注釈の文字を書く方法

2021/07/04   -matplotlib, python3
 ,

annotate を使う。 例 import numpy as np from matplotlib import pyplot as plt x = np.linspace(-10,10,100) …

no image

matplotlib で、凡例を表示する位置を変更する方法

2021/07/04   -matplotlib, python3
 ,

凡例(legend)の表示位置を変更するには、axis の legend の loc を設定する。 次のリンクhttps://matplotlib.org/stable/api/_as_gen/mat …

no image

matplotlib で、軸に垂直・平行な線を書く方法

2021/07/03   -matplotlib, python3
 ,

axhline, axvline を使ってx,y軸に平行な線を描くことができる。 https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot …

no image

matplotlib で、y軸に二種類の軸を設定する方法

2021/07/03   -matplotlib, python3
 ,

y軸に、2種類のグラフを異なるスケールでプロットする。 matplotlib axes の twinx() を使う。 https://matplotlib.org/stable/api/_as_gen …

no image

matplotlib で、複数のグラフを簡単にプロットする方法

2021/07/03   -matplotlib, python3
 ,

変数を並べて書くと、次のように自動的に順番を理解してグラフを表示してくれる。 例 import numpy as np from matplotlib import pyplot as plt fro …

no image

matplotlib で、粗い刻みと細かい刻みの目盛りを表示する方法

2021/06/28   -matplotlib, python3
 ,

set_major_locator で粗い刻みの目盛りを調整する。 set_minor_locator で、細かい刻みの目盛りを調整する。 以下の例で set_major_formatter は、表示 …

no image

matplotlib の ax でx軸、y軸の端の値を設定する

2021/06/28   -matplotlib, python3
 ,

axes には、set_xlim として定義する。 例 import numpy as np from matplotlib import pyplot as plt x = np.linspace( …

no image

matplotlib で、x,y の軸上の数値を表示する方法

2021/06/28   -matplotlib, python3
 ,

ax の xtics と ytics を使って表示する。 詳細は次のドキュメントを参照。 https://matplotlib.org/stable/gallery/lines_bars_and_ma …

no image

matplotlib でエラーバーを設定する方法

2021/06/28   -matplotlib, python3
 ,

pyplot.errorbar を使って設定する。 オプションの詳細は https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.erro …

no image

matplotlib で、グラフのタイトルに上付き文字を入力する方法

2021/06/28   -matplotlib, python3
 ,

数学記号などで、グラフのタイトルに上付きの文字を入力したい場合がある。 その場合は次のように書いて設定できる。 例 import numpy as np from matplotlib import …