get_event_ids {swaRmverse} | R Documentation |
Event Indexes
Description
This function returns a vector with the timeseries of event IDs according to the input keep column of the dataframe.
Usage
get_event_ids(df)
Arguments
df |
A dataframe with a set and a keep column to get the timeseries of
event IDs. The |
Value
a vector of the same length as the rows of the input dataframe with the timeseries of event IDs.
Author(s)
Marina Papadopoulou m.papadopoulou.rug@gmail.com
See Also
Examples
data <- data.frame(
set = c(rep('1', 50), rep('2', 50)),
keep = c(rep(FALSE, 10), rep(TRUE, 70), rep(FALSE, 20))
)
data$event <- get_event_ids(data)
[Package swaRmverse version 0.1.0 Index]