這是繪制一個分組條形圖的代碼:
import matplotlib.pyplot as plt
import numpy as np
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 # the width of the bars
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, labels)
ax.legend()
ax.bar_label(rects1, padding=3)
ax.bar_label(rects2, padding=3)
fig.tight_layout()
plt.show()
但是,我想知道如何繪制兩個相鄰的分組條形圖,如下所示:

提前致謝。
uj5u.com熱心網友回復:
IIUC,你想要的是plt.subplots(1, 2)
fig, axes = plt.subplots(1, 2)
for ax in axes:
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, labels)
ax.legend()
ax.bar_label(rects1, padding=3)
ax.bar_label(rects2, padding=3)
fig.tight_layout()

轉載請註明出處,本文鏈接:https://www.uj5u.com/qianduan/483183.html
標籤:Python matplotlib
上一篇:類最大遞回深度中的設定器錯誤
下一篇:如何更改同一行中不同列的特定值?
