python3d饼图
时间: 2023-11-09 09:58:52 浏览: 165
3D 饼状图
您可以使用Matplotlib库来绘制3D饼图。以下是一个示例代码:
```python
import matplotlib.pyplot as plt
# 数据
sizes = [15, 30, 45, 10]
labels = ['A', 'B', 'C', 'D']
colors = ['red', 'blue', 'green', 'yellow']
# 绘制饼图
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.pie(sizes, labels=labels, colors=colors, autopct='%1.1f%%')
# 设置图表标题
ax.set_title("3D Pie Chart")
# 显示图表
plt.show()
```
阅读全文