Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
matplotlib を使用して、グラフの凡例に字幕を付けたいと思います。これを行う代替手段はありますか?
どうも、
一番、
プロットされた各ラインの凡例が必要な場合は、次のようにすることができます。
plt.plot(x, y1, label='Line One') plt.plot(x, y2, label='Line Two') plt.legend(loc='best')
各labelキーワード引数は行のラベルを提供し、legend()コマンドは凡例を内部に含むボックスを作成します。オプションのloc引数 (場所) は、凡例ボックスが線の上に配置されないようにします。
label
legend()
loc