1
我想繪製兩個變量但沒有成功的圖形。我的目標是創建一個Event1和Events2出現的條形圖,以便更容易地比較「名稱」(每個名稱的兩個條)。我的代碼錯誤地生成了兩張圖。你能指出我正確的做法嗎?謝謝。根據數據框製作2個變量的條形圖
我df是:
Name Events1 Events2
0 Accounting 3 3
1 Reporting 1 4
2 Finance 1 13
3 Audit 1 17
4 Template 2 40
代碼:
import matplotlib.pyplot as plt
ax = df[['Events1','Events2']].plot(kind='bar', title ="test", figsize=(15, 10), legend=True, fontsize=12)
ax.set_xlabel("Name", fontsize=12)
ax.set_ylabel("Number", fontsize=12)
plt.show()
非常感謝!任何想法如何可以在酒吧內的「名稱」標籤?我正在閱讀文檔,但無法確定。 – Gonzalo
這是你想要的嗎? – Vaishali
對不起,我的意思是寫在酒吧裏的審計,財務等字樣。不要從圖像底部獲取空間。 – Gonzalo