标签: 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)
这是我的输出。