matplotlib 中的多色条形图
我在 matplotlib 中有一个图表(显示正确),但我希望每个条形有不同的颜色(尽管仍然是相同的条形图)。这可能吗?
谢谢
I have a graph in matplotlib (that displays correctly), but I was hoping to have a different colour for each bar (still the same bar graph though). Is this possible?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在图形创建时着色:
如果您想在图形创建后更改第一个条形的颜色,则请注意,您获得了
lines
中的条形列表:然后,只需设置其颜色:
If you color at graph creation time:
If you want to change color of first bar after graph creation, then note that you got a list of your bars in
lines
:Then, just simply set its color: