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的主要内容,如果未能解决你的问题,请参考以下文章

python-matplotlib函数

stata怎么做时间序列

Python-matplotlib:调整坐标轴位置标签位置和标签方向,以及X轴刻度标签位置

是否可以为气泡图制作图例?

Python-Matplotlib 18 注释

Python-Matplotlib 19 文字 [r]