Der Versuch, eine Legende zu meinem Konturplot hinzuzufügen: Python 3.5 matplotlib Konturplot Legende
Hier ist der relevante Code Teil i mit Problem habe:
plt.figure()
CS = plt.contourf(gg, cc, zz_miss)
CS.clabel()
lbl = CS.cl_cvalues
plt.xlabel('gamma')
plt.ylabel('C = 1/lambda')
plt.legend((lbl), loc= 'upper right')
plt.show()
Die Legende Etiketten der Legende sind richtig, aber warum sind die entsprechenden Farben verschmiert und fehl am Platz?