-
2021/07/04 -matplotlib, python3
matplotlib, python3annotate を使う。 例 import numpy as np from matplotlib import pyplot as plt x = np.linspace(-10,10,100) …
-
2021/07/04 -matplotlib, python3
matplotlib, python3凡例(legend)の表示位置を変更するには、axis の legend の loc を設定する。 次のリンクhttps://matplotlib.org/stable/api/_as_gen/mat …
-
2021/07/03 -matplotlib, python3
matplotlib, python3axhline, axvline を使ってx,y軸に平行な線を描くことができる。 https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot …
-
2021/07/03 -matplotlib, python3
matplotlib, python3y軸に、2種類のグラフを異なるスケールでプロットする。 matplotlib axes の twinx() を使う。 https://matplotlib.org/stable/api/_as_gen …
-
matplotlib で、複数のグラフを簡単にプロットする方法
2021/07/03 -matplotlib, python3
matplotlib, python3変数を並べて書くと、次のように自動的に順番を理解してグラフを表示してくれる。 例 import numpy as np from matplotlib import pyplot as plt fro …
-
matplotlib で、粗い刻みと細かい刻みの目盛りを表示する方法
2021/06/28 -matplotlib, python3
matplotlib, python3set_major_locator で粗い刻みの目盛りを調整する。 set_minor_locator で、細かい刻みの目盛りを調整する。 以下の例で set_major_formatter は、表示 …
-
matplotlib の ax でx軸、y軸の端の値を設定する
2021/06/28 -matplotlib, python3
matplotlib, python3axes には、set_xlim として定義する。 例 import numpy as np from matplotlib import pyplot as plt x = np.linspace( …
-
matplotlib で、x,y の軸上の数値を表示する方法
2021/06/28 -matplotlib, python3
matplotlib, python3ax の xtics と ytics を使って表示する。 詳細は次のドキュメントを参照。 https://matplotlib.org/stable/gallery/lines_bars_and_ma …
-
2021/06/28 -matplotlib, python3
matplotlib, python3pyplot.errorbar を使って設定する。 オプションの詳細は https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.erro …
-
matplotlib で、グラフのタイトルに上付き文字を入力する方法
2021/06/28 -matplotlib, python3
matplotlib, python3数学記号などで、グラフのタイトルに上付きの文字を入力したい場合がある。 その場合は次のように書いて設定できる。 例 import numpy as np from matplotlib import …