-
Notifications
You must be signed in to change notification settings - Fork 21
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
Design Evaluation when No. of subjects change towards the end of trial #59
Comments
Hi Ankur, This can certainly be implemented! You just need to define different groups with different designs in the trial. See for example https://andrewhooker.github.io/PopED/articles/intro-poped.html. You can post example code here if you like and I can try and help. Best regards, |
Hi Andrew, #' Define the ODE system
}) #' define the initial conditions and the dosing #' parameter definition function -- Residual unexplained variablity (RUV) function-- Additive + Proportionalfeps <- function(model_switch,xt,parameters,epsi,poped.db){ y = y*(1+epsi[,1])+epsi[,2] return(list( y= y,poped.db =poped.db )) Original Design#CL: L/h; V1,V2: L; Q: L/h; V2: L; BL: g/L, KA= h-1
#' plot intial design with BSV and RUV in model Evaluate Original Design(dso <- evaluate_design(poped.db)) |
Hi Ankur, Here is am implementation of what you are trying to do. First define the model:
Add a design with design with extra observations after 52 wks in 20 patients.
Evaluate design and plot design.
Create a design without the extra observations after 52 weeks:
Evaluate design and plot design.
There is a big difference in parameter RSE between the two designs
There is also a big difference in efficiency (52% more individuals in the design without extra observations after 52 wks are needed to achieve same information as the extended design)
|
Hi The design I implemented has 180 individuals with measurements between 0 and 52 weeks, and 20 individuals with those measurements PLUS additional measurements after 52 weeks. I assumed that the 20 individuals would be a part of the 200 total that are studies under 52 weeks and then 20 of those individuals are studied for an additional period. |
Hi Andy, |
Hi @andrewhooker
I am trying to optimize a PIII trial design using popED.
This trial is for one year and the number of subjects stays same (N=200) under week 52, but post-wk-52 the extensive PK is collected only for N=20 subjects
Before wk-52, trough samples are only collected
Do you know if this situation can be implemented in popED for design evaluation and optimization
Will appreciate your response
Thanks,
-Ankur
The text was updated successfully, but these errors were encountered: