I have a data like this :
I have plotted histogram for each month :
I can not seem to fig out which probability distribution will fit it the most. I tried to fit in gamma distribution but results are bad :
alpha_mom = precip_mean ** 2 / precip_var
beta_mom = precip_var / precip_mean
from scipy.stats.distributions import gamma
unemployment.Jan.hist(normed=True, bins=20)
plt.plot(np.linspace(0, 10), gamma.pdf(np.linspace(0, 10), alpha_mom[2],
beta_mom[2]))
Can someone guide me which distribution will fir above data. I could not seem to figure out.
here are result for fitting for month of Jan: