I'm a newbie and I would like to change the size of the bar chart I created with Matplotlib and Python, so I can show it in a presentation. I have very much values and the outcoming graphic is far too small. The columns 'State' and 'Hospital 30-Day Readmission Rates from Pneumonia' contain >50 values.
This is my current code:
smallgroup.plot('State', 'Hospital 30-Day Readmission Rates from Pneumonia', kind='bar')
plt.title("Hospital 30-Day Readmission Rates from Pneumonia")
plt.xlabel("States")
plt.ylabel("Readmission Rates")
plt.savefig('readmission_rate_pneumonia.png');