I have a variable dataset (say, Y varies between 0 and 1) as a function of distance (X in km). I tried to fit the data with various fitting functions as below:
(a) Y = a - b.X^c , where a,b and c are fit coefficients.
(b) Y = 1 - (X^b)/a , where a and b are fit coefficients.
(c) Y = a + b.EXP(-X/c) , where a,b and c are fit coefficients.
(d) Y = EXP(-(X/a)^b) , where a and b are fit coefficients.
Among the fit functions shown above, I find that (d) fits my data very well but I am not sure if there is any statistical parameter that actually tells how good the fit function is for the dataset. I found that 'goodness of a fit' can be determined by obtaining the ratio of variance of residues to the variance of data set (Y). Any suggestions are welcome to determine the skill level of the fit function in reproducing the actual data set.