圆环图如何绘制,写出python代码
时间: 2023-03-09 18:03:31 浏览: 154
python画环形图的方法
在 Python 中,可以使用 matplotlib.pyplot 的函数 pie() 来绘制圆环图,例如:import matplotlib.pyplot as plt
# Data to plot
labels = 'Frogs', 'Hogs', 'Dogs', 'Logs'
sizes = [15, 30, 45, 10]
# Plot
plt.pie(sizes, labels=labels, autopct='%1.1f%%', shadow=True, startangle=90)
plt.axis('equal')
plt.show()
阅读全文