plt.pie()无法正确显示馅饼的颜色

时间:2020-10-14 08:38:23

标签: python matplotlib data-visualization

这是我的饼图代码,但是饼图的中间部分看起来像一束白光。

fig=plt.figure(figsize=(2,2),edgecolor='b')
ax=fig.add_subplot(111)
_, texts=ax.pie(x=geo_df['job_#'],labels=labels,pctdistance=1.1,)
plt.setp(texts,size=2.5)

这是我的输出。 enter image description here

0 个答案:

没有答案