我有一个代码片段,它在相同的轴上生成2个seaborn.histogram
图,按hue
分割,并注解如下:
使用hue
参数,两个直方图被适当地着色为不同的颜色,并且每个bin中的数据计数也被适当地注解。但是,我还可以对每个bin中的**注解/计数着色吗?
当前MRE:
np.random.seed(8)
t = pd.DataFrame(
{
'Value': np.random.uniform(low=100000, high=500000, size=(50,)),
'Type': ['B' if x < 6 else 'R' for x in np.random.uniform(low=1, high=10, size=(50,))]
}
)
ax = sns.histplot(data=t, x='Value', bins=5, hue='Type', palette="dark")
ax.set(title="R against B")
ax.xaxis.set_major_formatter(FormatStrFormatter('%.0f'))
for p in ax.patches:
ax.annotate(f'{p.get_height():.0f}\n',
(p.get_x() + p.get_width() / 2, p.get_height()), ha='center', va='center', color='crimson')
plt.show()
1条答案
按热度按时间lf5gs5x21#
您正在查找
matplotlib.axes.Axes.get_facecolor
* 方法 *。这样,您就可以将每个注解的颜色与相应的历史记录的颜色相匹配。
输出: