getEventInfo {AdhereR} | R Documentation |
Access the event info from a CMA object.
Description
Retrieve the event info encapsulated in a simple, per episode, or sliding window CMA object.
Usage
getEventInfo(
x,
flatten.medication.groups = FALSE,
medication.groups.colname = ".MED_GROUP_ID"
)
Arguments
x |
a CMA object. |
flatten.medication.groups |
Logical, if |
medication.groups.colname |
a string (defaults to ".MED_GROUP_ID")
giving the name of the column storing the group name when
|
Value
a data.frame containing the CMA estimate(s).
Examples
cma1 <- CMA1(data=med.events,
ID.colname="PATIENT_ID",
event.date.colname="DATE",
event.duration.colname="DURATION",
followup.window.start=30,
observation.window.start=30,
observation.window.duration=365,
date.format="%m/%d/%Y"
);
getEventInfo(cma1);
[Package AdhereR version 0.8.1 Index]