两个图表在图例上共享相同的标签

时间:2015-02-24 19:01:05

标签: python matplotlib

我绘制了最佳拟合线和标记点。我希望他们能够分享相同的传奇标签。

以下是图表的错误视图:

enter image description here

最小例子:

import matplotlib.pyplot as plt

plt.figure()
plt.plot([0,7,8,9],[10,11,12,14], '-', label = '1')
plt.plot([1,2,3],[4,5,6], 'ro', label = '1')
plt.legend()
plt.show()

0 个答案:

没有答案