I am trying to create a pie subplot in a plot using a DF. But all my pie charts are not actual circular but the first two are coming as ellipse.Please guide me how to make all the subplots of same size and circular. Codes that I am using is given below
fig = plt.figure()
ax1 = plt.subplot(131)
ax2 = plt.subplot(132)
ax3 = plt.subplot(133)
ax1 = test1_pie.plot(kind='pie',y=test1,ax =ax1)
plt.axis('equal')
ax2 = test2_pie.plot(kind='pie',y=test2,ax=ax2)
plt.axis('equal')
ax3 = test3_pie.plot(kind='pie',y=test3,ax=ax3)
plt.axis('equal')

piefunction as well. also post a complete code that reproduces the issue.