これは、カラーマップに従って線の色を設定するで与えられた回答に関連する派生的な質問です。ここでは、カラーバーに従って色で複数の線をプロットする優れたソリューションが提案されました (以下のコードと出力画像を参照)。
次のように、プロットされた各行に関連付けられた文字列を格納するリストがあります。
legend_list = ['line_1', 'line_2', 'line_3', 'line_4']
プロットの右上隅にあるボックス (最初の文字列は最初にプロットされた線などに対応する) にこれらの文字列を凡例として追加したいと思います。どうすればこれを行うことができますか?
必要に応じて使用しないこともできますLineCollection
が、カラーバーとそれに関連付けられた各行の色を保持する必要があります。
コードと出力
import numpy
import matplotlib.pyplot as plt
from matplotlib.collections import LineCollection
# The line format you curently have:
lines = [[(0, 1, 2, 3, 4), (4, 5, 6, 7, 8)],
[(0, 1, 2, 3, 4), (0, 1, 2, 3, 4)],
[(0, 1, 2, 3, 4), (8, 7, 6, 5, 4)],
[(4, 5, 6, 7, 8), (0, 1, 2, 3, 4)]]
# Reformat it to what `LineCollection` expects:
lines = [zip(x, y) for x, y in lines]
z = np.array([0.1, 9.4, 3.8, 2.0])
fig, ax = plt.subplots()
lines = LineCollection(lines, array=z, cmap=plt.cm.rainbow, linewidths=5)
ax.add_collection(lines)
fig.colorbar(lines)
# Manually adding artists doesn't rescale the plot, so we need to autoscale
ax.autoscale()
plt.show()