View source: R/StaggeredRecruiter.R
StaggeredRecruiter | R Documentation |
Accrual rate can be 10 patients/months for the first 2 months, 20 patients/ months for the second 2 months, and eventually 30 patients/months until the end of trial.
StaggeredRecruiter(n, accrual_rate)
n |
number of random numbers |
accrual_rate |
a data frame of columns
|
accrual_rate <- data.frame(
end_time = c(12, 13:17, Inf),
piecewise_rate = c(15, 15 + 6 * (1:5), 45)
)
accrual_rate <- data.frame(
end_time = c(3, 4, 5, 8, Inf),
piecewise_rate = c(1, 2, 2, 3, 4)
)
StaggeredRecruiter(30, accrual_rate)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.