rm_trackloss_events {VWPre} | R Documentation |
rm_trackloss_events
removes events with less data than the specified
amount.
rm_trackloss_events(data = data, RequiredData = NULL)
data |
A data table object output by |
RequiredData |
A number indicating the percentage of data required to be included (i.e., removes events with less than this amount of data). |
An object of type data table as described in tibble.
## Not run:
library(VWPre)
# Remove events...
df <- rm_trackloss_events(data = dat, RequiredData = 50)
## End(Not run)