I wanted to show 3 pie charts in same row. My codes:
fig, ax = plt.subplots(1,3, figsize=(15,5))
plt.pie(data["ChronicDiseases"].value_counts(),colors=["crimson","firebrick"], labels=["Non-Chronic","Chronic"], explode = (0, 0.05), autopct='%1.1f%%')
How can I add second and third pie chart? I added ax=ax[0,0] ax=ax[0,1] etc. and not working. In different charts I would use seaborn like sns.countplot(...., ax=ax[0,0]) and it is working.