matplotlib绘制饼图设置标签位置
时间: 2023-08-17 19:35:58 浏览: 492
在 matplotlib 中绘制饼图时,可以使用 `plt.pie()` 方法中的 `labeldistance` 参数来设置标签与饼图中心的距离,以调整标签的位置。具体方法如下:
```python
import matplotlib.pyplot as plt
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
explode = (0, 0.1, 0, 0)
fig, ax = plt.subplots()
# 设置标签与饼图中心的距离
labeldistance = 1.2
ax.pie(sizes, explode=explode, labels=labels, autopct='%1.1f%%',
shadow=False, startangle=90, labeldistance=labeldistance)
# 设置图表标题
ax.set_title("Pie Chart")
plt.show()
```
在上述代码中,我们使用 `labeldistance=1.2` 来设置标签与饼图中心的距离,此时标签会偏离饼图中心。你可以尝试不同的 `labeldistance` 值来调整标签的位置。
相关问题
matplotlib绘制饼图设置图例题目
在 matplotlib 中绘制饼图时,可以使用 `plt.legend()` 方法来添加图例,并使用 `plt.title()` 方法来设置图例标题。具体方法如下:
```python
import matplotlib.pyplot as plt
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
explode = (0, 0.1, 0, 0)
fig, ax = plt.subplots()
# 绘制饼图
ax.pie(sizes, explode=explode, labels=labels, autopct='%1.1f%%',
shadow=False, startangle=90)
# 添加图例
ax.legend(labels, title="Legend", loc="center left", bbox_to_anchor=(1, 0, 0.5, 1))
# 设置图例标题
plt.title("Pie Chart")
plt.show()
```
在上述代码中,我们使用 `ax.legend()` 方法来添加图例,并使用 `title="Legend"` 来设置图例标题。同时,我们使用 `plt.title()` 方法来设置图表标题。
你可以根据需要修改 `title` 参数的值来设置不同的图例标题。
matplotlib绘制饼图
可以使用以下代码绘制饼图:
```
import matplotlib.pyplot as plt
labels = ['A', 'B', 'C', 'D']
sizes = [15, 30, 45, 10]
colors = ['red', 'green', 'blue', 'yellow']
plt.pie(sizes, labels=labels, colors=colors, autopct='%1.1f%%', startangle=90)
plt.axis('equal')
plt.show()
```
其中,labels 是每个扇形的标签,sizes 是每个扇形的大小,colors 是每个扇形的颜色。autopct='%1.1f%%' 表示显示每个扇形的百分比,startangle=90 表示从哪个角度开始绘制饼图。最后使用 plt.show() 显示饼图。
阅读全文