数学記号などで、グラフのタイトルに上付きの文字を入力したい場合がある。
その場合は次のように書いて設定できる。
例
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()