I am trying to position my three donut subplots one inside the other for comparison but unable to find a simple way of doing it. I am not sure how I cannot define three separate radii for the three subplots. Here is the code snippet I am using:
df_plot.transpose().plot.pie(title="Status vs opinions on changes in monastery",
subplots=True, startangle=0, legend=None,radius= 1,
autopct='%1.0f%%', pctdistance=1.1, labeldistance=1.2,
wedgeprops=dict(width=0.3, edgecolor='white')
)
plt.show()
Any help would be appreciated. Thanks!