matplotlib 在次y轴上绘图时的单个图例

qfe3c7zg  于 2023-10-24  发布在  其他
关注(0)|答案(1)|浏览(93)

我有以下代码来绘制Pandas DataFrame的数据:

df = pd.read_csv('data.csv')

plt.figure()
plt.title('Title')

ax1 = df.R.plot(style='b', label='Suc. Rate')
ax1.set_ylabel('Success Rate / Coherence')

ax2 = df.C.plot(style='r', label='Coherence')

ax3 = df.S.plot(secondary_y=True, style='g', label='Size')
ax3.set_ylabel('Lexicon Size')

plt.legend()

图是正确的,但只有最后一行标签为Size显示在图例中。我如何在一个图例中获得所有3行?

gajydyqb

gajydyqb1#

你需要从每个Axes中获取图例handleslabels,然后将所有句柄和标签的列表传递给图例。你可以使用ax.get_legend_handles_labels()来做到这一点:

import matplotlib.pyplot as plt
import pandas as pd

# Some sample data
df = pd.DataFrame({'C' : [4,5,6,7], 'S' : [10,20,30,40],'R' : [100,50,-30,-50]})

fig=plt.figure()
plt.title('Title')

ax1 = df.R.plot(style='b', label='Suc. Rate')
ax1.set_ylabel('Success Rate / Coherence')

ax2 = df.C.plot(style='r', label='Coherence')

ax3 = df.S.plot(secondary_y=True, style='g', label='Size')
ax3.set_ylabel('Lexicon Size')

handles,labels = [],[]
for ax in fig.axes:
    for h,l in zip(*ax.get_legend_handles_labels()):
        handles.append(h)
        labels.append(l)

plt.legend(handles,labels)

plt.show()

相关问题