-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pharmacokinetic models #46
Comments
E_max pharmacokinetic model from pg 101 of Bonate. E = {E_max C} / {E_50 + C} where E is the observed effect, E_max is max effect, EC_50 is the concentration with 50% of maximal effect, and C is concentration. Score function is given in Equations 14 and 15 on pg 102. \psi_emax = (Y - {E_max C} / {EC_50 + C}) (C / {EC_50 + C}) Figure 1 of Chapter 3 might be good to replicate? Another option is the simulation on pages 135-136 shown in Figure 5. Better yet, there is an example on 151 with data in Table 9 and SAS code in Appendix 2 to compare against |
Example with data from Table 22 on page 185 |
This also links back to #6 |
More model options (and software to check against) https://cran.r-project.org/web/packages/DoseFinding/DoseFinding.pdf |
I am going to update how the log-logistic models work. They are going to be replaced with a general function, rather than have the parameter-specific models. This is going to come with #50 |
Some notes on E-max models |
A side-note here: The I spent like a week on this issue. What I've learned is that the language is a mess. Always look at the math |
New structure in v2.3 with E-max and 4P-log-logistic models. There are some other models I may consider adding in the future. But for near future, don't have any specific to add |
Is your feature request related to a problem? Please describe.
Add more support for pharmacokinetic models (like existing dose-response models). This topic area is a bit unfamiliar to me, but I can add the models from Bonate's book as I read through it. This issue will be a place for me to collect those models. I will also need to look around for external software or examples to compare to.
These would replace the current
estimating_equations/dose_response.py
file with the more generalestimating_equations/pharmacokinetics.py
file. Since all imports are done inestimating_equations/__init__.py
this won't change anything on the user side.Describe the solution you'd like
Add corresponding estimating equations
Describe alternatives you've considered
None
Additional context
Bonate PL. "Pharmacokinetic-Pharmacodynamic Modeling and Simulation" 2nd edition.
The text was updated successfully, but these errors were encountered: