I just want to delete the Label from the Legend:
example (i just copy pasted the plot from an other stackoverflow problem)Plot example
The question is, is there a way to delete the color Labels in the legend?
So that I'll just see "first" , "second" , "third" without the blue,green,red color label.
My problem is, i just want to use 1 Value in the Legend ( float ) and i dont want to have a label. The Value should be outside of the plot like in this example. I use the Legend with this code:
PC= np.pearsonr(x,y)
plt.scatter(x,y,color="#3F5D7D",label='PK: %.3f'%(PC[0]))
plt.legend(prop={'size':12},bbox_to_anchor=(1.1, 1.1))