😽
matplotlib の Marker でカスタムの文字を使用する
matplotlib の Marker でカスタムの文字を使用する
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.plot([1, 2, 3], [7, 8, 9], marker="$1$", label="1")
ax.plot([1, 2, 3], [13, 15, 18], marker="$a$", label="2")
ax.plot([1, 2, 3], [10, 12, 14], marker="$\\alpha$", label="3")
plt.legend()
plt.show()
参考
Markers created from TeX symbols
Discussion