I am trying to make the double bar chart dimensions bigger with figsize but my code doesn't seem to work.
plt.figure(figsize=(15,4))
MM_coh_chart = MM_coh.set_index('Snapshot_Date').plot(kind='bar', width=0.8, stacked=False, color=['red', 'steelblue'])
plt.legend(title='MPM Active Cohort vs Cohort Size', labels=['Cohort Currently Active', 'Cohort Size'], bbox_to_anchor=(1.02, 1), loc='upper left', borderaxespad=0)
plt.show(MM_coh_chart)