「 matplotlib 」 一覧

matplotlib のグラフ作成と gnuplot との対応 比較

起動方法 gnuplot コマンドで $ gnuplot とすれば起動できる。 初期設定ファイルは gnuplotrc にある。 gnuplotrc の場所の見つけ方(macの場合) https:// …

no image

matplotlib で、矢印を描く方法

2021/10/06   -matplotlib
 

arrowprops のパラメータは次を参考にして設定できる。 https://matplotlib.org/stable/api/_as_gen/matplotlib.patches.FancyAr …

no image

matplotlib で、グラフ内に注釈ラベルをつける方法

2021/10/06   -matplotlib
 

annotate を使う 例 import numpy as np import matplotlib.pyplot as plt ax = plt.figure().add_subplot() th …

no image

matplotlib のプロットスクリプト内で計算する方法

2021/10/06   -matplotlib
 

gnuplot の場合 gnuplot では、plot “data.txt” u 1:($2*2)などと書くと、 数値を加工(データ値を使った計算)を行った結果をグラフ化するこ …

no image

matplotlib で、x軸・y軸の目盛りを反対方向につけたい場合。

2021/07/04   -matplotlib, python3
 ,

デフォルトでは、x軸はグラフの下に、y軸は左側につけられる。 例 import numpy as np from matplotlib import pyplot as plt x = np.lins …

no image

matplotlib で目盛りに文字を使用する方法

2021/07/04   -matplotlib, python3
 ,

文字に tex の記法を使って数式を入力することもできる。 例 import numpy as np from matplotlib import pyplot as plt x = np.linsp …

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 …