gpt4 book ai didi

graph - Pyplot-正值​​和负值的条形图

转载 作者:行者123 更新时间:2023-12-04 02:45:36 27 4
gpt4 key购买 nike

我希望负条朝下,正条朝上,x轴(0线)正好在它们之间通过。我试过了

chart = fig.bar(x, negative_data, width=35, color='r')
ax2 = plt.gca().twinx()
ax2.bar(x, positive_data, width=35, color='b')


但是,相反,我合并了红色和白色的条,两个条都朝下。似乎数组negative_data / positive_data仅指定条形的高度,但是如何指定方向?我需要一些东西来指定每个酒吧的顶部的坐标。

另外,当用户调整图形大小时,如何使宽度合理,可能是动态的?

这是有问题的宽度的示例:

x = [250, 1500, 2750, 4250, 6000, 8500, 13200]
negative_data = [0, 0, 0, 0, 0, 0, 0]
positive_data = [3, 0, 0, 0, 1, 0, 0]


我怎样才能使这些图看起来好看?

最佳答案

您无需添加双轴,可以在同一轴上绘制两个条形图,如下所示:

x = range(7)
negative_data = [-1,-4,-3,-2,-6,-2,-8]
positive_data = [4,2,3,1,4,6,7,]

fig = plt.figure()
ax = plt.subplot(111)
ax.bar(x, negative_data, width=1, color='r')
ax.bar(x, positive_data, width=1, color='b')




宽度为1的条形图将填充轴,并在调整大小时随图形缩放。

关于graph - Pyplot-正值​​和负值的条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25550308/

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