餅圖程式-企業部門資產構成

redufa發表於2024-11-24

image


import matplotlib.pyplot as plt

import matplotlib
# 設定字型為系統中的中文字型(這裡以SimHei為例,適用於Windows)
matplotlib.rcParams['font.sans-serif'] = ['SimHei']
# 解決負號顯示問題
matplotlib.rcParams['axes.unicode_minus'] = False
# 資料
sizes = [54, 36, 10]
labels = [r'國有企業', '其他所有制企業', '外資、港澳臺資企業']
colors = ['b', 'g', 'black']

# 繪製餅圖
plt.pie(sizes, labels=labels, colors=colors, autopct='%1.0f%%', startangle=90)

# 設定為圓形
plt.axis('equal')

# 新增標題


plt.rcParams['axes.unicode_minus'] = False
plt.title('企業部門資產構成(2011年)')

# 顯示圖形
plt.show()   

相關文章