鑒于以下代碼:
import numpy as np
import matplotlib.pyplot as plt
import os, sys
labels = ['G1', 'G2', 'G3', 'G4', 'G5']
men_means = [20, 34, 30, 35, 27]
women_means = [25, 32, 34, 20, 25]
x = np.arange(len(labels)) # the label locations
width = 0.35
fig, ax = plt.subplots()
rects1 = ax.bar(x - width/2, men_means, width, label='Men')
rects2 = ax.bar(x width/2, women_means, width, label='Women')
# Add some text for labels, title and custom x-axis tick labels, etc.
ax.set_ylabel('Scores')
ax.set_title('Scores by group and gender')
ax.set_xticks(x)
ax.legend() # oringinal legend
ax.bar_label(rects1, padding=3)
ax.bar_label(rects2, padding=3)
fig.tight_layout()
plt.savefig('bar.png')
回傳此條形圖:

我想['Men', 'Women']用
和 的表情符號替換圖例。

轉載請註明出處,本文鏈接:https://www.uj5u.com/caozuo/367158.html
標籤:蟒蛇-3.x matplotlib 条形图 传奇属性
