Torta de matplotlib desligue os pequenos rótulos do PCT
def my_autopct(pct):
return ('%.2f' % pct) if pct > 20 else ''
ax.pie(df[col], labels=df.index, autopct=my_autopct, colors=colors)
Real Raccoon