accrualReport {greport} | R Documentation |
Accrual Report
Description
Generate graphics and LaTeX to analyze subject accrual
Usage
accrualReport(
formula,
data = NULL,
subset = NULL,
na.action = na.retain,
dateRange = NULL,
zoom = NULL,
targetN = NULL,
targetDate = NULL,
closeDate = NULL,
enrollmax = NULL,
studynos = TRUE,
minrand = 10,
panel = "accrual",
h = 2.5,
w = 3.75,
hb = 5,
wb = 5,
hdot = 3.5
)
Arguments
formula |
formula object, with time variables on the left (separated by +) and grouping variables on the right. Enrollment date, randomization date, region, country, and site when present must have the variables in parenthesis preceeded by the key words |
data |
data frame. |
subset |
a subsetting epression for the entire analysis. |
na.action |
a NA handling function for data frames, default is |
dateRange |
|
zoom |
|
targetN |
integer vector with target sample sizes over time, same length as |
targetDate |
|
closeDate |
|
enrollmax |
numeric specifying the upper y-axis limit for cumulative enrollment when not zoomed |
studynos |
logical. Set to |
minrand |
integer. Minimum number of randomized subjects a country must have before a box plot of time to randomization is included. |
panel |
character string. Name of panel, which goes into file base names and figure labels for cross-referencing. |
h |
numeric. Height of ordinary plots, in inches. |
w |
numeric. Width of ordinary plots. |
hb |
numeric. Height of extended box plots. |
wb |
numeric. Weight of extended box plots. |
hdot |
numeric. Height of dot charts in inches. |
Details
Typically the left-hand-side variables of the formula, in order, are date of enrollment and date of randomization, with subjects enrolled but not randomized having missing date of randomization. Given such date variables, this function generates cumulative frequencies optionally with target enrollment/randomization numbers and with time-zooming. Makes a variety of dot charts by right-hand-side variables: number of subjects, number of sites, number of subjects per site, fraction of enrolled subjects randomized, number per month, number per site-month.
Examples
## Not run:
# See test.Rnw in tests directory
## End(Not run)