I am trying to plot a histogram with a series using numpy array.
n,bins,patch = plt.hist(ser,bins=10, color='green', alpha=0.8, label='Value', edgecolor='orange', linewidth=2)
plt.legend()
plt.ylabel('No of bags', size='x-large')
plt.xlabel('Money in US $', size= 'x-large')
IT is working well but the size is spo small. I tried using olt.hist(figsize=(8,8))
but it throws error as expected.
How can I increase the size of my histogram figure?