要實(shí)現(xiàn)水平柱狀圖,可以使用Matplotlib中的barh()函數(shù)。以下是一個(gè)簡單的示例代碼,演示如何繪制水平柱狀圖:
import matplotlib.pyplot as plt
# 數(shù)據(jù)
categories = ['A', 'B', 'C', 'D', 'E']
values = [10, 20, 15, 25, 30]
# 創(chuàng)建水平柱狀圖
plt.barh(categories, values, color='skyblue')
# 添加標(biāo)題和標(biāo)簽
plt.xlabel('Values')
plt.ylabel('Categories')
plt.title('Horizontal Bar Chart')
# 顯示圖形
plt.show()
運(yùn)行此代碼將生成一個(gè)簡單的水平柱狀圖,其中顯示了不同類別的值。您可以根據(jù)需要自定義水平柱狀圖的顏色、標(biāo)題、標(biāo)簽等屬性。