「 python3 」 一覧
-
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 …
-
matplotlib でグラフ表示ウィンドウの画面上の位置を自由に設定する方法
2021/06/28 -matplotlib, python3
matplotlib, python3matplotlib.use(‘TkAgg’) としておき、 get_current_fig_manager().window.wm_geometry(“+20+50”) として、(+20+50)のと …
-
matplotlib で2種類のcsvファイルをプロットする方法
2021/06/26 -matplotlib, python3
matplotlib, python3data1.csv と、data2.csv の2つのファイルを散布図としてプロットするには次のようにする。 例 import numpy as np from matplotlib import py …