😽

matplotlib の Marker でカスタムの文字を使用する

2024/05/25に公開

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

https://matplotlib.org/stable/gallery/lines_bars_and_markers/marker_reference.html#markers-created-from-tex-symbols

Discussion