plot_timeseries: Plot time series

Description Usage Arguments Examples

View source: R/plot_timeseries.R

Description

Plot time series of net events on a second treatment arm

Usage

1
plot_timeseries(tendril, term = NULL)

Arguments

tendril

An object of class Tendril, as made by Tendril()

term

A character vector describing the value or values of Term to select; defaults to NULL which corresponds to all values

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
# generate data using Tendril()
data <- Tendril(
  mydata = TendrilData,
  rotations = Rotations,
  AEfreqThreshold = 9,
  Tag = "Comment",
  Treatments = c("placebo", "active"),
  Unique.Subject.Identifier = "subjid",
  Terms = "ae",
  Treat = "treatment",
  StartDay = "day",
  SubjList = SubjList,
  SubjList.subject = "subjid",
  SubjList.treatment = "treatment"
)

# do plot
plot_timeseries(data, term="AE33")
plot_timeseries(data, term=c("AE33","AE40"))
plot_timeseries(data, term=NULL)

Tendril documentation built on Feb. 11, 2020, 5:06 p.m.