📜  Python中的 Matplotlib.pyplot.hlines()

📅  最后修改于: 2022-05-13 01:54:56.136000             🧑  作者: Mango

Python中的 Matplotlib.pyplot.hlines()

Matplotlib是Python中用于数组二维图的惊人可视化库。 Matplotlib 是一个基于 NumPy 数组构建的多平台数据可视化库,旨在与更广泛的 SciPy 堆栈配合使用。

Matplotlib.pyplot.hlines()

Matplotlib.pyplot.hlines()用于在图形中从 xmin 到 xmax 的每个 y 处绘制水平线。

注意:除上述参数外,该方法还可以带一个数据关键字参数。还需要注意的是,作为数据传递的对象必须支持项目访问和成员资格测试。

示例 1:
from matplotlib import pyplot as plt
  
plt.hlines(y = 1, xmin = 1, xmax = 4)
  
plt.hlines(y = 1.6, xmin = 1.5, xmax = 4.5)
  
plt.hlines(y = 2, xmin = 2, xmax = 5)

输出 :
Matplotlib.pyplot.hlines()

示例 2:

from matplotlib import pyplot as plt
  
plt.hlines(y = 1, xmin = 1, xmax = 4, label ="black line")
  
plt.hlines(y = 1.6, xmin = 1.5, xmax = 4.5, color ='r')
plt.text(1, 1.6, 'Red line', ha ='left', va ='center')
  
plt.hlines(y = 2, xmin = 2, xmax = 5)

输出 :
Matplotlib.pyplot.hlines()