依赖模块

pip install matplotlib

示例代码

与x轴平行(水平线)

import matplotlib.pyplot as plt
plt.axhline(y=0.5)
plt.show()

在这里插入图片描述

import matplotlib.pyplot as plt
plt.axhline(y=0.5, xmin=0.3, xmax=0.7)
plt.show()

在这里插入图片描述

与y轴平行(竖直线)

import matplotlib.pyplot as plt
plt.axvline(x=0.5)
plt.show()

在这里插入图片描述

import matplotlib.pyplot as plt
plt.axvline(x=0.5, ymin=0.3, ymax=0.7)
plt.show()

在这里插入图片描述

引用参考

https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.axhline.html
https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.axvline.html

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐