CleanActions: Clean events

View source: R/CleanActions_m0.R

CleanActionsR 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 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.

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


LOGAN documentation built on Oct. 25, 2022, 9:08 a.m.

Related to CleanActions in LOGAN...