gpt4 book ai didi

python - 在python中绘制从数据点到零轴的垂直线

转载 作者:太空宇宙 更新时间:2023-11-04 07:17:14 24 4
gpt4 key购买 nike

我想绘制从我的数据集的每个点到零轴的垂直线。目前情节看起来像这样:

values = [0.0, 0.2, 0.0,  0.4, 1.4, 0.5]
times = [1, 4, 10, 12, 14, 20]
plt.plot(values,times,'o')
plt.show()

如何绘制垂直线?我在文档 axvline 中找到了,但是它在整个图表中画了垂直线,我不想要它:

xcoords = [0.22058956, 0.33088437, 2.20589566]
for xc in xcoords:
plt.axvline(x=xc)

最佳答案

使用stem

最简单的解决方案是使用 matplotlib.pyplot.stem

import matplotlib.pyplot as plt
values = [0.0, 0.2, 0.0, 0.4, 1.4, 0.5]
times = [1, 4, 10, 12, 14, 20]
plt.stem(times,values)
plt.show()

enter image description here

关于python - 在python中绘制从数据点到零轴的垂直线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38172903/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com