Simulating enrollment dates
This function simulates enrollment dates using either poisson distribution
enrollment(param, N_total, time = NULL)
param
: a vector of lambda in poissonN_total
: a numeric value of total sample sizetime
: a vector of the length(param)
- 1 indicating end of time when a specific lambda is useda vector of enrollment dates
enrollment(param = c(0.003, 0.7), 100, time = 10) enrollment(param = c(0.3, 0.5, 0.9, 1.2, 2.1), 200, c(20, 30, 40, 60))
Useful links