Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pyplot: single legend when plotting on secondary y-axis

I have the following code to plot the data of a 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()

The plots are correct, but only the last line with label Size is shown in the legend. How can I get all 3 lines in a single legend?

like image 590
JNevens Avatar asked Dec 19 '22 22:12

JNevens


1 Answers

You need to get the legend handles and labels from each Axes, and then pass lists of all the handles and labels to legends. You can use ax.get_legend_handles_labels() to do this:

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()

enter image description here

like image 118
tmdavison Avatar answered Jan 05 '23 14:01

tmdavison