python画竖线_学习笔记92—python画横竖分界线
1.使⽤matplotlib.pyplot的hlines和vhlines
>#导⼊需要模块
import numpy as np
import matplotlib.pyplot as plt
>#这是蝴蝶曲线部分
df = sns.load_dataset('iris')
t = np.arange(0.0, 12*np.pi, 0.01)
x = np.sin(t)*(np.e**np.cos(t) - s(4*t)-np.sin(t/12)**5)
y = np.cos(t)*(np.e**np.cos(t) - s(4*t)-np.sin(t/12)**5)
魔兽世界字体plt.figure(figsize=(8,6))
plt.plot(x,y,color='blue',linewidth = '3')
>##这是分割线部分
plt.hlines(0, -3, 3,color="red")#横线
李呈媛图片plt.vlines(0, -2, 3,color="red")#竖线
Python
matplotlib.pyplot.hlines(y, xmin, xmax)表⽰横线,参数(y的值,横线开始横坐标,横线结束横坐标)
matplotlib.pyplot.vlines(y, xmin, xmax)表⽰竖线,参数(x的值,竖线开始纵坐标,竖线结束纵坐标)韩星成贤娥
2.使⽤matplotlib.pyplot的axhlines和axvhlines
>#导⼊模块
本文标签:横线 竖线 接触 坐标轴 部分 需要
import numpy as np
import matplotlib.pyplot as plt
>#这是蝴蝶曲线部分
df = sns.load_dataset('iris')
t = np.arange(0.0, 12*np.pi, 0.01)
x = np.sin(t)*(np.e**np.cos(t) - s(4*t)-np.sin(t/12)**5)
y = np.cos(t)*(np.e**np.cos(t) - s(4*t)-np.sin(t/12)**5)
plt.figure(figsize=(8,6))
plt.plot(x,y,color='blue',linewidth = '3')
>##这是分割线部分武夷山好玩吗
plt.axhlines(0, -3, 3,color="red")#横线
plt.axvlines(0, -2, 3,color="red")#竖线
告白的话Python
matplotlib.pyplot.axhlines(y, xmin, xmax)表⽰横线,参数(y的值,横线开始横坐标,横线结束横坐标)
matplotlib.pyplot.axvlines(y, xmin, xmax)表⽰竖线,参数(x的值,竖线开始纵坐标,竖线结束纵坐标)
总结
matplotlib.pyplot.hlines和matplotlib.pyplot.axhlines都能够画出横线,但是从图中我们可以看到它们是有区别的,hline直线没有接触到坐标轴,axhline接触到了坐标轴。
邓超孙俪近况同理vlines和axvlines同样是垂直线,⼀个不会接触坐标轴,⼀个接触坐标轴。
请根据需要选⽤不同的matplotlib.pyplot函数。
本文发布于:2024-11-05 12:06:52,感谢您对本站的认可!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
- 上一篇: 语文专题 正确使用词语实词、虚词
- 下一篇: 标准横线格A4打印版
发布评论