我有一堆点要使用matplotlib绘制。对于每个点(a,b),我想在Y [0,b]上绘制线X = a。有什么办法可以实现吗?
```我有一堆点要使用matplotlib绘制。对于每个点(a,b),我想在Y [0,b]上绘制线X = a。有什么办法可以实现吗?
```stem
图绘制最简单的解决方案是使用matplotlib.pyplot.stem
函数。
import matplotlib.pyplot as plt
x = [1. , 2., 3.5]
y = [2.3, 4., 6.]
plt.xlim(0,4)
plt.stem(x,y)
plt.show()
你只需要使用两个端点来绘制每条线。 对于Y在[0,b]中的垂直线X = a,其端点为(x,y)=(a,0)和(a,b)。 因此:
# make up some sample (a,b): format might be different to yours but you get the point.
import matplotlib.pyplot as plt
points = [ (1.,2.3), (2.,4.), (3.5,6.) ] # (a1,b1), (a2,b2), ...
plt.hold(True)
plt.xlim(0,4) # set up the plot limits
for pt in points:
# plot (x,y) pairs.
# vertical line: 2 x,y pairs: (a,0) and (a,b)
plt.plot( [pt[0],pt[0]], [0,pt[1]] )
plt.show()
会得到类似以下的结果: