如何用matplotlib给饼图加标题
时间: 2023-06-19 20:03:54 浏览: 206
matplotlib subplots 设置总图的标题方法
可以通过plt.title()函数给matplotlib绘制的饼图添加标题,具体步骤如下:
1. 导入matplotlib库:
```python
import matplotlib.pyplot as plt
```
2. 绘制饼图:
```python
# 数据
labels = ['A', 'B', 'C', 'D']
data = [10, 30, 20, 40]
# 绘图
plt.pie(data, labels=labels)
```
3. 添加标题:
```python
plt.title('My pie chart')
```
完整代码示例:
```python
import matplotlib.pyplot as plt
# 数据
labels = ['A', 'B', 'C', 'D']
data = [10, 30, 20, 40]
# 绘图
plt.pie(data, labels=labels)
# 添加标题
plt.title('My pie chart')
# 显示图像
plt.show()
```
阅读全文