matplotlib python3

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

投稿日:

数学記号などで、グラフのタイトルに上付きの文字を入力したい場合がある。

その場合は次のように書いて設定できる。

import numpy as np
from matplotlib import pyplot as plt

x = [1,2,3,5]
y = [3,7,9,1]
size = 100

fig, ax = plt.subplots()
ax.set(title=r'data of $e^x \sin \theta$',ylabel=r'$e^x \sin \theta$',xlabel=r'$e^\Omega$')
ax.scatter(x,y,size,'blue')

plt.show()

結果

-matplotlib, python3
-,

執筆者:


comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

関連記事

no image

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

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

no image

python3 でリストの要素を None に変更する方法

要素を None に変更すればよい。 例 arr = [1,2,3,4,5] print(str(arr)) for i in range(len(arr)): arr[i] = No …

no image

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

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

no image

matplotlib でcsv ファイルを読み込むとき、最初の行をスキップする方法

numpy の loadtxt で読み込む行を省略したい場合 スキップしたい行を # 等の記号でコメントアウトして、 loadtxt の comments = ‘#’ とすると …

no image

python3 で整数の割り算、商と余りを求める方法

floor divisionを使う。 例 a = 15 // 7 b = 15 % 7 print(a) print(b) 結果 2 1