gpt4 book ai didi

matplotlib - matplotlib 中的未填充条形图

转载 作者:行者123 更新时间:2023-12-04 03:45:16 32 4
gpt4 key购买 nike

对于直方图,有一个简单的内置选项 histtype='step' .如何制作相同风格的条形图?

最佳答案

[阅读评论后添加答案]
将可选关键字设置为 fill=False对于条形图:

import matplotlib.pyplot as plt

plt.bar(bins[:5], counts[:5], fill=False, width=60) # <- this is the line

plt.title("Number of nodes with output at timestep")
plt.xlabel("Node count")
plt.ylabel("Timestep (s)")

会给:
enter image description here

或使用 plt.plot带关键字 ls='steps' :
plt.plot(bins[-100:], counts[-100:], ls='steps')
plt.title("Number of nodes with output at timestep")
plt.xlabel("Node count")
plt.ylabel("Timestep (s)")

enter image description here

关于matplotlib - matplotlib 中的未填充条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11892175/

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