Learn R Programming

LOGAN (version 1.0.1)

CleanActions: Clean events

Description

This function allows you to clean events in the 'event.type' variable

Usage

CleanActions(data, event.type, clear.events)

Value

This function returns a data.frame with the "new.event.type" variable that cleaned events from the "event.type" variable.

Arguments

data

A matrix or data.frame where the 'event.type' variable is

event.type

a vector with concatenate events. See ConcatActions function.

clear.events

a vector where all the events to be cleaned are listed. Each element of this vector needs to be of a "event"="" type.

Examples

Run this code
# 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

Run the code above in your browser using DataLab