python画饼图 excel
时间: 2023-04-01 11:03:50 浏览: 194
python使用Matplotlib画饼图
如何用 Python 画饼图?
可以使用 matplotlib 库中的 pie() 函数来画饼图,具体操作可以参考以下代码:
import matplotlib.pyplot as plt
# 饼图数据
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
# 饼图颜色
colors = ['red', 'green', 'blue', 'yellow']
# 画饼图
plt.pie(sizes, labels=labels, colors=colors, autopct='%1.1f%%', startangle=90)
# 添加标题
plt.title('Pie Chart')
# 显示图形
plt.show()
阅读全文