Apologies beforehand, since I'm relatively new to Python.
I have the following data for a reaction describing the growth of a compound:
The first derivative of this S-shaped curve describing the reaction seems to resemble an F-distribution curve. In my understanding, a cumulative distribution function (CDF) is an integral of a distribution curve, thus I was hoping to fit a CDF like F (10,10) to fit and model my reaction 1 (resembling the bottom right function of the image attached below).
The formula to describe such curve shape is written as follows:
Thus my question is: How can I write this formula in a pythonic way? NOTE: I've tried fitting different types of logistic functions, but none are fitted correctly. The CDF like F, however, seems to properly describe reaction 1.
Thanks a lot for the help!!