Python-Matplotlib 14 图例legend
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-Matplotlib 14 图例legend相关的知识,希望对你有一定的参考价值。
EG 1
import numpy as np import matplotlib.pyplot as plt y = np.arange(1, 5) plt.plot(y, y + 2, label=‘Normal‘) plt.plot(y, y + 3, label=‘Fast‘) plt.plot(y, y + 4, label=‘Faster‘) plt.legend() # hasn‘t this , can‘t show plt.legend([‘2‘,‘3‘,‘4‘]) # repeat set , will repace plt.show()
以上是关于Python-Matplotlib 14 图例legend的主要内容,如果未能解决你的问题,请参考以下文章