「 matplotlib 」 一覧
-
matplotlib のグラフ作成と gnuplot との対応 比較
2023/01/18 -gnuplot, matplotlib
gnuplot, matplotlib, python起動方法 gnuplot コマンドで $ gnuplot とすれば起動できる。 初期設定ファイルは gnuplotrc にある。 gnuplotrc の場所の見つけ方(macの場合) https:// …
-
2021/10/06 -matplotlib
matplotlibarrowprops のパラメータは次を参考にして設定できる。 https://matplotlib.org/stable/api/_as_gen/matplotlib.patches.FancyAr …
-
2021/10/06 -matplotlib
matplotlibannotate を使う 例 import numpy as np import matplotlib.pyplot as plt ax = plt.figure().add_subplot() th …
-
2021/10/06 -matplotlib
matplotlibgnuplot の場合 gnuplot では、plot “data.txt” u 1:($2*2)などと書くと、 数値を加工(データ値を使った計算)を行った結果をグラフ化するこ …
-
matplotlib で、x軸・y軸の目盛りを反対方向につけたい場合。
2021/07/04 -matplotlib, python3
matplotlib, python3デフォルトでは、x軸はグラフの下に、y軸は左側につけられる。 例 import numpy as np from matplotlib import pyplot as plt x = np.lins …
-
2021/07/04 -matplotlib, python3
matplotlib, python3文字に tex の記法を使って数式を入力することもできる。 例 import numpy as np from matplotlib import pyplot as plt x = np.linsp …
-
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 …