I have the following data:
y = np.array([8.8,7.2,5.8,4.7,3.8,3.1,2.6,2.2,2.0,1.7,1.8,1.8,1.9,1.7,1.4,1.2,1.7,1.2,1.5])
x = np.array([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19])
I wish to fit a distribution to this data.
I've tried using scipy and fitter, but the distributions were of poor fit.
I got results akin to this example.
- Why do the distributions in said example seem to be scaled below the true data?
- Using my data, how do I fit a reasonable distribution? Any worked examples would be greatly appreciated.