首页 > TAG信息列表 > autopct
matplotlib饼图(pie)设置数据百分比显示的位置
改变饼图使用autopct设置百分比显示后的位置 可以看到环状图上的百分比数字位置显示看的很不舒服,想让数据离中心远一点 在pie中使用pctdistance参数python可视化总结(官方教程)——2饼图
import matplotlib.pyplot as plt # Pie chart, where the slices will be ordered and plotted counter-clockwise: labels = 'Frogs', 'Hogs', 'Dogs', 'Logs' sizes = [15, 30, 45, 10] #explode为偏移 explode = (0, 0.1, 0, 0) #python-Matplotlib绘制饼图
一、函数原型 plt.pie(x, explode=None, labels=None, colors=None, autopct=None, pctdistance=0.6, shadow=False, labeldistance=1.1, startangle=None, radius=None, counterclock=True, wedgeprops=None, textprops=None, center=(0, 0), frame=False) 参数: x:绘图的数据 exp