如何更改直方图条的颜色? [复制]
Posted
技术标签:
【中文标题】如何更改直方图条的颜色? [复制]【英文标题】:How do I change the color of histogram bars? [duplicate] 【发布时间】:2021-12-25 01:34:52 【问题描述】:我确定在某个地方有这个问题的答案,但我在任何地方都找不到。
如何通过另一组数据为直方图条着色,使条看起来像这样...
唯一的区别是条形高度不同。
【问题讨论】:
请发布您的尝试和数据样本以重现它。 我在网上找到了这张图片。这不是我的代码@ImSo3K 为了帮助您解决问题,您至少需要提供一些数据供我们使用,您的尝试失败也不会受到伤害。 请注意,这是条形图,不是直方图。 【参考方案1】:如果使用 matplotlib 模块,条形图有一个颜色参数。在此参数中,您可以更改颜色。这是我编辑的 matplotlib.org 中的一些代码示例,用于向您展示。
import matplotlib.pyplot as plt
labels = ['G1', 'G2', 'G3', 'G4', 'G5']
men_means = [20, 35, 30, 35, 27]
women_means = [25, 32, 34, 20, 25]
men_std = [2, 3, 4, 1, 2]
women_std = [3, 5, 2, 3, 3]
width = 0.35 # the width of the bars: can also be len(x) sequence
fig, ax = plt.subplots()
ax.bar(labels, men_means, width, yerr=men_std, label='Men', color = 'blue')
ax.bar(labels, women_means, width, yerr=women_std, bottom=men_means,
label='Women', color = 'pink')
ax.set_ylabel('Scores')
ax.set_title('Scores by group and gender')
ax.legend()
plt.show()
此代码将导致图表链接
Bar Chart Color Example
有很多不同的颜色可供选择。这是 matplotlib 可用颜色的链接。
https://matplotlib.org/stable/gallery/color/named_colors.html
【讨论】:
以上是关于如何更改直方图条的颜色? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 facet_grid 和文本位置更改直方图的颜色?