I have a calculated some rates based on data, but I was wondering if there is a way to determine a good math function that might fit this data. For example, consider the following:
0.1387
0.3840
0.2744
0.1654
0.1062
0.0748
0.0502
0.0397
0.0342
0.0268
0.0204
0.0089
0.0064
0.0102
0.0092
0.0064
0.0039
0.0036
This looks like the following:
.
I tried a polynomial function, but that (perhaps obviously) doesn't work. I also tried the poisson function, but the fit did not appear to be very good. So I'm wondering how I go about thinking what function might be better.
Thanks in advance.
Based on all the feedback and helpful advice received above, I did the following (leverages python to figure out parameter estimates):
The results seem promising:
Thanks for the help!