I plotted data using the following code:
base = df.plot(color='white', edgecolor='lightgrey')
df2.plot(ax=base, marker='yellow', color='yellow', markersize=5);df3.plot(ax=base, marker='red', color='red', markersize=5);
style={'no-easement': 'yellow', 'easement': 'red'};
My question is how can I label the color as a description in the corner of the graph? Suppose: I want to level yellow color as A and Red color as B.