在matplotlib中,可以使用barh
函数绘制水平条形图,并使用text
函数在条形图的顶部添加标签。
以下是在matplotlib中如何在水平条形图顶部添加标签的步骤:
import matplotlib.pyplot as plt
import numpy as np
categories = ['A', 'B', 'C', 'D', 'E']
values = [10, 20, 15, 25, 30]
fig, ax = plt.subplots()
bars = ax.barh(categories, values)
for bar in bars:
width = bar.get_width()
ax.text(width, bar.get_y() + bar.get_height() / 2, str(width), ha='left', va='center')
在这个例子中,bar.get_y() + bar.get_height() / 2
用于确定标签的垂直位置,str(width)
用于将条形图的值转换为字符串并显示在标签中,ha='left'
表示标签位于条形图的右侧,va='center'
表示标签在垂直方向上居中对齐。
plt.show()
这样就可以在matplotlib中的水平条形图顶部添加标签了。
推荐的腾讯云相关产品:腾讯云服务器(CVM),产品介绍链接地址:https://cloud.tencent.com/product/cvm
领取专属 10元无门槛券
手把手带您无忧上云