python饼图图例
时间: 2023-12-08 12:38:41 浏览: 102
python绘制饼状图实例
下面是Python中绘制饼图图例的示例代码:
```python
import matplotlib.pyplot as plt
# 定义标签和对应的数据
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
# 绘制饼图
fig1, ax1 = plt.subplots()
ax1.pie(sizes, labels=labels, autopct='%1.1f%%', startangle=90)
# 添加图例
ax1.legend(labels, loc="best")
# 设置图形属性
ax1.axis('equal')
plt.show()
```
在这个示例中,我们首先定义了标签和对应的数据,然后使用`ax1.pie()`函数绘制了饼图。接着,我们使用`ax1.legend()`函数添加了图例,并使用`loc="best"`参数指定了图例的位置。最后,我们使用`ax1.axis('equal')`函数设置了图形的属性,使得饼图被绘制成一个圆形。
阅读全文