c212.plot.eot.data {c212} | R Documentation |
Plot Adverse Event Incidence Data
Description
This function plots a graph of the total adverse event incidence counts by body-system and by individual adverse event for end of trial data.
Usage
c212.plot.eot.data(trial.data, legend = TRUE, interactive = FALSE,
cex = 0.5)
Arguments
trial.data |
A file or data frame containing the trial data. The data frame must contain the columns B (body-system), AE (adverse event), Group (1 - control, 2 treatment), Count (total number of events), Total (total number of participants). |
legend |
Boolean. If TRUE print a legend. |
interactive |
Boolean. If TRUE allow the user to identify individual adverse events on the individual adverse events graph. |
cex |
Font size of the labels on the Adverse Event counts graph. |
Details
Two graphs are displayed on the same panel. The top graph is of AE Incidence Counts by Body-System. The lower graphs is of the Individual AE Incidence Counts.
Value
Nothing is returned.
Note
The legend may obscure a portion of the graph. In this case the legend may be suppressed by choosing legend = FALSE when calling the function.
Author(s)
R. Carragher
Examples
## Not run:
data(c212.trial.data)
c212.plot.eot.data(c212.trial.data)
## End(Not run)