gpt4 book ai didi

python - Matplotlib - 已装箱数据的阶梯直方图

转载 作者:太空狗 更新时间:2023-10-29 16:57:30 25 4
gpt4 key购买 nike

我正在尝试获取包含已分箱数据的直方图。我一直在尝试为此使用 bar(),但我似乎无法弄清楚如何使其成为阶梯状直方图 like this one from the examples ,而不是填充直方图。

enter image description here

最佳答案

您可以通过偏移数据并改用 plot 来作弊:

from matplotlib import pyplot
import numpy as np

#sample data:
x = np.arange(30)
y = np.cumsum(np.arange(30))
#offset the x for horizontal, repeat the y for vertical:
x = np.ravel(zip(x,x+1))
y = np.ravel(zip(y,y))

pyplot.plot(x,y)
pyplot.savefig('plt.png')

剧情:

enter image description here

关于python - Matplotlib - 已装箱数据的阶梯直方图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11297030/

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