jupyter饼图绘制代码
时间: 2024-10-08 19:14:45 浏览: 84
数据分析,画饼图的jupyter notebook
5星 · 资源好评率100%
在Jupyter Notebook中,可以使用Matplotlib库来绘制饼图。以下是一个简单的例子,展示如何创建一个饼图:
```python
import matplotlib.pyplot as plt
# 假设我们有以下数据
labels = ['A', 'B', 'C', 'D', 'E']
sizes = [30, 25, 20, 15, 10] # 各部分的比例或数量
fig1, ax1 = plt.subplots()
ax1.pie(sizes, labels=labels, autopct='%1.1f%%', startangle=140, shadow=True) # autopct用于显示百分比,startangle调整初始角度
ax1.axis('equal') # 保持圆心角对齐而不是实际尺寸比例
plt.title('Pie Chart Example')
plt.show() # 显示饼图
```
在这个代码中,`autopct` 参数用于指定百分比的格式,`startangle` 设置了起始方向,`axis('equal')` 确保饼图是圆形的,而不是根据数据大小变形。
阅读全文