美文网首页
matplotlib 柱状图加数值标注

matplotlib 柱状图加数值标注

作者: 来到了没有知识的荒原 | 来源:发表于2022-09-05 19:59 被阅读0次

matplotlib 柱状图加数值文本标注

x = data2["charge"]
y = data2["f1"]
sup = data2["sup"]


plt.figure(figsize = (10, 8))
plt.bar(x, y)

for a, b, t in zip(x, y, sup):
    plt.text(a, b, t, ha='center', va='bottom', fontsize=15)

plt.xticks(fontsize = 15, rotation=45)
plt.yticks(fontsize = 15)

相关文章

网友评论

      本文标题:matplotlib 柱状图加数值标注

      本文链接:https://www.haomeiwen.com/subject/uodbnrtx.html