图和值(204 kwh、604 kwh、60 kwh)之间的间距太小。我怎样才能将这些值稍微移高一点并增加间距?我拥有的:我想要的:代码:x_name = ['A...
图与值 (204 kwh、604 kwh、60 kwh) 之间的间距太小。我怎样才能将这些值稍微移高一点并增加间距?
我所拥有的:
我想要的是:
代码:
x_name = ['Average\nneighborhood\u00b9', 'Your\nconsumption', 'Efficient\nneighborhood\u00b2']
plt.figure(facecolor='#E2EBF3')
fig = plt.figure(figsize=(12,10))
plt.bar(x_name, val, color =['cornflowerblue', 'saddlebrown', '#196553'],width = .8)
plt.margins(x = .1 , y = 0.25)
plt.xticks(fontsize=25)
plt.yticks([])
hfont = {'fontfamily':'serif'}
for index, value in enumerate(np.round(val,2)):
plt.text(index,value, str(value)+" kWh",fontsize=25, ha='center', va = 'bottom',**hfont)
自动标记条形图 plt.bar_label
:
填充
以增加条形图和标签之间的距离(例如, padding=20
)
fmt
来定义格式字符串(例如, fmt='%g kWh'
添加 \'kWh\' 后缀)
bars = plt.bar(x_name, val) # store the bar container
plt.bar_label(bars, padding=20, fmt='%g kWh') # auto-label with padding and fmt
请注意,有一个 ax.bar_label
对应部分,它对于堆积/分组条形图特别有用,因为我们可以通过以下方式迭代所有容器 ax.containers
:
fig, ax = plt.subplots()
ax.bar(x_name, val1, label='Group 1')
ax.bar(x_name, val2, label='Group 2', bottom=val1)
ax.bar(x_name, val3, label='Group 3', bottom=val2)
# auto-label all 3 bar containers
for c in ax.containers:
ax.bar_label(c)