Put together estimation of enrollment
#13
Open
opened 3 years ago by youainti
·
8 comments
Loading…
Reference in New Issue
There is no content yet.
Delete Branch '%!s(<nil>)'
Deleting a branch is permanent. It CANNOT be undone. Continue?
So there are a couple of models of enrollment that are in use. Of particular interest is the non-homogenious Poisson Process model.
They use a spline approach to model the rate parameter of the enrollment data.
I'm not quite sure how to use this or a similar approach in what I do because the enrollment data is only partially observed.
The nhPP model would look something like this:
Where
f()is a currently unknown distributiontis the elapsed durationeis the planned enrollmentsis the current status\thetais the parametershttps://mc-stan.org/users/documentation/case-studies/splines_in_stan.html
Resources for spline approach
I think the better approach would be based on the paper from
In it, they assume that the per period enrollment is poisson, and that the rate is site specific, drawn from a gamma distribution.
I think I can use a similar model for enrollment, with the rate based on elapsed duration and random draws from a gamma distribution. The key step is that sums of poison RVs are distributed as RVs.
https://en.wikipedia.org/wiki/Poisson_distribution#Sums_of_Poisson-distributed_random_variables
Overall I think this is probably good enough for me.
May require converting from mean/variance to shape/scale
https://en.wikipedia.org/wiki/Gamma_distribution
Probably use a gamma distribution for
\thetaand\etapriors. Gammas sum and they are positive as well. A truncated normal might be another option.The effect sizes will probably be somewhere between zero and two.
It might also be helpful to use enrollment information from the trials I wasn't able to match ICD10 codes to, when establishing1 priors. Need to think about that.
Based on an interview with Adam George, Clinical Trials will plan out the sites ahead of time, and so the number is already known when starting the trial (they just don't start at the same time). If I treat sites as exchangeable, and draw their properties from the same distribution, I can use observed sites to help model enrollment.
There are a variety of models that I can use, check the literature from urbas,sherlock, and metcalf 2022
After a lot of thinking, I believe I am going to try to estimate the when recruitment will close, and then estimate recruitment linearly from there.