jupyter 数据分析饼图
时间: 2023-11-13 15:55:41 浏览: 87
数据分析,画饼图的jupyter notebook
5星 · 资源好评率100%
好的,关于 jupyter 数据分析饼图,你可以使用 Python 的 matplotlib 库来绘制饼图。具体步骤如下:
1. 导入 matplotlib 库和数据集
```python
import matplotlib.pyplot as plt
# 数据集
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
```
2. 绘制饼图
```python
plt.pie(sizes, labels=labels, autopct='%1.1f%%')
plt.axis('equal')
plt.show()
```
这样就可以绘制出一个简单的饼图了。
阅读全文