方法1: 凡例のハンドルを非表示にする
import matplotlib.pyplot as plt
# グラフを作成
plt.plot([1, 2, 3], [4, 5, 6], label='データ1')
plt.plot([1, 2, 3], [2, 4, 6], label='データ2')
# 凡例を表示
plt.legend()
# 凡例のハンドルを非表示にする
handles, labels = plt.gca().get_legend_handles_labels()
plt.legend(handles=[], labels=labels)
# グラフを表示
plt.show()
方法2: 凡例を削除する
import matplotlib.pyplot as plt
# グラフを作成
plt.plot([1, 2, 3], [4, 5, 6], label='データ1')
plt.plot([1, 2, 3], [2, 4, 6], label='データ2')
# 凡例を削除
plt.legend().remove()
# グラフを表示
plt.show()
これらの方法を使用すると、matplotlibを使って生成したグラフの凡例からハンドルを削除することができます。それぞれの方法は、凡例のハンドルを非表示にするか、凡例自体を完全に削除するかの違いがあります。
以上が、Pythonで凡例からすべてのハンドルを削除する方法の例です。これにより、凡例をよりカスタマイズしたり、グラフの見た目を改善したりすることができます。