CleanActions {LOGAN} | R Documentation |
Clean events
Description
This function allows you to clean events in the 'event.type' variable
Usage
CleanActions(data, event.type, clear.events)
Arguments
data |
A |
event.type |
a vector with concatenate events. See |
clear.events |
a vector where all the events to be cleaned are listed.
Each element of this vector needs to be of a |
Value
This function returns a data.frame
with the "new.event.type"
variable that cleaned events from the "event.type" variable.
Examples
# Data preparation
df <- cp025q01
df$id <- paste(df[, 1], df[, 2], df[, 3], sep = "-")
df <- m0$TrimVar(df, c("event", "event_type", "diag_state"))
df <- m0$ConcatActions(df, c(rlang::quo(event), rlang::quo(event_type)))
# Function demonstration
df.clean <- m0$CleanActions(df, event_type, c("ACER_EVENT_" = ""))
table(df$event.type)
table(df.clean$new.event.type) # cleaned version
[Package LOGAN version 1.0.1 Index]